From 3c5278fafb799f2927dcd956895ce8cc7d917875 Mon Sep 17 00:00:00 2001 From: acamq <179265037+acamq@users.noreply.github.com> Date: Wed, 11 Mar 2026 19:00:47 -0600 Subject: [PATCH] chore(schema): update JSON schema for start_work.worktree field --- assets/oh-my-opencode.schema.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/assets/oh-my-opencode.schema.json b/assets/oh-my-opencode.schema.json index 3c79ebf9c..29fc36519 100644 --- a/assets/oh-my-opencode.schema.json +++ b/assets/oh-my-opencode.schema.json @@ -3912,10 +3912,15 @@ "auto_commit": { "default": true, "type": "boolean" + }, + "worktree": { + "default": true, + "type": "boolean" } }, "required": [ - "auto_commit" + "auto_commit", + "worktree" ], "additionalProperties": false },