/** * CLI Agent Adapters * * Agent-specific adapters for various CLI agents (Claude Code, Aider, etc.). * Each agent adapter implements the IAgentAdapter interface to provide * agent-specific configuration building and capabilities. * * @module execution-engine/agents */ export * from "./types/index.js"; export * from "./base/index.js"; export * from "./profiles/index.js"; export * from "./registry.js"; export * from "./factory.js"; export * from "./claude/index.js"; export * from "./codex/index.js"; export * from "./cursor/index.js"; export type { CopilotConfig, CopilotConfigValidationError, } from "./copilot/config.js"; export { validateCopilotConfig } from "./copilot/config.js"; export type { EntryIndexProvider as CopilotEntryIndexProvider, ConversationPatch as CopilotConversationPatch, PlainTextProcessorConfig, } from "./copilot/plain-text-processor.js"; export { PlainTextLogProcessor, PlainTextProcessorBuilder, CounterIndexProvider as CopilotCounterIndexProvider, } from "./copilot/plain-text-processor.js"; export { SESSION_DISCOVERY_CONFIG, createTempLogDir, isValidUUID as isValidCopilotUUID, watchSessionId as watchCopilotSessionId, extractSessionId as extractCopilotSessionId, formatSessionLine as formatCopilotSessionLine, parseSessionLine as parseCopilotSessionLine, } from "./copilot/session.js"; export { CopilotExecutor } from "./copilot/executor.js"; //# sourceMappingURL=index.d.ts.map