merge main

This commit is contained in:
Shawn Morreau
2025-11-14 14:28:36 -05:00
4 changed files with 202 additions and 5 deletions
+2
View File
@@ -1,11 +1,13 @@
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"];