Files
shockbot/agents/index.ts
T
Shawn Morreau 41a4f44e2d merge main
2025-11-14 14:28:36 -05:00

14 lines
302 B
TypeScript

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