ソース情報
- リポジトリ
- patrickking67/godmode
- ソースの最終更新活動
- 2026年5月29日 07:08
- 検出された SKILL.md の言語
- 英語
- スター
- 0
- フォーク
- 0
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/patrickking67/godmode --skill sanctifyコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SOC 職業分類に基づく
SKILL.md を表示中
| name | sanctify |
| description | Run the project's checks (typecheck, tests, lint, build) and report results. |
Run this project's own quality checks (or the subset named in $ARGUMENTS) and report
exactly what passed, what failed, and the single most useful thing to do next.
Find the checks this project actually defines; never invent commands:
package.json scripts for typecheck/tsc, test, lint, build.
Pick the runner from the lockfile present: pnpm-lock.yaml → pnpm, yarn.lock →
yarn, otherwise package-lock.json → npm.Makefile with targets like test, lint, check.cargo test/cargo clippy/cargo build, go test ./.../go vet,
pytest plus ruff/mypy, or the equivalent the repo is set up for.If $ARGUMENTS names a subset (e.g. "just tests", "lint"), run only that. Otherwise run
the full relevant set. State which checks you found in one line before running.
Run them in cheap-to-expensive order (typecheck, lint, tests, then build only if it is quick). For each:
One clear line per check:
PASS: typecheck (tsc)FAIL: tests (3 failing)For each failure, excerpt the actual failing output (the assertion, the error, the
offending lines), not the whole log. Point to the path:line involved as a clickable
reference so the user can jump straight there.
End with a one-line verdict (all green, or N checks failing) and the single most useful
next action (e.g. "fix the type error in src/api.ts:42, then re-run", or "all checks
pass, ready to commit").
This command is read-only apart from running the checks. Do not fix, edit, or commit anything unless the user explicitly asks; report the failures and stop.