Files
shockbot/agents/index.ts
T
Shawn Morreau 50c0095e87 merge main
2025-11-14 16:14:36 -05:00

14 lines
311 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]["inputKeys"][number];