13 lines
319 B
TypeScript
13 lines
319 B
TypeScript
/**
|
|
* Library entry point for npm package
|
|
* This exports the main function for programmatic usage
|
|
*/
|
|
|
|
export { ClaudeAgent } from "./agents/claude.ts";
|
|
export type { Agent, AgentConfig, AgentResult } from "./agents/types.ts";
|
|
export {
|
|
type Inputs as ExecutionInputs,
|
|
type MainResult,
|
|
main,
|
|
} from "./main.ts";
|