From omo
Multi-perspective code review on the current diff or specified files. Examines correctness, security, performance, maintainability, and scope creep. Activate when #dr appears anywhere in the user message.
How this skill is triggered — by the user, by Claude, or both
Slash command
/omo:diff-reviewThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Review the current changes: $ARGUMENTS
Review the current changes: $ARGUMENTS
Perform a multi-perspective code review on the current diff.
Step 1 — Gather the diff:
git diff and git diff --cached to see all changes.Step 2 — Review from 5 perspectives (ALWAYS run in parallel — dispatch as simultaneous agents):
Dispatch specialists in parallel for deeper analysis:
security-auditor for perspective 2 (always, not just for security-heavy diffs).deepsearch to trace how changed code is used elsewhere.test-commander to identify what tests should cover the changes.oracle for complex architectural concerns.Do not do shallow inline analysis when a specialist can go deeper. The goal is thoroughness, not token savings.
Step 3 — Compile findings:
End with:
Summary (1-2 sentences overall assessment)Blocking issues (must fix)Warnings (should fix)Notes (optional improvements)Missing tests (what the diff should have tested)npx claudepluginhub speson/omo --plugin omoReviews git-tracked code changes for architecture, security, performance, quality, and style using multi-agent analysis and diff context. Use for PR readiness checks.
Conducts structured code reviews with severity classification (critical, major, minor, suggestion) on git diffs, staged changes, last commits, or specified file paths.
Creates bite-sized, testable implementation plans from specs or requirements, with file structure and task decomposition. Activates before coding multi-step tasks.