一键导入
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.