用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/patrickking67/godmode --skill genesis命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | genesis |
| description | Implement a feature or change with a tight plan, build, and verify loop. |
Build the feature or change described in $ARGUMENTS cleanly and correctly: plan it,
match the codebase, ship it in small steps, and verify it works.
State in one sentence what you're building and what "done" looks like (the acceptance
criteria). Derive both from $ARGUMENTS. Only ask the user if the request is genuinely
ambiguous (conflicting requirements, missing a critical decision); otherwise proceed.
Before writing anything, read the neighboring code your change will live among. You're looking for the conventions to match, not inventing your own:
New code should look like it was always there.
Write a short checklist of the concrete edits using the todo tooling, one item per file or logical change, in the order you'll make them. Keep it to the actual work; this is a plan, not a design doc.
Work through the checklist one item at a time. Follow the patterns from step 2. Where a test suite exists, prefer test-driven: write or extend a failing test that pins the new behavior, then make it pass. Keep each change focused and self-contained.
Build exactly what was asked: no speculative abstractions, no unrequested refactors, no extra config "for later" (YAGNI). Do not add comments that merely restate what the code does.
Decide how to execute before charging ahead:
Task subagents, one bounded task each (e.g. one
per independent module), and integrate the results. Give each a clear, self-contained brief.Run the project's own checks (typecheck, tests, lint) and read the output. Fix anything you broke until they pass. Confirm the acceptance criteria from step 1 are actually met.
Report what changed, which files, and how you verified it. Do not commit, push, or open a PR unless the user explicitly asks; this command implements and verifies, nothing more.