원클릭으로
phase-complete
Phase completion checklist -- verifies tests, integration, state, and PR readiness before marking a phase done.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Phase completion checklist -- verifies tests, integration, state, and PR readiness before marking a phase done.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Log a manual observation about the current session. Invoke when the user runs /case-study-capture to record something noteworthy that automatic hooks cannot detect -- a successful pattern, a human override, a context architecture insight, or friction the hooks missed.
Synthesize all captured observation data into a case study draft and a harness guide improvement plan. Invoke when the user runs /case-study-synthesize at build completion or at any milestone where a synthesis snapshot is useful.
Create GitHub pull requests with deterministic commands, transient failure recovery, and content validation. Use when creating a pull request to ensure the final PR body on GitHub matches what was intended.
Invoke this skill when the user asks to implement, take, pick up, work on, tackle, start, or grab a GitHub issue. Triggers on phrases like "implement issue
Invoke this skill after any structural change to the repository — renaming files, changing chapter H1 titles, adding or removing chapters or templates, updating canonical terms, or modifying template paths. Also invoke when the user asks to "check cross-references", "validate links", or "verify chapter titles match README". The guide-chapter rule directs you to run this after structural edits.
Create GitHub issues with deterministic commands, transient failure recovery, and content validation. Use when creating one or more GitHub issues to ensure the final issue body on GitHub matches what was intended.
| name | phase-complete |
| description | Phase completion checklist -- verifies tests, integration, state, and PR readiness before marking a phase done. |
You have been asked to verify that the current implementation phase is ready to close. Run through every section below in order. Do NOT skip steps. Record results inline.
pass statements, // TODO).git status and verify nothing is untracked.Run the full test suite for your territory. Record the output.
Backend:
cd apps/backend && python -m pytest tests/ -v --tb=short
Frontend:
cd apps/frontend && npm run test
Backend:
cd apps/backend && ruff check . && ruff format --check .
Frontend:
cd apps/frontend && npx tsc --noEmit
docker compose build <service>docker compose up -d && docker compose logs <service> | tail -20docker compose run --rm backend alembic upgrade head./scripts/integration-smoke-test.sh
If this phase touched any API surface (endpoints, schemas, frontend API calls):
contracts/openapi.yaml exactly.Update your agent memory with:
main).After completing all sections, summarize:
If any section fails, do NOT declare the phase complete. Fix the issue first.