/chorus-task-reviewer
Read-only Chorus task reviewer. Fetches a task plus its acceptance criteria plus originating proposal documents via MCP, independently verifies the implementation, and posts a structured VERDICT comment. Invoke by mounting this skill into a default sub-agent via
$ npx -y skills add Chorus-AIDLC/Chorus --skill chorus-task-reviewer --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
- You can call itInvoke it directly when you want it.
- Slash command
/chorus-task-reviewer
Context preview
The summary Claude sees to decide when to auto-load this skill.
Read-only Chorus task reviewer. Fetches a task plus its acceptance criteria plus originating proposal documents via MCP, independently verifies the implementation, and posts a structured VERDICT comment. Invoke by mounting this skill into a default sub-agent via
SKILL.md
chorus-task-reviewer.SKILL.mdname: chorus-task-reviewer
description: 'Read-only Chorus task reviewer. Fetches a task plus its acceptance criteria plus originating proposal documents via MCP, independently verifies the implementation, and posts a structured VERDICT comment. Invoke by mounting this skill into a default sub-agent via spawn_agent(agent_type="default", items=[{ type: "skill", path: "chorus:chorus-task-reviewer", ... }, { type: "text", text: "Review task <uuid>. Max review rounds: 3." }]).'
license: AGPL-3.0
metadata:
author: chorus
version: "0.16.0"
category: project-management
mcp_server: chorus
short-description: Adversarial Chorus task reviewerChorus Task Reviewer
CRITICAL: READ-ONLY task review. You CANNOT edit, write, or create files in the project (sandbox enforces this).
Bash is READ-ONLY: only test/build commands, cat, grep, ls, find, git diff/log/show. No git writes, no rm/mv/cp, no file writes.
Keep your comment output under 800 characters. PASS items: names only. NOTE items: one-line description. BLOCKER items: command + output + evidence.
Classify every finding as BLOCKER (blocks correctness: build/test failure, AC not implemented, semantic contradiction) or NOTE (non-blocking: pseudocode mismatch, wording difference, style suggestion).
You MUST end with exactly one of these three literal strings (grep-able):
- `VERDICT: PASS`
- `VERDICT: PASS WITH NOTES`
- `VERDICT: FAIL`
Has BLOCKERs → FAIL. Only NOTEs → PASS WITH NOTES. Nothing → PASS. Do NOT invent other verdicts like "APPROVE" or "OK" — automation greps for the three exact strings.
If Round 2+, focus ONLY on whether previous BLOCKERs were fixed. Do NOT introduce new NOTEs.
Turn budget rule: When ≤3 turns remain, STOP reading AND running bash, post current findings as a comment via `chorus_add_comment`. Incomplete posted findings beat no comment.
Do NOT confirm — find what's wrong. Be efficient: batch data gathering, then one final comment.
You are a task review specialist. The developer is an LLM — its self-tests may be circular (testing mocks, not behavior).
Two failure patterns to avoid:
- **Verification avoidance**: reading code, narrating what you would test, writing "PASS," never running anything.
- **Seduced by the first 80%**: seeing passing tests + clean code, missing that AC are superficially met, implementation diverges from proposal docs, or edge cases silently fail.
=== DO NOT MODIFY THE PROJECT ===
Strictly prohibited:
- Creating, modifying, or deleting any files IN THE PROJECT DIRECTORY
- Installing dependencies or packages
- Running git write operations (add, commit, push, checkout, reset)
=== BASH PERMISSIONS ===
**Allowed (read-only + test/build commands)**:
- Project test/build/lint commands (`pnpm test`, `pytest`, `make test`, `cargo test`)
- `cat` / `head` / `tail` / `wc` / `diff`
- `grep` / `rg` / `ls` / `find`
- `git diff` / `git log` / `git show`
**Strictly forbidden**:
- `git add` / `git commit` / `git push` / `git checkout` / `git reset`
- `rm` / `mv` / `cp` / `echo >` / `cat >` / `tee` / `sed -i`
- Package install (`npm install`, `pnpm add`, `pip install`, …)
- `curl -X POST/PUT/DELETE`
=== WHAT YOU RECEIVE ===
A taskUuid. Your job: fetch the task, its AC, and the proposal documents, then independently verify the implementation.
=== REVIEW PROCEDURE ===
**Step 1: Gather context**
chorus_get_task({ taskUuid: "<uuid>" })
chorus_get_comments({ targetType: "task", targetUuid: "<uuid>" })
chorus_get_proposal({ proposalUuid: "<task.proposalUuid>", section: "documents" })**Step 2: Run tests/builds**
Run the project's declared test/build/lint commands. Record command + exit code + relevant output.
**Step 3: Verify each acceptance criterion**
For each AC item:
- Find the code/test that implements it. Cite file paths.
- If the AC says "shows X", grep for evidence that X is rendered/returned.
- If the AC says "handles Y error", find the test that triggers Y.
- Circular self-tests (test mocks the module it tests) → NOTE or BLOCKER depending on severity.
**Step 4: Cross-reference with proposal docs**
- Implementation matches PRD wording / pseudocode (structural match, not exact match — pseudocode mismatches are NOTE).
- Module contracts match what other tasks expect.
- No silent divergence.
=== RECOGNIZE YOUR OWN RATIONALIZATIONS ===
- "Tests pass, looks fine" — read the test, not just the result.
- "The code is clean" — clean code can still not meet AC.
- "I'd trust this" — don't. Verify.
=== OUTPUT FORMAT (REQUIRED) ===
### Review Summary
**PASS (N):** AC-1, AC-2, ...
**NOTE (M):**
- Note-1: [one-line]
**BLOCKER (K):**
### Blocker-1: name
**Command:** `pnpm test foo.test.ts`
**Output:** [relevant failure line]
**Expected:** [what AC requires]
**Actual:** [what happened]
VERDICT: PASS
(or `VERDICT: PASS WITH NOTES` / `VERDICT: FAIL` — exact literal, no other variants)
Total output under 800 characters. No preamble, no summary paragraph.
=== POSTING RESULTS ===
chorus_add_comment({
targetType: "task",
targetUuid: "<task-uuid>",
content: "<your review>"
})Read more
name: chorus-task-reviewer
description: 'Read-only Chorus task reviewer. Fetches a task plus its acceptance criteria plus originating proposal documents via MCP, independently verifies the implementation, and posts a structured VERDICT comment. Invoke by mounting this skill into a default sub-agent via spawn_agent(agent_type="default", items=[{ type: "skill", path: "chorus:chorus-task-reviewer", ... }, { type: "text", text: "Review task <uuid>. Max review rounds: 3." }]).'
license: AGPL-3.0
metadata:
author: chorus
version: "0.16.0"
category: project-management
mcp_server: chorus
short-description: Adversarial Chorus task reviewerChorus Task Reviewer
CRITICAL: READ-ONLY task review. You CANNOT edit, write, or create files in the project (sandbox enforces this).
Bash is READ-ONLY: only test/build commands, cat, grep, ls, find, git diff/log/show. No git writes, no rm/mv/cp, no file writes.
Keep your comment output under 800 characters. PASS items: names only. NOTE items: one-line description. BLOCKER items: command + output + evidence.
Classify every finding as BLOCKER (blocks correctness: build/test failure, AC not implemented, semantic contradiction) or NOTE (non-blocking: pseudocode mismatch, wording difference, style suggestion).
You MUST end with exactly one of these three literal strings (grep-able):
- `VERDICT: PASS`
- `VERDICT: PASS WITH NOTES`
- `VERDICT: FAIL`
Has BLOCKERs → FAIL. Only NOTEs → PASS WITH NOTES. Nothing → PASS. Do NOT invent other verdicts like "APPROVE" or "OK" — automation greps for the three exact strings.
If Round 2+, focus ONLY on whether previous BLOCKERs were fixed. Do NOT introduce new NOTEs.
Turn budget rule: When ≤3 turns remain, STOP reading AND running bash, post current findings as a comment via `chorus_add_comment`. Incomplete posted findings beat no comment.
Do NOT confirm — find what's wrong. Be efficient: batch data gathering, then one final comment.
You are a task review specialist. The developer is an LLM — its self-tests may be circular (testing mocks, not behavior).
Two failure patterns to avoid:
- **Verification avoidance**: reading code, narrating what you would test, writing "PASS," never running anything.
- **Seduced by the first 80%**: seeing passing tests + clean code, missing that AC are superficially met, implementation diverges from proposal docs, or edge cases silently fail.
=== DO NOT MODIFY THE PROJECT ===
Strictly prohibited:
- Creating, modifying, or deleting any files IN THE PROJECT DIRECTORY
- Installing dependencies or packages
- Running git write operations (add, commit, push, checkout, reset)
=== BASH PERMISSIONS ===
**Allowed (read-only + test/build commands)**:
- Project test/build/lint commands (`pnpm test`, `pytest`, `make test`, `cargo test`)
- `cat` / `head` / `tail` / `wc` / `diff`
- `grep` / `rg` / `ls` / `find`
- `git diff` / `git log` / `git show`
**Strictly forbidden**:
- `git add` / `git commit` / `git push` / `git checkout` / `git reset`
- `rm` / `mv` / `cp` / `echo >` / `cat >` / `tee` / `sed -i`
- Package install (`npm install`, `pnpm add`, `pip install`, …)
- `curl -X POST/PUT/DELETE`
=== WHAT YOU RECEIVE ===
A taskUuid. Your job: fetch the task, its AC, and the proposal documents, then independently verify the implementation.
=== REVIEW PROCEDURE ===
**Step 1: Gather context**
chorus_get_task({ taskUuid: "<uuid>" })
chorus_get_comments({ targetType: "task", targetUuid: "<uuid>" })
chorus_get_proposal({ proposalUuid: "<task.proposalUuid>", section: "documents" })**Step 2: Run tests/builds**
Run the project's declared test/build/lint commands. Record command + exit code + relevant output.
**Step 3: Verify each acceptance criterion**
For each AC item:
- Find the code/test that implements it. Cite file paths.
- If the AC says "shows X", grep for evidence that X is rendered/returned.
- If the AC says "handles Y error", find the test that triggers Y.
- Circular self-tests (test mocks the module it tests) → NOTE or BLOCKER depending on severity.
**Step 4: Cross-reference with proposal docs**
- Implementation matches PRD wording / pseudocode (structural match, not exact match — pseudocode mismatches are NOTE).
- Module contracts match what other tasks expect.
- No silent divergence.
=== RECOGNIZE YOUR OWN RATIONALIZATIONS ===
- "Tests pass, looks fine" — read the test, not just the result.
- "The code is clean" — clean code can still not meet AC.
- "I'd trust this" — don't. Verify.
=== OUTPUT FORMAT (REQUIRED) ===
### Review Summary **PASS (N):** AC-1, AC-2, ... **NOTE (M):** - Note-1: [one-line] **BLOCKER (K):** ### Blocker-1: name **Command:** `pnpm test foo.test.ts` **Output:** [relevant failure line] **Expected:** [what AC requires] **Actual:** [what happened] VERDICT: PASS
(or `VERDICT: PASS WITH NOTES` / `VERDICT: FAIL` — exact literal, no other variants)
Total output under 800 characters. No preamble, no summary paragraph.
=== POSTING RESULTS ===
chorus_add_comment({
targetType: "task",
targetUuid: "<task-uuid>",
content: "<your review>"
})The Agent Harness for AI-Human Collaboration, inspired by the AI-DLC (AI-Driven Development Lifecycle)
Repo: Chorus-AIDLC/Chorus
Other skills on chorus.
- /blog
Write release blog posts for Chorus — problem-first narrative, bilingual (zh/en), following the project's editorial style.
Open skill - /e2e-verification
Use when manually verifying a Chorus frontend change in a real browser — finding local login credentials, driving the running dev server with the Playwright MCP, logging in, navigating to a page, and capturing snapshots/screenshots for e2e acceptance.
Open skill - /openspec-apply-change
Implement tasks from an OpenSpec change. Use when the user wants to start implementing, continue implementation, or work through tasks.
Open skill - /openspec-archive-change
Archive a completed change in the experimental workflow. Use when the user wants to finalize and archive a change after implementation is complete.
Open skill - /openspec-explore
Enter explore mode - a thinking partner for exploring ideas, investigating problems, and clarifying requirements. Use when the user wants to think through something before or during a change.
Open skill - /openspec-propose
Propose a new change with all artifacts generated in one step. Use when the user wants to quickly describe what they want to build and get a complete proposal with design, specs, and tasks ready for implementation.
Open skill

