# Deploy / QA note template Copy this for each deploy (or ask the agent: “寫 deploy test plan for commits X..Y”). ```markdown # Deploy note — Date: YYYY-MM-DD Branch / build: Author: ## Summary - ## Scope - Backend: - Frontend: - DB / Liquibase: none - Config / ops: none ## Commits - `________` — ## Test plan | # | Steps | Expected result | |---|--------|-----------------| | 1 | | | | 2 | | | ## Out of scope / not tested - ## Rollback - ``` Filled examples live in `docs/deploy/` after each release prep. ### Auto-generate Word plans (one file per commit) Full team instructions: [`HOW_TO_GENERATE_COMMIT_TEST_PLANS.md`](HOW_TO_GENERATE_COMMIT_TEST_PLANS.md) ```bash pip install python-docx python scripts/generate_commit_test_plans_docx.py HEAD~10..HEAD # → docs/deploy/commit-plans/__.docx ```