From coding-agent
Systematic code review process for domain leads reviewing specialist output. Covers correctness, security, performance, and convention compliance.
npx claudepluginhub devjarus/coding-agentThis skill uses the workspace's default tool permissions.
A structured checklist for domain leads reviewing specialist-produced code. Work through each section in order — correctness first, then the rest.
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
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.