opencode initial run

This commit is contained in:
Shawn Morreau
2025-12-05 16:34:53 -05:00
parent 04c64d4794
commit 06fdedb8c5
6 changed files with 500 additions and 6 deletions
+2
View File
@@ -3,6 +3,7 @@ import { claude } from "./claude.ts";
import { codex } from "./codex.ts";
import { cursor } from "./cursor.ts";
import { gemini } from "./gemini.ts";
import { opencode } from "./opencode.ts";
import type { Agent } from "./shared.ts";
export const agents = {
@@ -10,4 +11,5 @@ export const agents = {
codex,
cursor,
gemini,
opencode,
} satisfies Record<AgentName, Agent>;