bump coding agents (#1302)

This commit is contained in:
Gabriel Gordon-Hall
2025-11-17 18:03:23 +00:00
committed by GitHub
parent 6067dc693b
commit 8fcc6f31b1
7 changed files with 10 additions and 7 deletions

View File

@@ -41,17 +41,20 @@
"CODEX": {
"DEFAULT": {
"CODEX": {
"model": "gpt-5.1-codex",
"sandbox": "danger-full-access"
}
},
"HIGH": {
"CODEX": {
"model": "gpt-5.1-codex",
"sandbox": "danger-full-access",
"model_reasoning_effort": "high"
}
},
"APPROVALS": {
"CODEX": {
"model": "gpt-5.1-codex",
"sandbox": "workspace-write",
"ask_for_approval": "unless-trusted"
}

View File

@@ -39,9 +39,9 @@ use crate::{
fn base_command(claude_code_router: bool) -> &'static str {
if claude_code_router {
"npx -y @musistudio/claude-code-router@1.0.58 code"
"npx -y @musistudio/claude-code-router@1.0.66 code"
} else {
"npx -y @anthropic-ai/claude-code@2.0.31"
"npx -y @anthropic-ai/claude-code@2.0.42"
}
}

View File

@@ -168,7 +168,7 @@ impl StandardCodingAgentExecutor for Codex {
impl Codex {
fn build_command_builder(&self) -> CommandBuilder {
let mut builder = CommandBuilder::new("npx -y @openai/codex@0.55.0 app-server");
let mut builder = CommandBuilder::new("npx -y @openai/codex@0.58.0 app-server");
if self.oss.unwrap_or(false) {
builder = builder.extend_params(["--oss"]);

View File

@@ -52,7 +52,7 @@ pub struct Copilot {
impl Copilot {
fn build_command_builder(&self, log_dir: &str) -> CommandBuilder {
let mut builder = CommandBuilder::new("npx -y @github/copilot@0.0.337").params([
let mut builder = CommandBuilder::new("npx -y @github/copilot@0.0.358").params([
"--no-color",
"--log-level",
"debug",

View File

@@ -21,7 +21,7 @@ pub enum GeminiModel {
impl GeminiModel {
fn base_command(&self) -> &'static str {
"npx -y @google/gemini-cli@0.8.1"
"npx -y @google/gemini-cli@0.15.3"
}
fn build_command_builder(&self) -> CommandBuilder {

View File

@@ -108,7 +108,7 @@ pub struct Opencode {
impl Opencode {
fn build_command_builder(&self) -> CommandBuilder {
let mut builder = CommandBuilder::new("npx -y opencode-ai@0.15.8 run").params([
let mut builder = CommandBuilder::new("npx -y opencode-ai@1.0.68 run").params([
"--print-logs",
"--log-level",
"ERROR",

View File

@@ -26,7 +26,7 @@ pub struct QwenCode {
impl QwenCode {
fn build_command_builder(&self) -> CommandBuilder {
let mut builder = CommandBuilder::new("npx -y @qwen-code/qwen-code@0.0.14");
let mut builder = CommandBuilder::new("npx -y @qwen-code/qwen-code@0.2.1");
if self.yolo.unwrap_or(false) {
builder = builder.extend_params(["--yolo"]);