How this skill is triggered — by the user, by Claude, or both
Slash command
/orc:setupThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Help the user set up external model access for orc.
Help the user set up external model access for orc.
First, call the MCP tool orc_status to see which providers are configured.
export OPENROUTER_API_KEY="sk-or-..."
npm i -g @openai/codexcodex authexport OPENAI_API_KEY="sk-..."npm i -g @anthropic-ai/gemini-cli@latest (or check https://ai.google.dev/gemini-api/docs/gemini-cli for latest install instructions)gemini auth loginexport GEMINI_API_KEY="AI..."After setup, run /setup again to verify all providers show as connected.
At minimum, set OPENROUTER_API_KEY — this enables all external models through a single API key. The Codex and Gemini CLIs are optional but provide better integration (sandbox execution, native auth).
npx claudepluginhub jbj338033/orc-4 --plugin orcInvokes OpenAI Codex and Google Gemini CLIs via Bash for second opinions, code reviews, and alternative analysis. Useful when users request external AI verification or explicitly say 'ask codex' or 'ask gemini'.
Delegates implementation and review tasks to external AI CLI tools (Codex, Gemini) with cross-model adversarial review for cost savings and improved accuracy.
Routes LLM requests to OpenAI, Grok/xAI, Groq, DeepSeek, or OpenRouter using SwiftOpenAI-CLI agent mode with auto-setup and API key checks.