extract-skill
Reverse-engineer design systems, tokens, and components from live products or screenshots
GitHub Copilot CLI as optional zero-cost provider via copilot -p programmatic mode
$ npx -y skills add nyldn/claude-octopus --skill skill-copilot-provider --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/skill-copilot-providerContext preview
The summary Claude sees to decide when to auto-load this skill.
GitHub Copilot CLI as optional zero-cost provider via copilot -p programmatic mode
name: skill-copilot-provider description: "GitHub Copilot CLI as optional zero-cost provider via copilot -p programmatic mode" disable-model-invocation: true
> **Host: Codex CLI** — This skill was designed for Claude Code and adapted for Codex. > Cross-reference commands use installed skill names in Codex rather than `/octo:*` slash commands. > Use the active Codex shell and subagent tools. Do not claim a provider, model, or host subagent is available until the current session exposes it. > For host tool equivalents, see `skills/blocks/codex-host-adapter.md`.
GitHub Copilot CLI (GA since Feb 2026) serves as an optional provider in the Claude Octopus multi-LLM ecosystem. Integration uses the official `copilot -p` programmatic mode, not reverse-engineered API endpoints.
**Core principle:** Copilot supplements existing providers for research and exploration at zero additional cost (uses existing GitHub Copilot subscription). Each prompt counts as one premium request against your subscription quota.
**Agent types:** `copilot` (general), `copilot-research` (research-focused)
# Check copilot CLI is available if ! command -v copilot &>/dev/null; then # Copilot CLI not installed — silently skip return 0 fi
**Graceful degradation:** When Copilot CLI is unavailable or unauthenticated, silently skip. Other providers continue to operate normally.
Copilot CLI checks credentials in this precedence order:
1. `COPILOT_GITHUB_TOKEN` env var (highest priority — fine-grained PAT with "Copilot Requests" permission) 2. `GH_TOKEN` env var 3. `GITHUB_TOKEN` env var 4. OAuth token from system keychain (via `copilot login`) 5. GitHub CLI (`gh`) authentication fallback
**Option 1: Interactive login (recommended for local dev)**
copilot login
**Option 2: Fine-grained PAT (recommended for CI/automation)** 1. Create a fine-grained PAT at https://github.com/settings/personal-access-tokens/new 2. Enable the "Copilot Requests" permission 3. Set the env var:
export COPILOT_GITHUB_TOKEN="github_pat_..."
**Option 3: Reuse existing `gh` auth** If `gh auth login` is already configured, Copilot CLI will use it automatically.
**Note:** Classic PATs (`ghp_*`) are NOT supported. Use fine-grained PATs (`github_pat_*`).
| Role | Agent Type | Use Case | |------|-----------|----------| | **General** | `copilot` | Broad research, code explanation, exploration | | **Research** | `copilot-research` | Research-focused exploration and analysis |
# Programmatic mode (non-interactive) copilot -p "<prompt>" --no-ask-user
When Copilot is active in a multi-provider workflow:
Providers: 🔴 Codex CLI - Implementation 🟡 Antigravity CLI - Security review 🟢 Copilot CLI - Research perspective 🔵 Claude - Synthesis
Indicator legend:
The `octopus doctor providers` check reports Copilot availability and auth method:
Providers: ✓ Copilot CLI installed (auth: keychain)
When unauthenticated: `⚠ Copilot CLI installed but not authenticated` When missing: `ℹ Copilot CLI not installed (optional)`
1. **Zero additional cost** — Uses existing GitHub Copilot subscription (Pro, Pro+, Business, Enterprise) 2. **Premium request quota** — Each `copilot -p` prompt = 1 premium request from your monthly allowance 3. **Graceful degradation** — When unavailable, silently skip with no errors or warnings 4. **No provider cascade** — If unavailable, the role is reassigned to another provider 5. **Model selection** — Octopus uses Copilot's `auto` selector by default; pin `OCTOPUS_COPILOT_MODEL` to pass an explicit `--model` value 6. **Multi-model access** — Copilot subscription includes access to Claude, GPT, and Gemini models
🐙 **CLAUDE OCTOPUS ACTIVATED** - Multi-provider research mode 🔍 Discover Phase: Researching WebSocket authentication patterns Providers: 🔴 Codex CLI - Technical implementation analysis 🟡 Antigravity CLI - Ecosystem research 🟢 Copilot CLI - Research perspective 🔵 Claude - Strategic synthesis
🐙 **CLAUDE OCTOPUS ACTIVATED** - Multi-provider research mode 🔍 Discover Phase: Researching WebSocket authentication patterns Providers: 🔴 Codex CLI - Technical implementation analysis 🟡 Antigravity CLI - Ecosystem research 🔵 Claude - Strategic synthesis
When Copilot is not detected, it is silently omitted from the provider list.
Every AI model has blind spots. Claude Octopus supports twelve external provider integrations — Codex, Antigravity CLI, Copilot, Qwen, Ollama, Perplexity, OpenRouter, OrcaRouter, OpenCode, Cursor CLI, Grok, and Kimi Code — alongside the built-in Claude Code
Repo: nyldn/claude-octopus
Reverse-engineer design systems, tokens, and components from live products or screenshots
Multi-AI requirements scoping using available external providers (Double Diamond Define phase). Priority triggers: octo define, octo scope, co-define,…
Multi-AI validation, scoring, and review using available external providers (Double Diamond Deliver phase)
Multi-AI implementation using available external providers (Double Diamond Develop phase). DO NOT use for simple code edits, reading/reviewing code, built-in…
Multi-AI research using available external providers (Double Diamond Discover phase)
Decompose and execute large changes, migrations, or multi-issue fixes in parallel with quality gates