import { CheckCircle2 } from 'lucide-react' const agents = [ { name: 'Claude Code', org: 'anthropics', url: 'https://docs.anthropic.com/en/docs/claude-code' }, { name: 'Codex', org: 'openai', url: 'https://github.com/openai/codex' }, { name: 'Cursor', org: 'getcursor', url: 'https://cursor.com' }, { name: 'Aider', org: 'Aider-AI', url: 'https://aider.chat' }, { name: 'Goose', org: 'block', url: 'https://github.com/block/goose' }, { name: 'Amp', org: 'sourcegraph', url: 'https://ampcode.com' }, { name: 'Gemini CLI', org: 'google-gemini', url: 'https://github.com/google-gemini/gemini-cli' }, { name: 'Cline', org: 'cline', url: 'https://cline.bot' }, { name: 'OpenCode', org: 'nicepkg', url: 'https://opencode.ai/' }, { name: 'Copilot', org: 'github', url: 'https://github.com/features/copilot' }, ] export function Agents() { return (
Compatibility

Works with every agent.

All agents work perfectly inside their sandbox — but can't impact anything outside it. No agent-specific configuration needed.

{agents.map((agent) => ( {agent.name} {agent.name} ))}
) }