From claude-resources
Performs code review on git diffs/PRs using GitHub Copilot CLI cheap gpt-4.1 mode. Synthesizes findings, applies high-priority fixes, commits changes. Use for quota savings on small diffs.
npx claudepluginhub takazudo/claude-resourcesThis skill is limited to using the following tools:
Same behavior as [/gco-review](../gco-review/SKILL.md) — Copilot-driven code review synthesized by Claude Code — but forces `gpt-4.1` from the start. No Premium Requests consumed.
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.
Same behavior as /gco-review — Copilot-driven code review synthesized by Claude Code — but forces gpt-4.1 from the start. No Premium Requests consumed.
gpt-4.1 (forced via GCO_MODEL=gpt-4.1)GCO_USED_FALLBACK= stderr check — it's the user's deliberate choice, not a fallbackFollow the exact same process as /gco-review, but prefix the gco-run.sh invocation with GCO_MODEL=gpt-4.1.
BRANCH=$(git branch --show-current)
BASE=$(gh pr view --json baseRefName -q '.baseRefName' 2>/dev/null)
If no PR, use default branch:
BASE=$(git remote show origin | grep 'HEAD branch' | awk '{print $NF}')
Generate the diff and build a review prompt (identical to /gco-review — focus on bugs, security, performance, error handling, breaking changes).
LOGDIR=$(node $HOME/.claude/scripts/get-logdir.js)
mkdir -p "$LOGDIR"
DATETIME=$(date +%Y%m%d_%H%M%S)
GCO_MODEL=gpt-4.1 \
bash $HOME/.claude/skills/gco/scripts/gco-run.sh \
"<prompt>" \
"$LOGDIR/${DATETIME}-gcoc-review.md" \
"$LOGDIR/${DATETIME}-gcoc-review-stderr.log"
Run as a background Bash task with 15-minute timeout.
GCO_USED_FALLBACK= marker — the cheap model is intentional, not a fallbackSame as /gco-review — if Copilot timed out, produced no output, or is not installed, spawn 2 code-reviewer subagents to review the diff against $BASE.
Organize findings by priority (high / medium / low), present a clear summary, include log file paths.
If fixes were applied, commit with a descriptive message.
~ in paths — use $HOME$LOGDIR/${DATETIME}-gcoc-review.md (timestamped)gpt-4.1 has zero Premium multiplier on the Pro plan — safe to use when quota is tight