Skip to content

Commit 595f79f

Browse files
committed
fix(acp): Correct protocol version
1 parent 129a49e commit 595f79f

3 files changed

Lines changed: 5 additions & 347 deletions

File tree

.claude/skills/pty-tui-testing/SKILL.md

Lines changed: 0 additions & 345 deletions
This file was deleted.

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,9 @@ CHANGELOG.ignore.md
9393
.worktree/
9494
.worktrees/
9595
/codex-rs/tui/target/
96-
/nori-cli
9796
/target
9897

98+
# Local code/doc references for ACP work
99+
/agent-client-protocol
100+
/zed
101+

codex-rs/acp/src/agent.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ impl AgentProcess {
138138
debug!("Initializing ACP agent");
139139

140140
let request = InitializeRequest {
141-
protocol_version: agent_client_protocol::V0, // Gemini uses protocol version 0
141+
protocol_version: agent_client_protocol::V1,
142142
client_capabilities: serde_json::from_value(client_capabilities.clone())
143143
.context("Invalid client capabilities")?,
144144
client_info: None,

0 commit comments

Comments
 (0)