bump coding agents (#1302)
This commit is contained in:
committed by
GitHub
parent
6067dc693b
commit
8fcc6f31b1
@@ -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"
|
||||
}
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -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"]);
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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"]);
|
||||
|
||||
Reference in New Issue
Block a user