Files
vibe-kanban/crates/executors/default_profiles.json
Gabriel Gordon-Hall 798bcb80a3 feat: manual approvals (#748)
* manual user approvals

* refactor implementation

* cleanup

* fix lint errors

* i18n

* remove isLastEntry frontend check

* address fe feedback

* always run claude plan with approvals

* add watchkill script back to plan mode

* update timeout

* tooltip hover

* use response type

* put back watchkill append hack
2025-09-22 16:02:42 +01:00

115 lines
2.0 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": "auto",
"model": "gpt-5-codex"
}
},
"HIGH": {
"CODEX": {
"sandbox": "auto",
"model_reasoning_effort": "high",
"model": "gpt-5-codex"
}
},
"GPT_5": {
"CODEX": {
"sandbox": "auto",
"model": "gpt-5"
}
},
"GPT_5_HIGH": {
"CODEX": {
"sandbox": "auto",
"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": {
"CURSOR": {
"force": true,
"model": "sonnet-4"
}
},
"OPUS_4_1": {
"CURSOR": {
"force": true,
"model": "opus-4.1"
}
},
"GPT_5": {
"CURSOR": {
"force": true,
"model": "gpt-5"
}
},
"GROK": {
"CURSOR": {
"force": true,
"model": "grok"
}
}
}
}
}