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.
This commit is contained in:
YeonGyu-Kim
2026-05-21 16:03:55 +09:00
parent 8a5811bf84
commit 2884ec9ff9
+66
View File
@@ -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": {