From claude-resources
Invokes GitHub Copilot CLI in cheap mode with free gpt-4.1 model for read-only tasks: simple lookups, quick reviews, translations. Use when premium quota is low.
npx claudepluginhub takazudo/claude-resources<prompt>This skill is limited to using the following tools:
Same behavior as [/gco](../gco/SKILL.md) — read-only sub-agent for review, research, and investigation — but forces the free `gpt-4.1` model 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 — read-only sub-agent for review, research, and investigation — but forces the free gpt-4.1 model from the start. No Premium Requests consumed.
gpt-4.1 (forced via GCO_MODEL=gpt-4.1) — not claude-opus-4.6gpt-4.1 is already the cheapest tierFollow the exact same process as /gco, but prefix the gco-run.sh invocation with GCO_MODEL=gpt-4.1:
LOGDIR=$(node $HOME/.claude/scripts/get-logdir.js)
mkdir -p "$LOGDIR"
DATETIME=$(date +%Y%m%d_%H%M%S)
SLUG="<short-topic-slug>"
GCO_MODEL=gpt-4.1 \
bash $HOME/.claude/skills/gco/scripts/gco-run.sh \
"<prompt>" \
"$LOGDIR/${DATETIME}-gcoc-${SLUG}.md" \
"$LOGDIR/${DATETIME}-gcoc-${SLUG}-stderr.log"
Run as a background Bash task with 15-minute timeout.
Do NOT report "used gpt-4.1 because of no quota" — the user deliberately chose cheap mode, it's not a fallback.
~ in paths — use $HOME$LOGDIR/${DATETIME}-gcoc-* (timestamped)