Files
shockbot/index.ts
T
2025-10-14 14:58:46 -04:00

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";