Add parrot

This commit is contained in:
Colin McDonnell
2025-11-19 16:52:11 -08:00
parent f765a0878d
commit b05d1bfc53
3 changed files with 14 additions and 6 deletions
+3 -1
View File
@@ -1,13 +1,15 @@
import type { AgentName } from "../external.ts";
import { claude } from "./claude.ts";
import { codex } from "./codex.ts";
import { cursor } from "./cursor.ts";
import { gemini } from "./gemini.ts";
import type { Agent } from "./shared.ts";
export const agents = {
claude,
codex,
cursor,
gemini,
} as const;
} satisfies Record<AgentName, Agent>;
export type AgentInputKey = (typeof agents)[keyof typeof agents]["inputKeys"][number];