mirror of
https://github.com/jparkerweb/plan2code.git
synced 2026-07-21 18:33:22 -07:00
20 lines
552 B
TypeScript
20 lines
552 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';
|
|
|
|
// Register all agents
|
|
import { agentRegistry } from './registry.js';
|
|
import { claudeCodeAgent } from './claude-code.js';
|
|
import { copilotCliAgent } from './copilot-cli.js';
|
|
|
|
agentRegistry.register(claudeCodeAgent);
|
|
agentRegistry.register(copilotCliAgent);
|