sst Opencode (#239)

This commit is contained in:
Solomon
2025-07-17 18:36:14 +01:00
committed by GitHub
parent 3ed807f327
commit 9507836e6b
12 changed files with 1271 additions and 12 deletions

View File

@@ -22,7 +22,7 @@ export type SoundConstants = { sound_files: Array<SoundFile>, sound_labels: Arra
export type ConfigConstants = { editor: EditorConstants, sound: SoundConstants, };
export type ExecutorConfig = { "type": "echo" } | { "type": "claude" } | { "type": "claude-plan" } | { "type": "amp" } | { "type": "gemini" } | { "type": "setup-script", script: string, } | { "type": "claude-code-router" } | { "type": "charm-opencode" };
export type ExecutorConfig = { "type": "echo" } | { "type": "claude" } | { "type": "claude-plan" } | { "type": "amp" } | { "type": "gemini" } | { "type": "setup-script", script: string, } | { "type": "claude-code-router" } | { "type": "charm-opencode" } | { "type": "sst-opencode" };
export type ExecutorConstants = { executor_types: Array<ExecutorConfig>, executor_labels: Array<string>, };
@@ -126,7 +126,8 @@ export const EXECUTOR_TYPES: string[] = [
"amp",
"gemini",
"charm-opencode",
"claude-code-router"
"claude-code-router",
"sst-opencode"
];
export const EDITOR_TYPES: EditorType[] = [
@@ -145,7 +146,8 @@ export const EXECUTOR_LABELS: Record<string, string> = {
"amp": "Amp",
"gemini": "Gemini",
"charm-opencode": "Charm Opencode",
"claude-code-router": "Claude Code Router"
"claude-code-router": "Claude Code Router",
"sst-opencode": "SST Opencode"
};
export const EDITOR_LABELS: Record<string, string> = {