feat: Open Code agent

This commit is contained in:
bracesproul
2025-03-06 20:04:55 -08:00
parent c8e985ca69
commit 38710f3cb0
5 changed files with 64 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
import { OpenCodeState, OpenCodeUpdate } from "../types";
export async function executor(state: OpenCodeState): Promise<OpenCodeUpdate> {
throw new Error("Not implemented" + state);
}