From 5dba5992b4e61a79d59dc6712b7b304bab54f329 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Fri, 19 Dec 2025 12:02:36 +0900 Subject: [PATCH] fix(schema): update schema to reflect Sisyphus agent (#119) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Rename OmO → Sisyphus in disabled_agents enum - Rename OmO, OmO-Plan → Sisyphus, Planner-Sisyphus in agents properties - Replace omo_agent with sisyphus_agent config option - Add experimental config options (aggressive_truncation, empty_message_recovery, auto_resume) Co-authored-by: Claude --- assets/oh-my-opencode.schema.json | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) diff --git a/assets/oh-my-opencode.schema.json b/assets/oh-my-opencode.schema.json index bfe8981..76ec089 100644 --- a/assets/oh-my-opencode.schema.json +++ b/assets/oh-my-opencode.schema.json @@ -24,7 +24,7 @@ "items": { "type": "string", "enum": [ - "OmO", + "Sisyphus", "oracle", "librarian", "explore", @@ -288,7 +288,7 @@ } } }, - "OmO": { + "Sisyphus": { "type": "object", "properties": { "model": { @@ -399,7 +399,7 @@ } } }, - "OmO-Plan": { + "Planner-Sisyphus": { "type": "object", "properties": { "model": { @@ -1201,13 +1201,27 @@ "google_auth": { "type": "boolean" }, - "omo_agent": { + "sisyphus_agent": { "type": "object", "properties": { "disabled": { "type": "boolean" } } + }, + "experimental": { + "type": "object", + "properties": { + "aggressive_truncation": { + "type": "boolean" + }, + "empty_message_recovery": { + "type": "boolean" + }, + "auto_resume": { + "type": "boolean" + } + } } } } \ No newline at end of file