add missing schema components

This commit is contained in:
YeonGyu-Kim
2025-12-14 22:34:55 +09:00
parent 4b6b725f13
commit 8618d57d95

View File

@@ -24,6 +24,7 @@
"items": { "items": {
"type": "string", "type": "string",
"enum": [ "enum": [
"OmO",
"oracle", "oracle",
"librarian", "librarian",
"explore", "explore",
@@ -56,7 +57,8 @@
"auto-update-checker", "auto-update-checker",
"startup-toast", "startup-toast",
"keyword-detector", "keyword-detector",
"agent-usage-reminder" "agent-usage-reminder",
"interactive-bash-blocker"
] ]
} }
}, },
@@ -66,7 +68,9 @@
"type": "string", "type": "string",
"enum": [ "enum": [
"build", "build",
"plan",
"OmO", "OmO",
"OmO-Plan",
"oracle", "oracle",
"librarian", "librarian",
"explore", "explore",
@@ -258,9 +262,9 @@
"type": "object", "type": "object",
"description": "Configuration for the default OmO agent behavior.", "description": "Configuration for the default OmO agent behavior.",
"properties": { "properties": {
"disable_build": { "disabled": {
"type": "boolean", "type": "boolean",
"description": "When true, hides the default Build agent. OmO becomes the only primary agent.", "description": "When true, disables OmO agents and restores original build/plan as primary.",
"default": false "default": false
} }
} }