From 2884ec9ff996f10f46acee48657a0e40c7430012 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Thu, 21 May 2026 16:03:55 +0900 Subject: [PATCH] chore: regenerate config schema bun run build:schema brings assets/oh-my-opencode.schema.json back in sync with the Zod source. Surfaces two fields that were already present in src/config/schema/ but missing from the published artifact: - disabled_providers at the top level (from feat/config-disabled-providers) - displayName on every agent override (from fix/schema-preserve-custom-agent-overrides) No Zod source changes; only the generated artifact moves. --- assets/oh-my-opencode.schema.json | 66 +++++++++++++++++++++++++++++++ 1 file changed, 66 insertions(+) diff --git a/assets/oh-my-opencode.schema.json b/assets/oh-my-opencode.schema.json index cfe085234..91dfb7c6c 100644 --- a/assets/oh-my-opencode.schema.json +++ b/assets/oh-my-opencode.schema.json @@ -87,6 +87,12 @@ "type": "string" } }, + "disabled_providers": { + "type": "array", + "items": { + "type": "string" + } + }, "mcp_env_allowlist": { "type": "array", "items": { @@ -307,6 +313,9 @@ "type": "string", "pattern": "^#[0-9A-Fa-f]{6}$" }, + "displayName": { + "type": "string" + }, "permission": { "type": "object", "properties": { @@ -660,6 +669,9 @@ "type": "string", "pattern": "^#[0-9A-Fa-f]{6}$" }, + "displayName": { + "type": "string" + }, "permission": { "type": "object", "properties": { @@ -1013,6 +1025,9 @@ "type": "string", "pattern": "^#[0-9A-Fa-f]{6}$" }, + "displayName": { + "type": "string" + }, "permission": { "type": "object", "properties": { @@ -1366,6 +1381,9 @@ "type": "string", "pattern": "^#[0-9A-Fa-f]{6}$" }, + "displayName": { + "type": "string" + }, "permission": { "type": "object", "properties": { @@ -1722,6 +1740,9 @@ "type": "string", "pattern": "^#[0-9A-Fa-f]{6}$" }, + "displayName": { + "type": "string" + }, "permission": { "type": "object", "properties": { @@ -2075,6 +2096,9 @@ "type": "string", "pattern": "^#[0-9A-Fa-f]{6}$" }, + "displayName": { + "type": "string" + }, "permission": { "type": "object", "properties": { @@ -2428,6 +2452,9 @@ "type": "string", "pattern": "^#[0-9A-Fa-f]{6}$" }, + "displayName": { + "type": "string" + }, "permission": { "type": "object", "properties": { @@ -2781,6 +2808,9 @@ "type": "string", "pattern": "^#[0-9A-Fa-f]{6}$" }, + "displayName": { + "type": "string" + }, "permission": { "type": "object", "properties": { @@ -3134,6 +3164,9 @@ "type": "string", "pattern": "^#[0-9A-Fa-f]{6}$" }, + "displayName": { + "type": "string" + }, "permission": { "type": "object", "properties": { @@ -3487,6 +3520,9 @@ "type": "string", "pattern": "^#[0-9A-Fa-f]{6}$" }, + "displayName": { + "type": "string" + }, "permission": { "type": "object", "properties": { @@ -3840,6 +3876,9 @@ "type": "string", "pattern": "^#[0-9A-Fa-f]{6}$" }, + "displayName": { + "type": "string" + }, "permission": { "type": "object", "properties": { @@ -4193,6 +4232,9 @@ "type": "string", "pattern": "^#[0-9A-Fa-f]{6}$" }, + "displayName": { + "type": "string" + }, "permission": { "type": "object", "properties": { @@ -4546,6 +4588,9 @@ "type": "string", "pattern": "^#[0-9A-Fa-f]{6}$" }, + "displayName": { + "type": "string" + }, "permission": { "type": "object", "properties": { @@ -4899,6 +4944,9 @@ "type": "string", "pattern": "^#[0-9A-Fa-f]{6}$" }, + "displayName": { + "type": "string" + }, "permission": { "type": "object", "properties": { @@ -6242,6 +6290,24 @@ ], "additionalProperties": false }, + "default_mode": { + "type": "object", + "properties": { + "ultrawork": { + "default": false, + "type": "boolean" + }, + "ralph_loop": { + "default": false, + "type": "boolean" + } + }, + "required": [ + "ultrawork", + "ralph_loop" + ], + "additionalProperties": false + }, "_migrations": { "type": "array", "items": {