agent-manager/reviewing-agent-output/SKILL.md
Quality gates and output validation — verify that agent deliverables meet acceptance criteria, maintain cross-agent consistency, and are ready for integration.
npx skillsauth add 7a336e6e/skills Reviewing Agent OutputInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
4 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Ensure every task deliverable meets its acceptance criteria, is consistent with work from other agents, and passes integration checks before being marked as Done.
In Review in tasks.md.Before reviewing, collect everything you need:
tasks.md — especially the acceptance criteria and dependencies.Evaluate every deliverable against these four dimensions:
This is the most critical step. Check these integration points:
Frontend / Backend: The frontend calls the exact endpoints the backend implemented. Request and response shapes match. Error format is handled consistently on both sides.
Backend / Storage: Queries reference columns and tables that exist in the migration. ORM field types match the database schema. Indexes exist for fields used in WHERE clauses and JOINs.
Auth integration: Protected endpoints have the correct middleware guards. Frontend sends tokens in the expected format. Permission checks reference roles that exist in the auth system.
Designer / Frontend: Components use the design tokens defined by the designer. Responsive breakpoints match the layout spec. Interaction states (hover, focus, disabled) are implemented.
Every review results in one of three outcomes:
Approve — All acceptance criteria met, integration checks pass. Set status to Done.
## Review: T3 — Build ProfilePage component
**Verdict:** Approved
**Notes:** All 4 acceptance criteria met. API contract matches backend. Responsive breakpoints match designer spec.
Request Changes — One or more issues need fixing. List every issue with specific, actionable feedback. Set status to Changes Requested.
## Review: T3 — Build ProfilePage component
**Verdict:** Changes Requested
**Issues:**
1. AC #2: Component does not render error message on 404. Add fallback UI.
2. The `userName` prop should be `username` to match the API response shape.
3. No test for loading state. Add a test verifying the skeleton renders while fetching.
Reject — Output is fundamentally misaligned with the requirement or contract. Set status to Rejected.
## Review: T3 — Build ProfilePage component
**Verdict:** Rejected
**Reason:** Component fetches from /api/profiles/:id but backend implements /api/users/:id. Data-fetching layer must match the API contract from T1.
After all tasks for a feature are individually approved, run one final check: verify the full user flow end-to-end, confirm no agent's changes broke another agent's work, and check that shared types and contracts are consistent across all files. Only then mark the feature as complete.
Each review produces a verdict block recorded in tasks.md:
## Review: <Task ID> — <Task Title>
**Verdict:** Approved | Changes Requested | Rejected
**Checklist:**
- Completeness: Pass/Fail
- Correctness: Pass/Fail
- Consistency: Pass/Fail
- Test Coverage: Pass/Fail
**Issues:** (if any)
1. <specific issue with actionable fix>
**Notes:** <any additional context>
../../shared/code-review/SKILL.md — for general code review conventions and feedback format.../delegating-tasks/SKILL.md — for reading acceptance criteria and task context.development
Implement features using the Red-Green-Refactor cycle to ensure testability and correctness from the start.
data-ai
Manage the `tasks.md` ledger with strict locking and collision avoidance protocols to allow multiple agents to work in parallel safely.
development
The git-workflow skill defines branching conventions, commit message formats, and pull request standards that all agents must follow for consistent version control.
development
The environment-config skill standardizes how agents manage environment variables, secrets, and application configuration across local development and deployed environments.