feat: default codex permissions (#886)

* add codex option

* update default codex configurations

* fix ci
This commit is contained in:
Gabriel Gordon-Hall
2025-09-30 09:40:20 +01:00
committed by GitHub
parent 091e903cf6
commit 4177a54d91
5 changed files with 44 additions and 5 deletions

View File

@@ -64,6 +64,18 @@
null
]
},
"model_reasoning_summary_format": {
"description": "Format for model reasoning summaries",
"type": [
"string",
"null"
],
"enum": [
"none",
"experimental",
null
]
},
"base_command_override": {
"title": "Base Command Override",
"description": "Override the base command with a custom command",

View File

@@ -160,7 +160,7 @@ export type GeminiModel = "default" | "flash";
export type Amp = { append_prompt: AppendPrompt, dangerously_allow_all?: boolean | null, base_command_override?: string | null, additional_params?: Array<string> | null, };
export type Codex = { append_prompt: AppendPrompt, sandbox?: SandboxMode | null, oss?: boolean | null, model?: string | null, model_reasoning_effort?: ReasoningEffort | null, model_reasoning_summary?: ReasoningSummary | null, base_command_override?: string | null, additional_params?: Array<string> | null, };
export type Codex = { append_prompt: AppendPrompt, sandbox?: SandboxMode | null, oss?: boolean | null, model?: string | null, model_reasoning_effort?: ReasoningEffort | null, model_reasoning_summary?: ReasoningSummary | null, model_reasoning_summary_format?: ReasoningSummaryFormat | null, base_command_override?: string | null, additional_params?: Array<string> | null, };
export type SandboxMode = "auto" | "read-only" | "workspace-write" | "danger-full-access";
@@ -168,6 +168,8 @@ export type ReasoningEffort = "low" | "medium" | "high";
export type ReasoningSummary = "auto" | "concise" | "detailed" | "none";
export type ReasoningSummaryFormat = "none" | "experimental";
export type Cursor = { append_prompt: AppendPrompt, force?: boolean | null, model?: string | null, base_command_override?: string | null, additional_params?: Array<string> | null, };
export type Opencode = { append_prompt: AppendPrompt, model?: string | null, agent?: string | null, base_command_override?: string | null, additional_params?: Array<string> | null, };