Files
shockbot/index.ts
T
2025-09-23 12:48:35 -04:00

14 lines
328 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 ExecutionInputs,
type MainParams,
type MainResult,
main,
} from "./main.ts";