Files
shockbot/agents/index.ts
T
Shawn Morreau 7ec4fd52b1 merge
2025-11-18 14:45:18 -05:00

14 lines
314 B
TypeScript

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