docs(protocol): strip redundant pre-review summary gate from agent instructions

This commit is contained in:
Tyler Gillispie 2026-08-26 12:04:49 -07:00
parent 58d8e54ae5
commit 09c2b5d7a7
2 changed files with 5 additions and 16 deletions

View File

@ -97,9 +97,6 @@ subagents):
2. **Positive Final-State Delivery:** Never use negative constraints to govern 2. **Positive Final-State Delivery:** Never use negative constraints to govern
tool use. Instead, formulate unambiguous terminal Acceptance Criteria (clean tool use. Instead, formulate unambiguous terminal Acceptance Criteria (clean
git tree, passing test suites, formatted code). git tree, passing test suites, formatted code).
3. **Pre-Review Summary Gate:** Require worker agents to provide a concise 3. **DRY Prompting:** Always reference repository guidelines (`AGENTS.md`,
verification summary (modified files and test pass evidence) BEFORE
requesting code review or opening the PR.
4. **DRY Prompting:** Always reference repository guidelines (`AGENTS.md`,
`tasks/GUIDELINES.md`) instead of copy-pasting operational rules into agent `tasks/GUIDELINES.md`) instead of copy-pasting operational rules into agent
prompts. prompts.

View File

@ -46,16 +46,8 @@ and provide the following block:
- Keep the task file in `tasks/new/` during execution; only move it to `tasks/complete/` upon successful verification (or park in `tasks/wip/` only if work cannot be finished in this session). - Keep the task file in `tasks/new/` during execution; only move it to `tasks/complete/` upon successful verification (or park in `tasks/wip/` only if work cannot be finished in this session).
- Run ONLY hermetic unit tests (`deno test --allow-all`). Do NOT start long-running servers (`deno task start` / `deno task dev`). - Run ONLY hermetic unit tests (`deno test --allow-all`). Do NOT start long-running servers (`deno task start` / `deno task dev`).
**Acceptance Criteria & Delivery Protocol:** **Acceptance Criteria:**
- Run and pass all quality gates: `deno fmt`, `deno task lint`, `deno task check`, and `deno test --allow-all`.
1. **Pre-Review Quality & Summary (Before Requesting Review / Opening PR):** - Ensure the git working tree contains only intentional modifications to target deliverables (zero untracked or temporary files).
- Run and pass all quality gates: `deno fmt`, `deno task lint`, `deno task check`, and `deno test --allow-all`. - Move the task file from `tasks/new/` directly to `tasks/complete/YYYY-MMDD.XX.agent.type.scope.title-HHMM.md` (or park in `tasks/wip/` only if work cannot be finished in this session).
- Ensure the git working tree contains only intentional modifications to target deliverables (zero untracked or temporary files).
- Present a concise verification summary detailing:
* Exact list of modified/created files
* Test execution results proving all test suites pass
2. **Final Completion (Upon Approval):**
- Move the task file from `tasks/new/` directly to `tasks/complete/YYYY-MMDD.XX.agent.type.scope.title-HHMM.md` (or park in `tasks/wip/` only if work cannot be finished in this session).
- Submit the final pull request with a clean git history.
``` ```