Files
shockbot/agents/index.ts
T
2025-11-14 14:27:00 -05:00

12 lines
254 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]["inputKey"];