用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/patrickking67/godmode --skill sanctify命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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.