소스 정보
- 저장소
- 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명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| 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.