tools/ai/claude/config/skills/review/SKILL.md
Use when the user wants to review a branch, a PR, work-in-progress changes, or asks to "review since X". Reviews changes along two axes — Standards (does the code follow this repo's documented coding standards?) and Spec (does the code match the originating issue/PRD?). Runs both axes as parallel sub-agents and reports them side by side.
npx skillsauth add pixelastic/oroshi reviewInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Two-axis review of the diff between HEAD and a fixed point. Both axes run as parallel sub-agents so they don't pollute each other's context, then this skill aggregates their findings.
Goal: Resolve named params into review-diff args and spec path.
Exit criterion: ref: and spec: resolved; ready to pass to sub-agents.
| Param | Meaning |
|---|---|
| ref:<ref> | Diff base; passed to review-diff |
| spec:<path> | Path to the spec file (issue or PRD); passed to the Spec agent |
ref: values:
| Value | review-diff args |
|---|---|
| ref:dirty | All dirty files in repo |
| ref:worktree | All changed files since start of worktree |
| ref:<branch> | All changed files since start of <branch> |
| ref:<commit> | All changed files in <commit> |
| ref:<start>..<end> | All changed files between <start> and <end> |
If spec: or ref: is absent and cannot be inferred from context, ask the user — do not silently infer.
Goal: Run Standards and Spec reviews in parallel without polluting each other's context.
Exit criterion: Both sub-agents have returned their reports.
Send a single message with two Agent tool calls. Use the general-purpose subagent for both.
references/standards-agent.md for the full brief;references/specs-agent.md for the full brief;Goal: Present both reports side by side without merging or reranking.
Exit criterion: Both reports displayed; one-line summary given.
Present the two reports under ## Standards and ## Spec headings, verbatim or lightly cleaned. Do not merge or rerank findings — the two axes are deliberately separate.
End with a one-line summary: total findings per axis, and the worst single issue (if any) flagged.
| Rationalization | Reality | |---|---| | "The two findings overlap, I'll merge them into one report" | Merged reports hide which axis a finding belongs to. Keep them separate. | | "Spec findings are minor, not worth reporting" | Spec drift compounds. Report everything; let the user dismiss. |
review-diff itself — no diff pasted inline## Standards and ## Spec headingstools
Turn the current conversation context into a PRD and publish it to the project issue tracker. Use when user wants to create a PRD from the current context.
tools
Break a plan, spec, or PRD into independently-grabbable issues using tracer-bullet vertical slices. Use when user wants to convert a plan into issues, create implementation tickets, or break down work into issues.
documentation
Use when user says "sidequest" or "handoff" — compact conversation context into a document for a fresh agent to pick up.
development
Use when the user wants to nail down domain terms, resolve terminology ambiguities, or build a shared language for a module or repo. Drills vocabulary one question at a time and writes to the project GLOSSARY.md.