From coding-agent
Systematic code review process for domain leads reviewing specialist output. Covers correctness, security, performance, and convention compliance.
How this skill is triggered — by the user, by Claude, or both
Slash command
/coding-agent:code-reviewThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
A structured checklist for domain leads reviewing specialist-produced code. Work through each section in order — correctness first, then the rest.
A structured checklist for domain leads reviewing specialist-produced code. Work through each section in order — correctness first, then the rest.
CLAUDE.md and the codebase?Be specific with location. Reference file:line rather than describing the problem abstractly.
Explain why. "This is wrong" is not actionable. "This creates an N+1 query because getUser is called inside a loop — consider batching with getUsersByIds" is.
Distinguish severity. Use consistent labels so the author knows what must change versus what is optional:
| Label | Meaning |
|---|---|
blocker | Must be fixed before merge. Correctness, security, or data-loss risk. |
major | Should be fixed before merge. Performance, maintainability, or convention issue. |
minor | Fix if you have time. Small improvements, style preferences. |
nit | Trivial. Take it or leave it. |
Offer alternatives. When blocking a change, suggest a path forward. Don't just reject — help.
Separate opinion from requirement. Prefix personal preferences with "I'd prefer..." to distinguish them from objective issues.
npx claudepluginhub devjarus/coding-agent --plugin coding-agentProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.