1.5 KiB
name, description
| name | description |
|---|---|
| review-only | Read-only review workflow for current diff or requested areas. |
explore
role: explorer output: review-context.md
Identify changed or relevant areas for review: {goal}
Use git status --short, git diff, and targeted code search. Do not edit files.
code-review
role: reviewer dependsOn: explore parallelGroup: review reads: review-context.md
Review correctness, maintainability, regressions, tests, project-rule compliance, SSR safety, and Module Federation constraints.
critical-review
role: critic dependsOn: explore parallelGroup: review reads: review-context.md
Challenge assumptions, missing verification, overengineering, parity gaps, and risky deployment implications.
unit-check
role: unit dependsOn: code-review, critical-review parallelGroup: verify verify: true
Identify the minimum fast verification commands needed and run them when appropriate.
e2e-check
role: e2e dependsOn: code-review, critical-review parallelGroup: verify verify: true
Identify browser or visual checks needed and run them when appropriate. Use Playwright MCP when interactive evidence helps.
summarize
role: docs dependsOn: unit-check, e2e-check output: review-summary.md
Summarize findings first, ordered by severity with file:line evidence. Include open questions and residual test gaps.
gitops
role: gitops dependsOn: summarize verify: true
Inspect git state. For review-only tasks, do not commit unless the workflow produced intentional file changes and verification passed.