升级Codex CLI、Gemini CLI、OpenCode的SDK到最新版本
This commit is contained in:
@@ -223,34 +223,34 @@ pub fn get_agent_meta(agent_type: AgentType) -> AcpAgentMeta {
|
|||||||
name: "Codex CLI",
|
name: "Codex CLI",
|
||||||
description: "ACP adapter for OpenAI's coding assistant",
|
description: "ACP adapter for OpenAI's coding assistant",
|
||||||
distribution: AgentDistribution::Binary {
|
distribution: AgentDistribution::Binary {
|
||||||
version: "0.9.5",
|
version: "0.10.0",
|
||||||
cmd: "codex-acp",
|
cmd: "codex-acp",
|
||||||
args: &[],
|
args: &[],
|
||||||
env: &[],
|
env: &[],
|
||||||
platforms: &[
|
platforms: &[
|
||||||
PlatformBinary {
|
PlatformBinary {
|
||||||
platform: "darwin-aarch64",
|
platform: "darwin-aarch64",
|
||||||
url: "https://github.com/zed-industries/codex-acp/releases/download/v0.9.5/codex-acp-0.9.5-aarch64-apple-darwin.tar.gz",
|
url: "https://github.com/zed-industries/codex-acp/releases/download/v0.10.0/codex-acp-0.10.0-aarch64-apple-darwin.tar.gz",
|
||||||
},
|
},
|
||||||
PlatformBinary {
|
PlatformBinary {
|
||||||
platform: "darwin-x86_64",
|
platform: "darwin-x86_64",
|
||||||
url: "https://github.com/zed-industries/codex-acp/releases/download/v0.9.5/codex-acp-0.9.5-x86_64-apple-darwin.tar.gz",
|
url: "https://github.com/zed-industries/codex-acp/releases/download/v0.10.0/codex-acp-0.10.0-x86_64-apple-darwin.tar.gz",
|
||||||
},
|
},
|
||||||
PlatformBinary {
|
PlatformBinary {
|
||||||
platform: "linux-aarch64",
|
platform: "linux-aarch64",
|
||||||
url: "https://github.com/zed-industries/codex-acp/releases/download/v0.9.5/codex-acp-0.9.5-aarch64-unknown-linux-gnu.tar.gz",
|
url: "https://github.com/zed-industries/codex-acp/releases/download/v0.10.0/codex-acp-0.10.0-aarch64-unknown-linux-gnu.tar.gz",
|
||||||
},
|
},
|
||||||
PlatformBinary {
|
PlatformBinary {
|
||||||
platform: "linux-x86_64",
|
platform: "linux-x86_64",
|
||||||
url: "https://github.com/zed-industries/codex-acp/releases/download/v0.9.5/codex-acp-0.9.5-x86_64-unknown-linux-gnu.tar.gz",
|
url: "https://github.com/zed-industries/codex-acp/releases/download/v0.10.0/codex-acp-0.10.0-x86_64-unknown-linux-gnu.tar.gz",
|
||||||
},
|
},
|
||||||
PlatformBinary {
|
PlatformBinary {
|
||||||
platform: "windows-aarch64",
|
platform: "windows-aarch64",
|
||||||
url: "https://github.com/zed-industries/codex-acp/releases/download/v0.9.5/codex-acp-0.9.5-aarch64-pc-windows-msvc.zip",
|
url: "https://github.com/zed-industries/codex-acp/releases/download/v0.10.0/codex-acp-0.10.0-aarch64-pc-windows-msvc.zip",
|
||||||
},
|
},
|
||||||
PlatformBinary {
|
PlatformBinary {
|
||||||
platform: "windows-x86_64",
|
platform: "windows-x86_64",
|
||||||
url: "https://github.com/zed-industries/codex-acp/releases/download/v0.9.5/codex-acp-0.9.5-x86_64-pc-windows-msvc.zip",
|
url: "https://github.com/zed-industries/codex-acp/releases/download/v0.10.0/codex-acp-0.10.0-x86_64-pc-windows-msvc.zip",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@@ -297,8 +297,8 @@ pub fn get_agent_meta(agent_type: AgentType) -> AcpAgentMeta {
|
|||||||
name: "Gemini CLI",
|
name: "Gemini CLI",
|
||||||
description: "Google's official CLI for Gemini",
|
description: "Google's official CLI for Gemini",
|
||||||
distribution: AgentDistribution::Npx {
|
distribution: AgentDistribution::Npx {
|
||||||
version: "0.33.0",
|
version: "0.33.1",
|
||||||
package: "@google/gemini-cli@0.33.0",
|
package: "@google/gemini-cli@0.33.1",
|
||||||
args: &["--experimental-acp"],
|
args: &["--experimental-acp"],
|
||||||
env: &[],
|
env: &[],
|
||||||
node_required: None,
|
node_required: None,
|
||||||
@@ -455,30 +455,30 @@ pub fn get_agent_meta(agent_type: AgentType) -> AcpAgentMeta {
|
|||||||
name: "OpenCode",
|
name: "OpenCode",
|
||||||
description: "The open source coding agent",
|
description: "The open source coding agent",
|
||||||
distribution: AgentDistribution::Binary {
|
distribution: AgentDistribution::Binary {
|
||||||
version: "1.2.24",
|
version: "1.2.26",
|
||||||
cmd: "opencode",
|
cmd: "opencode",
|
||||||
args: &["acp"],
|
args: &["acp"],
|
||||||
env: &[],
|
env: &[],
|
||||||
platforms: &[
|
platforms: &[
|
||||||
PlatformBinary {
|
PlatformBinary {
|
||||||
platform: "darwin-aarch64",
|
platform: "darwin-aarch64",
|
||||||
url: "https://github.com/anomalyco/opencode/releases/download/v1.2.24/opencode-darwin-arm64.zip",
|
url: "https://github.com/anomalyco/opencode/releases/download/v1.2.26/opencode-darwin-arm64.zip",
|
||||||
},
|
},
|
||||||
PlatformBinary {
|
PlatformBinary {
|
||||||
platform: "darwin-x86_64",
|
platform: "darwin-x86_64",
|
||||||
url: "https://github.com/anomalyco/opencode/releases/download/v1.2.24/opencode-darwin-x64.zip",
|
url: "https://github.com/anomalyco/opencode/releases/download/v1.2.26/opencode-darwin-x64.zip",
|
||||||
},
|
},
|
||||||
PlatformBinary {
|
PlatformBinary {
|
||||||
platform: "linux-aarch64",
|
platform: "linux-aarch64",
|
||||||
url: "https://github.com/anomalyco/opencode/releases/download/v1.2.24/opencode-linux-arm64.tar.gz",
|
url: "https://github.com/anomalyco/opencode/releases/download/v1.2.26/opencode-linux-arm64.tar.gz",
|
||||||
},
|
},
|
||||||
PlatformBinary {
|
PlatformBinary {
|
||||||
platform: "linux-x86_64",
|
platform: "linux-x86_64",
|
||||||
url: "https://github.com/anomalyco/opencode/releases/download/v1.2.24/opencode-linux-x64.tar.gz",
|
url: "https://github.com/anomalyco/opencode/releases/download/v1.2.26/opencode-linux-x64.tar.gz",
|
||||||
},
|
},
|
||||||
PlatformBinary {
|
PlatformBinary {
|
||||||
platform: "windows-x86_64",
|
platform: "windows-x86_64",
|
||||||
url: "https://github.com/anomalyco/opencode/releases/download/v1.2.24/opencode-windows-x64.zip",
|
url: "https://github.com/anomalyco/opencode/releases/download/v1.2.26/opencode-windows-x64.zip",
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user