mirror of
https://github.com/jparkerweb/plan2code.git
synced 2026-09-17 16:22:23 -07:00
161e424632
Upstream replaced GitHub Copilot CLI with Devin; Plan2Code keeps both, so Claude Code, Copilot CLI and Devin are all selectable and existing Copilot selections keep working. AI Assisted
23 lines
668 B
TypeScript
23 lines
668 B
TypeScript
export type {
|
|
Agent,
|
|
AgentConfig,
|
|
AgentExecutionOptions,
|
|
AgentExecutionResult,
|
|
ModelOption,
|
|
} from './types.js';
|
|
|
|
export { agentRegistry } from './registry.js';
|
|
export { claudeCodeAgent } from './claude-code.js';
|
|
export { copilotCliAgent } from './copilot-cli.js';
|
|
export { devinCliAgent } from './devin-cli.js';
|
|
|
|
// Register all agents
|
|
import { agentRegistry } from './registry.js';
|
|
import { claudeCodeAgent } from './claude-code.js';
|
|
import { copilotCliAgent } from './copilot-cli.js';
|
|
import { devinCliAgent } from './devin-cli.js';
|
|
|
|
agentRegistry.register(claudeCodeAgent);
|
|
agentRegistry.register(copilotCliAgent);
|
|
agentRegistry.register(devinCliAgent);
|