begin cursor

This commit is contained in:
Shawn Morreau
2025-11-14 14:27:40 -05:00
parent d4a4dd59bb
commit d1f16e9dd2
3 changed files with 187 additions and 1 deletions
+2
View File
@@ -1,9 +1,11 @@
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"];