Files
vibe-kanban/crates/executors/default_profiles.json
Britannio Jarrett b77abac0c3 Use new sonnet models for the cursor agent profiles (#897)
* Updated cursor model from `sonnet-4` to `sonnet-4.5` in [`default_profiles.json`](file:///private/var/folders/5q/5vgq75y92dz0k7n62z93299r0000gn/T/vibe-kanban/worktrees/a67d-update-cursor-ag/crates/executors/default_profiles.json#L92-L97), updated available models in [`cursor.json`](file:///private/var/folders/5q/5vgq75y92dz0k7n62z93299r0000gn/T/vibe-kanban/worktrees/a67d-update-cursor-ag/shared/schemas/cursor.json#L22) schema, and [`cursor.rs`](file:///private/var/folders/5q/5vgq75y92dz0k7n62z93299r0000gn/T/vibe-kanban/worktrees/a67d-update-cursor-ag/crates/executors/src/executors/cursor.rs#L39) documentation.

* Added `SONNET_4_5_THINKING` profile to [`default_profiles.json`](file:///private/var/folders/5q/5vgq75y92dz0k7n62z93299r0000gn/T/vibe-kanban/worktrees/a67d-update-cursor-ag/crates/executors/default_profiles.json#L98-L103) for the `sonnet-4.5-thinking` model.
2025-10-01 09:15:16 +01:00

125 lines
2.4 KiB
JSON

{
"executors": {
"CLAUDE_CODE": {
"DEFAULT": {
"CLAUDE_CODE": {
"dangerously_skip_permissions": true
}
},
"PLAN": {
"CLAUDE_CODE": {
"plan": true
}
},
"APPROVALS": {
"CLAUDE_CODE": {
"approvals": true
}
}
},
"AMP": {
"DEFAULT": {
"AMP": {
"dangerously_allow_all": true
}
}
},
"GEMINI": {
"DEFAULT": {
"GEMINI": {
"model": "default",
"yolo": true
}
},
"FLASH": {
"GEMINI": {
"model": "flash",
"yolo": true
}
}
},
"CODEX": {
"DEFAULT": {
"CODEX": {
"sandbox": "danger-full-access",
"model_reasoning_summary_format": "experimental",
"model": "gpt-5-codex"
}
},
"HIGH": {
"CODEX": {
"sandbox": "danger-full-access",
"model_reasoning_effort": "high",
"model_reasoning_summary_format": "experimental",
"model": "gpt-5-codex"
}
},
"GPT_5": {
"CODEX": {
"sandbox": "danger-full-access",
"model_reasoning_summary_format": "experimental",
"model": "gpt-5"
}
},
"GPT_5_HIGH": {
"CODEX": {
"sandbox": "danger-full-access",
"model_reasoning_summary_format": "experimental",
"model_reasoning_effort": "high",
"model": "gpt-5"
}
}
},
"OPENCODE": {
"DEFAULT": {
"OPENCODE": {}
}
},
"QWEN_CODE": {
"DEFAULT": {
"QWEN_CODE": {
"yolo": true
}
}
},
"CURSOR": {
"DEFAULT": {
"CURSOR": {
"force": true,
"model": "auto"
}
},
"SONNET_4_5": {
"CURSOR": {
"force": true,
"model": "sonnet-4.5"
}
},
"SONNET_4_5_THINKING": {
"CURSOR": {
"force": true,
"model": "sonnet-4.5-thinking"
}
},
"OPUS_4_1": {
"CURSOR": {
"force": true,
"model": "opus-4.1"
}
},
"GPT_5": {
"CURSOR": {
"force": true,
"model": "gpt-5"
}
},
"GROK": {
"CURSOR": {
"force": true,
"model": "grok"
}
}
}
}
}