Standardized output format for code review agents. Provides consistent Critical/Issues/Recommendations structure for automated parsing and aggregation.
Formats code review findings into a standardized report with Critical/Issues/Recommendations structure.
npx claudepluginhub xobotyi/cc-foundryThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Standard report format for agents that evaluate code and report findings without modifying it.
When you receive a report file path in your prompt:
## [Review Type]: [package/path]
### Critical
- [file:line] [issue]: [explanation]
### Issues
- [file:line] [issue]: [explanation]
### Recommendations
- [file:line] [issue]: [explanation]
### Good Patterns
- [brief observation]
### Summary
Files: N | Critical: N | Issues: N | Recommendations: N
## [Review Type]: [package/path]
### No Issues
[One sentence confirming what was checked]
Strengths:
- [observation]
Use file:line for every finding:
- src/handlers/auth.go:42 [silent error]: error from validateToken() is ignored
If line is not applicable, use just the file:
- src/handlers/auth.go [missing tests]: no test file exists
Critical — fix before merge:
Issues — should fix:
Recommendations — consider fixing:
| Field | Content |
|---|---|
| Review Type | Category: "Security Review", "Test Suite", "Error Handling", etc. |
| package/path | Scope that was reviewed |
| Critical | Must-fix: security, data loss, breaking bugs |
| Issues | Should-fix: bad patterns, convention violations |
| Recommendations | Could-fix: minor improvements |
| Good Patterns | What to keep doing |
| Summary | One-line counts for parsing |