From darkroom
Performs code reviews before merge/commit/ship via git diffs, checking TypeScript strictness, React patterns, accessibility, performance, security, and file structure.
npx claudepluginhub darkroomengineering/cc-settingsThis skill uses the workspace's default tool permissions.
Reviews against the full Darkroom quality checklist defined in the reviewer agent.
Automates code reviews on git diffs, staged changes, PRs, files, or branches against CLAUDE.md conventions and prioritized best practices (security first).
Reviews pull requests and code changes for correctness, security, performance, code quality, testing, documentation, and maintainability using git diffs.
Performs lightweight ad-hoc code reviews on PRs, diffs, files, or commits across security, performance, correctness, and maintainability dimensions.
Share bugs, ideas, or general feedback.
Reviews against the full Darkroom quality checklist defined in the reviewer agent.
Focus areas: TypeScript strictness, React patterns, accessibility, performance, security, file structure.
git branch --show-current 2>/dev/null || echo "unknown"git diff --staged --stat 2>/dev/null || echo "nothing staged"git diff --stat 2>/dev/null || echo "nothing unstaged"# Unstaged changes
git diff
# Staged changes
git diff --staged
# Specific file
git diff path/to/file
## Summary
[1-2 sentence overview]
## Critical Issues
- [Must fix before merge]
## Warnings
- [Should fix, but not blocking]
## Suggestions
- [Nice to have improvements]
## Verdict
[APPROVED / NEEDS CHANGES / BLOCKED]