From review-by-opp
Starts guarded code implementation and Codex review session in git repos. Initializes review ledger with rounds, findings tracking, and stop gate blocking completion on unresolved issues.
npx claudepluginhub akshan-main/review-by-opp --plugin review-by-oppThis skill uses the workspace's default tool permissions.
You are starting a review-by-opp session. This activates strict review tracking.
Orchestrates cross-agent code review: Claude implements plans/code, Codex CLI reviews via bash scripts. Activates on 'codex review' or Russian triggers.
Provides cross-model second opinion from OpenAI Codex on implementation plans or git diffs. Auto-detects mode, iterates up to 5 rounds until approval. Use for architecture decisions, refactors, critical changes.
Runs cross-LLM iterative code reviews with Codex or Gemini CLI peers, applying accepted fixes until consensus on improved code and report.
Share bugs, ideas, or general feedback.
You are starting a review-by-opp session. This activates strict review tracking.
Check prerequisites:
git init first."reviews/current.json. If one exists, ask: "A session is already active. Use /review-by-opp:resume to continue or /review-by-opp:finalize to close it first."Initialize session:
reviews/ directory structure: reviews/current.json, reviews/rounds/, reviews/summaries/.review-by-opp.json if it exists, otherwise use defaultsreviews/current.json with:
{
"session_id": "<uuid>",
"started_at": "<iso-timestamp>",
"updated_at": "<iso-timestamp>",
"current_round": 0,
"max_rounds": 4,
"findings": [],
"rounds": [],
"final_verdict": null,
"config": { ... }
}
Check for Codex:
npx @openai/codex --help to verify Codex CLI is availablenpm install -g @openai/codex then npx @openai/codex login"Report status:
Set the rules: Tell the user:
Review ledger session started. Rules:
- After implementing changes, run
/review-by-opp:reviewto get Codex feedback- Use
/review-by-opp:fixto address findings- Use
/review-by-opp:statusto check progress- You cannot finalize until all blocking findings are resolved
- Use
/review-by-opp:finalizewhen ready to close
CRITICAL: You are the builder. Codex is the auditor. You must not claim work is complete while blocking findings remain open. The stop gate enforces this.
$ARGUMENTS