review

Solid

Review the local unstaged/staged diff with Darkroom's checklist, or summarize active-PR feedback. Triggers "review my changes", "check this diff", "PR comments", "summarize PR feedback". Native /code-review handles a diff or PR.

Code & Development 44 stars 3 forks Updated today MIT

Install

View on GitHub

Quality Score: 87/100

Stars 20%
55
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Code Review Reviews against the full Darkroom quality checklist defined in the reviewer agent. Focus areas: TypeScript strictness, React patterns, accessibility, performance, security, file structure. ## Standalone Codex host setup Claude frontmatter does not enforce a fork or reviewer identity in standalone Codex. Keep the main pass read-only or create a fresh `reviewer` with `spawn_agent`. Deliver context to a running reviewer with `send_message`, trigger another turn for an idle existing reviewer with `followup_task`, wait with `wait_agent`, and stop its current turn with `interrupt_agent` only when necessary. Never spawn `codex-verifier` and never run `codex-run.ts` from inside Codex. Writers share the working tree unless the live host explicitly offers isolation. Reviewers may overlap because they are read-only; serialize any later implementer and test-writer work with non-overlapping ownership. Gather the current state by explicitly running `git branch --show-current`, `git diff --staged --stat`, and `git diff --stat`. The `!command` lines below are Claude interpolation only. ## Claude current state - Branch: !`git branch --show-current 2>/dev/null || echo "unknown"` - Staged files: !`git diff --staged --stat 2>/dev/null || echo "nothing staged"` - Unstaged files: !`git diff --stat 2>/dev/null || echo "nothing unstaged"` ## Get Changes ```bash # Unstaged changes git diff # Staged changes git diff --staged # Specific file git diff path/to/file ``` ## Large d...

Details

Author
darkroomengineering
Repository
darkroomengineering/cc-settings
Created
8 months ago
Last Updated
today
Language
TypeScript
License
MIT

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category