원클릭으로
ship-checklist
Pre-push checklist — write tests for changes, run full suite, verify docs, push. Use before every git push.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Pre-push checklist — write tests for changes, run full suite, verify docs, push. Use before every git push.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | ship-checklist |
| description | Pre-push checklist — write tests for changes, run full suite, verify docs, push. Use before every git push. |
| disable-model-invocation | true |
| allowed-tools | Bash(npx vitest *) Bash(npx tsc *) Bash(python3 -m pytest *) Bash(python3 -c *) Bash(gh release view *) Bash(git *) |
Run through every item below before pushing. Do NOT push until all steps pass.
Run /write-tests to analyze all code changes and generate tests in the judgement-tests repo. Every change — feature, fix, refactor, even a one-liner — must have tests. Do NOT skip this step.
Run /test-suite to run all smoke tests + suite tests + TypeScript checks. Do NOT proceed until it reports "All tests passed — safe to push."
Check if the change affects any of:
gh release view --json assets)If yes, update README.md accordingly. Read it and verify links are correct.
Add an entry under the Unreleased section (or the current version section if tagging a release). Categorize as Added / Changed / Fixed / Security.
If anything was missed, caught late, or required a fix after the fact during this session, add an entry to LEARNINGS.md under the Mistakes & Fixes section. Format:
### Short title
What went wrong and the fix so we don't repeat it.
Only after all above steps pass:
git add -A)Report the final test counts and any doc updates made.
Clone test suite repo (if needed), run full test suite, and report results. Use before pushing to ensure nothing is broken.
Analyze code changes, generate unit and integration tests, add them to the judgement-tests repo. Run after every feature, fix, or refactor — no matter how small.