Merge branch 'dev' into sqlite2

This commit is contained in:
Dax Raad
2026-02-04 22:37:08 -05:00
138 changed files with 3658 additions and 1600 deletions

View File

@@ -8910,6 +8910,11 @@
"description": "Toggle tips on home screen",
"default": "<leader>h",
"type": "string"
},
"display_thinking": {
"description": "Toggle thinking blocks visibility",
"default": "none",
"type": "string"
}
},
"additionalProperties": false
@@ -9098,9 +9103,17 @@
"additionalProperties": {}
},
"color": {
"description": "Hex color code for the agent (e.g., #FF5733)",
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$"
"description": "Hex color code (e.g., #FF5733) or theme color (e.g., primary)",
"anyOf": [
{
"type": "string",
"pattern": "^#[0-9a-fA-F]{6}$"
},
{
"type": "string",
"enum": ["primary", "secondary", "accent", "success", "warning", "error", "info"]
}
]
},
"steps": {
"description": "Maximum number of agentic iterations before forcing text-only response",