From claude-resources
Runs GitHub Copilot CLI in read-only mode as sub-agent for code review, research, and second opinions on code or architecture. Invoke via /gco or auto-activates on 'gco' or 'copilot' mentions.
npx claudepluginhub takazudo/claude-resources<prompt>This skill is limited to using the following tools:
Run GitHub Copilot CLI in read-only mode for code review, research, and investigation tasks.
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 GitHub Copilot CLI in read-only mode for code review, research, and investigation tasks.
-p (prompt) and -s (silent output)--deny-tool='write' (hard tool-level block) and read-only preamble in prompt--no-ask-user and --allow-all-tools for fully autonomous executionclaude-opus-4.6 (primary), auto-fallback to gpt-4.1 (free tier) on no-quotaIf you already know Premium quota is low and want to skip the opus attempt, use /gcoc instead — identical behavior but forces the free gpt-4.1 model from the start.
Take the user's request and use it as the copilot prompt. If the user provides /gco with arguments, use those as the prompt directly.
LOGDIR=$(node $HOME/.claude/scripts/get-logdir.js)
mkdir -p "$LOGDIR"
DATETIME=$(date +%Y%m%d_%H%M%S)
SLUG="<short-topic-slug>"
bash $HOME/.claude/skills/gco/scripts/gco-run.sh \
"<prompt>" \
"$LOGDIR/${DATETIME}-gco-${SLUG}.md" \
"$LOGDIR/${DATETIME}-gco-${SLUG}-stderr.log"
Run as a background Bash task with 15-minute timeout.
$LOGDIR/${DATETIME}-gco-${SLUG}.md)GCO_USED_FALLBACK= line. If present, gco-run.sh auto-retried with gpt-4.1 because the primary model was out of quota. Notify the user with one line: "Used gpt-4.1 instead of claude-opus-4.6 because of no quota." Proceed with the output — it is still valid.~ in paths — use $HOME$LOGDIR/${DATETIME}-gco-* (timestamped)