Files
vibe-kanban/shared/schemas/cursor.json
Britannio Jarrett eaff3dee9e add a cursor profile for each model (#803)
* add a cursor profile for each model

* update cursor schema parameter descriptions

* Update crates/executors/default_profiles.json

Co-authored-by: Solomon <abcpro11051@disroot.org>

* Update crates/executors/default_profiles.json

Co-authored-by: Solomon <abcpro11051@disroot.org>

---------

Co-authored-by: Solomon <abcpro11051@disroot.org>
2025-09-22 14:32:05 +01:00

49 lines
1.1 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"properties": {
"append_prompt": {
"title": "Append Prompt",
"description": "Extra text appended to the prompt",
"type": [
"string",
"null"
],
"format": "textarea",
"default": null
},
"force": {
"description": "Force allow commands unless explicitly denied",
"type": [
"boolean",
"null"
]
},
"model": {
"description": "auto, sonnet-4, gpt-5, opus-4.1, grok",
"type": [
"string",
"null"
]
},
"base_command_override": {
"title": "Base Command Override",
"description": "Override the base command with a custom command",
"type": [
"string",
"null"
]
},
"additional_params": {
"title": "Additional Parameters",
"description": "Additional parameters to append to the base command",
"type": [
"array",
"null"
],
"items": {
"type": "string"
}
}
},
"type": "object"
}