ソース情報
- リポジトリ
- arbazkhan971/godmode
- ソースの最終更新活動
- 2026年4月13日 12:36
- 検出された SKILL.md の言語
- 英語
- スター
- 25
- フォーク
- 7
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/arbazkhan971/godmode --skill reviewコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Turn on Godmode. 135 skills, 7 subagents, zero configuration. Routes to the right skill automatically.
Backup and disaster recovery. backup strategy, disaster recovery, RPO/RTO, data integrity, durability, runbook.
Changelog and release notes management. Keep a Changelog format, Conventional Commits auto-generation, breaking change communication, migration guides, audience-specific notes.
SOC 職業分類に基づく
SKILL.md を表示中
| name | review |
| description | 4-agent code review. Correctness, security, performance, style. Auto-fixes NITs. |
/godmode:review, "review this", "check my code"git diff main...HEAD
Read every changed file. >500 lines -> split into per-directory reviews.
Each agent outputs:
SEVERITY | FILE:LINE | DESCRIPTION | SUGGESTED FIX
Severities: MUST-FIX, SHOULD-FIX, NIT.
IF no findings: state {category}: No issues found.
Combine findings. Same file:line = merge, keep highest severity, first agent's fix. Sort: MUST-FIX first.
SAFE: imports, formatting, whitespace, comment typos.
UNSAFE (human): logic, API, security, test changes.
Each auto-fix = separate commit:
"review-autofix: {description}".
Score: 0-10 (median of all agents).
IF score < 8: author responds to every MUST + SHOULD. Re-review only modified parts. Max 3 iterations.
Append .godmode/review-log.tsv:
timestamp scope category severity file_line description status
KEEP if: finding has file:line + severity + fix.
DISCARD if: vague, lacks evidence, or duplicate.
On finding DISCARD: classify and append to .godmode/review-failures.tsv.
False positive classes: stale_context, framework_idiom, test_only_code, intentional_pattern, duplicate_finding.
For higher-confidence reviews, dispatch agents with different models:
Findings caught by only one model are flagged as "cross-model finding" — these are the blind spots that self-play misses.
Enable with: --cross-model flag or when reviewing security-critical code.
STOP when FIRST of:
- All 4 agents completed and findings merged
- Max 3 re-review iterations
- Re-review found 0 new issues
On failure: git reset --hard HEAD~1. Never pause.
| Failure | Action |
|---|---|
| Diff too large (>500) | Split per-directory reviews |
| Vague findings | Discard, re-run with explicit instruction |
| Auto-fix breaks tests | Revert, reclassify as SHOULD-FIX |
| Conflicting findings | Escalate to highest severity |