Files
shockbot/agents/index.ts
T
2025-11-14 16:12:32 -05:00

12 lines
263 B
TypeScript

import { claude } from "./claude.ts";
import { codex } from "./codex.ts";
import { jules } from "./jules.ts";
export const agents = {
claude,
codex,
jules,
} as const;
export type AgentInputKey = (typeof agents)[keyof typeof agents]["inputKeys"][number];