Files
shockbot/agents/index.ts
T
Shawn Morreau d1f16e9dd2 begin cursor
2025-11-14 14:27:40 -05:00

12 lines
257 B
TypeScript

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