Multi-Agent Setup

Configure Skill Seekers with Claude, Copilot, Codex, and custom agents.

Supported Agents

AgentCLI FlagRequirements
Claude Code--agent claudeClaude Max subscription
GitHub Copilot--agent copilotCopilot subscription
OpenAI Codex--agent codexOpenAI API key
OpenCode--agent opencodeOpenCode CLI
Custom--agent customCustom command

Quick Setup

Claude Code (Default)

# Already installed with MCP
skill-seekers enhance output/react/ --agent claude

GitHub Copilot

# Install Copilot CLI
gh extension install github/copilot

# Use with Skill Seekers
skill-seekers enhance output/react/ --agent copilot

OpenAI Codex

# Set API key
export OPENAI_API_KEY=sk-...

# Use Codex
skill-seekers enhance output/react/ --agent codex

Custom Agent

# Any CLI tool
skill-seekers enhance output/react/ \
  --agent custom \
  --agent-cmd "my-ai-tool {prompt_file}"

Environment Variables

# Default agent
export SKILL_SEEKER_AGENT=claude

# Custom command
export SKILL_SEEKER_AGENT_CMD="my-tool {prompt_file}"

CI/CD Integration

# GitHub Actions with different agents
strategy:
  matrix:
    agent: [claude, copilot, codex]
    
steps:
  - run: skill-seekers enhance output/ --agent ${{ matrix.agent }}

Comparison

FeatureClaudeCopilotCodexOpenCode
CostMax subCopilot subAPI payFree
SpeedFastFastMediumMedium
QualityHighHighHighMedium
Offline