From claude-resources
Runs iterative code reviews with /deep-review (or Codex/Copilot alternatives) multiple times, fixing bugs and quality issues each round. Use for thorough multi-pass checks before finalizing code.
npx claudepluginhub takazudo/claude-resources[count] [--aggressive|--defensive] [--stay|--as-pr] [-haiku|-so|-op] [-co|--codex] [-gco|--github-copilot] [-gcoc|--github-copilot-cheap]This skill uses the workspace's default tool permissions.
Run `/deep-review` repeatedly, fixing issues each round. Progressively kills bugs, improves code quality, and surfaces improvement opportunities.
Guides Next.js Cache Components and Partial Prerendering (PPR): 'use cache' directives, cacheLife(), cacheTag(), revalidateTag() for caching, invalidation, static/dynamic optimization. Auto-activates on cacheComponents: true.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Share bugs, ideas, or general feedback.
Run /deep-review repeatedly, fixing issues each round. Progressively kills bugs, improves code quality, and surfaces improvement opportunities.
Parse arguments to extract:
/x-as-pr workflow-haiku / --haiku, -so / --sonnet, -op / --opus): Forwarded verbatim to /deep-review (or the backend -review variant if a backend flag is also set). Sets the Claude model for subagent reviewers. Pick at most one. Default: -op (matches /deep-review's default)./codex-review instead of /deep-review for the review process. Codex review uses OpenAI Codex CLI for faster, cheaper reviews/gco-review (GitHub Copilot CLI) instead of /deep-review for the review process. Mutually exclusive with -co and -gcoc-gco but forces the free gpt-4.1 model (skips the Premium opus attempt). Uses /gcoc-review. Mutually exclusive with -co and -gcoDetermine the working mode from parsed arguments.
If --as-pr:
/x-as-pr <description> to create a branch and draft PRPR_NUMIf --stay:
For each round (1 to N):
If --codex is set, invoke /codex-review using the Skill tool. /codex-review silently falls back to Claude Code reviewers if codex is rate-limited — no special handling needed here. If --github-copilot is set, invoke /gco-review using the Skill tool. /gco-review silently falls back to Claude Code reviewers if Copilot is rate-limited — no special handling needed here. If --github-copilot-cheap is set, invoke /gcoc-review using the Skill tool. /gcoc-review silently falls back to Claude Code reviewers if Copilot is rate-limited — no special handling needed here. Otherwise, invoke /deep-review. Wait for all reviewers to complete.
Sort all findings into:
If --aggressive:
If --defensive:
/x-wt-teams to spawn parallel agents. Group related fixes into topicsAfter applying fixes for this round:
[scope] Fix review round N findings: <summary>Tell the user what was found and fixed in this round. Be concise.
If a round finds 0 actionable issues, skip remaining rounds. Report "No issues found — stopping early."
If --as-pr:
/pr-revise to update the PR title and descriptionIf --stay:
/review-loop
/review-loop 5 --aggressive
Runs 5 rounds, fixes aggressively.
/review-loop 3 --defensive --as-pr
Creates branch+PR, runs 3 defensive rounds, updates PR.
/review-loop 3 --codex
Uses /codex-review (OpenAI Codex CLI) instead of /deep-review for each round.
/review-loop 3 --github-copilot
Uses /gco-review (GitHub Copilot CLI) instead of /deep-review for each round.
/review-loop 3 --github-copilot-cheap
Uses /gcoc-review (GitHub Copilot CLI, forced to free gpt-4.1 model) instead of /deep-review for each round.
/review-loop 1 --aggressive
/deep-review with 3 Opus reviewers in PR mode (or 6 in full project mode)--codex, review uses /codex-review (OpenAI Codex CLI) instead — faster and cheaper. If codex is rate-limited, /codex-review silently falls back to Claude Code reviewers (no workflow interruption)--github-copilot, review uses /gco-review (GitHub Copilot CLI) instead. If Copilot is rate-limited, /gco-review silently falls back to Claude Code reviewers (no workflow interruption)--github-copilot-cheap, review uses /gcoc-review (GitHub Copilot CLI, forced gpt-4.1) instead. If Copilot is rate-limited, /gcoc-review silently falls back to Claude Code reviewers (no workflow interruption)--aggressive vs --defensive distinction controls the threshold for automatic fixes, not the review depth