summaryrefslogtreecommitdiffhomepage
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/schema/main.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/cmd/schema/main.go b/cmd/schema/main.go
index cd550d3fe..10767f525 100644
--- a/cmd/schema/main.go
+++ b/cmd/schema/main.go
@@ -98,6 +98,19 @@ func generateSchema() map[string]any {
},
}
+ schema["properties"].(map[string]any)["tui"] = map[string]any{
+ "type": "object",
+ "description": "Terminal User Interface configuration",
+ "properties": map[string]any{
+ "theme": map[string]any{
+ "type": "string",
+ "description": "TUI theme name",
+ "default": "catppuccin",
+ "enum": []string{"catppuccin", "gruvbox"}, // Will be expanded as new themes are added
+ },
+ },
+ }
+
// Add MCP servers
schema["properties"].(map[string]any)["mcpServers"] = map[string]any{
"type": "object",