This commit is contained in:
Shawn Morreau
2025-11-18 14:45:18 -05:00
10 changed files with 191 additions and 237 deletions
+2 -2
View File
@@ -1,13 +1,13 @@
import { claude } from "./claude.ts";
import { codex } from "./codex.ts";
import { cursor } from "./cursor.ts";
import { jules } from "./jules.ts";
import { gemini } from "./gemini.ts";
export const agents = {
claude,
codex,
cursor,
jules,
gemini,
} as const;
export type AgentInputKey = (typeof agents)[keyof typeof agents]["inputKeys"][number];