feat: add OpenCode session management

This commit is contained in:
liujing
2026-07-16 21:13:11 +08:00
parent 535b03712e
commit 0015774cd4
11 changed files with 1101 additions and 18 deletions
+2
View File
@@ -1,11 +1,13 @@
import { CodexAdapter } from './codex-adapter.js';
import { ClaudeAdapter } from './claude-adapter.js';
import { AgyAdapter } from './agy-adapter.js';
import { OpenCodeAdapter } from './opencode-adapter.js';
const ENGINES = {
codex: new CodexAdapter(),
claude: new ClaudeAdapter(),
agy: new AgyAdapter(),
opencode: new OpenCodeAdapter(),
};
export function getEngine(name) {