一键导入
meta-gods-fix
Execute automated fixes for issues identified by /meta-gods analysis
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Execute automated fixes for issues identified by /meta-gods analysis
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Automatically detect and save person-related information (names, roles, contact info, relationships, organizations) to Core Memory (Caduceus). Triggers when user mentions people with descriptive details like job titles, phone numbers, emails, responsibilities, or relationships to other people or organizations.
Send professional client updates with deliverables via email and WhatsApp notification. Use when user wants to share work, send assets, or give a client an update on progress.
Distill Claude Code session operations into reusable tinctures (Skills, Commands, Agents). Uses category theory for structural preservation, information theory for potency analysis, and the Golden Ratio for classification. Use when you want to capture effective workflows, or when the user says "distill", "extract this", "make a tincture", "capture this workflow", or "turn this into a skill/command".
Fuse two things into one unified creation. Use when user says fuse, fusion, combine, merge, or wants to unite documents, projects, concepts, ideas, frameworks, or any two entities into something greater than either alone.
Pattern for building interactive CLI tutors in Go with standardized colors, progress tracking, and pedagogical elements
Brutal enforcer of production-grade coding practices. The bane of vibe-coded slop and spaghetti code. Mars audits codebases for the hidden sins that separate "it works on my machine" from battle-tested production systems.
| name | meta-gods-fix |
| description | Execute automated fixes for issues identified by /meta-gods analysis |
| category | quality |
| author | Ormus |
You are executing remediation for issues identified by the /meta-gods seven-ray Hermetic transformation analysis.
IMPORTANT: Before running diagnostics, check for and load previous analysis history. After completing, save the current analysis.
# Check for existing history file in project root
HISTORY_FILE=".meta-gods-history.json"
if [ -f "$HISTORY_FILE" ]; then
echo "📜 Previous analysis found:"
cat "$HISTORY_FILE" | jq -r '.lastRun, .summary'
fi
Or read the file directly: .meta-gods-history.json
{
"version": "1.0",
"projectName": "project-name",
"lastRun": "2026-01-24T12:00:00Z",
"runs": [
{
"timestamp": "2026-01-24T12:00:00Z",
"summary": {
"mars": { "found": 5, "fixed": 5, "remaining": 0 },
"saturn": { "found": 3, "fixed": 2, "remaining": 1 },
"mercury": { "found": 2, "fixed": 2, "remaining": 0 },
"jupiter": { "found": 0, "fixed": 0, "remaining": 0 },
"venus": { "found": 1, "fixed": 1, "remaining": 0 },
"moon": { "found": 0, "fixed": 0, "remaining": 0 },
"sun": { "found": 0, "fixed": 0, "remaining": 0 }
},
"issues": [
{
"domain": "mars",
"type": "react-purity-violation",
"file": "src/pages/survey.tsx",
"line": 69,
"description": "Math.random() at module level",
"status": "fixed",
"fixApplied": "Converted to useState with lazy init"
}
],
"verification": {
"lint": { "status": "pass", "errors": 0, "warnings": 0 },
"typeCheck": { "status": "pass", "errors": 0 },
"build": { "status": "pass" }
}
}
]
}
After completing the fix session, create or update .meta-gods-history.json in the project root with:
When history exists, show a delta report:
## Comparison with Previous Run (2026-01-20)
### Progress
- Mars: 5 → 0 issues (-5) ✅
- Saturn: 3 → 1 issues (-2) 🔶
- Mercury: 2 → 0 issues (-2) ✅
### New Issues Since Last Run
- None / List of new issues
### Persistent Issues
- saturn: Missing sitemap entry for /admin routes (deferred)
The /meta-gods analysis identified issues across these planetary domains:
Run comprehensive diagnostics:
# Full lint check
npm run lint 2>&1
# Type checking
npx tsc --noEmit 2>&1
# Build verification
npm run build 2>&1
Math.random() with useId() hook“ ” for quoteserror.tsx at route levelsloading.tsx at route levelsnot-found.tsx at app level--fix or manual cleanupsetState in effects with lazy initializationAfter each fix category:
npm run lintnpm run build// Before
import { forwardRef } from "react";
const id = someId || `input-${Math.random().toString(36).substr(2, 9)}`;
// After
import { forwardRef, useId } from "react";
const generatedId = useId();
const id = someId || `input-${generatedId}`;
// Before
const [isSupported, setIsSupported] = useState(true);
useEffect(() => {
setIsSupported(checkSupport());
}, []);
// After
const [isSupported] = useState(checkSupport); // Lazy initialization
// Before
<p>This is "quoted text" here</p>
// After
<p>This is “quoted text” here</p>
The fix session is complete when:
npm run lint returns 0 errors and 0 warningsnpm run build completes successfullyAfter fixing, report:
## Meta-Gods Fix Report
### Fixes Applied
- [ ] Category: Description of fix
### Verification
- Lint: PASS/FAIL (X errors, Y warnings)
- Build: PASS/FAIL
- TypeCheck: PASS/FAIL
### Remaining Issues
- None / List of deferred items