From claude-resources
Runs GitHub Copilot CLI as a read-only sub-agent for code review, research, and second opinions. Invoke via /gco or when Copilot is mentioned.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-resources:gco <prompt><prompt>This skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Run GitHub Copilot CLI in read-only mode for code review, research, and investigation tasks.
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 executiongpt-5.4Take 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)~ in paths — use $HOME$LOGDIR/${DATETIME}-gco-* (timestamped)npx claudepluginhub takazudo/claude-resources --plugin claude-resourcesIntegrates GitHub Copilot CLI as a zero-cost provider via `copilot -p` programmatic mode. Useful for multi-LLM workflows requiring research and exploration without additional API costs.
Delegates tasks to GitHub Copilot CLI non-interactively with multi-model support (Claude, GPT, Gemini), permission controls, output sharing, and session resume. Useful for Copilot delegation requests, model comparisons, or programmatic runs.
Runs OpenAI Codex CLI as a subagent for second opinions, code reviews, and questions. Useful when you want a different AI model's perspective.