You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
docs: Update links, clarify requirements, and fix formatting
- Update ACP protocol repository link to official organization
- Correct Cursor website URL
- Clarify Node.js version requirement (25.6.1+)
- Update authentication requirement to reflect Cursor subscription
- Add context about session history feature being WIP on Zed's side
- Fix inconsistent whitespace and trailing blank lines
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
3
3
Disclaimer: I am not affiliated with Cursor or Zed. This project is a personal experiment and should not be considered an official product of either company. I am a big fan of both products and wanted to combine what I like with both of them: An amazing editor and a great AI coding agent (and composer-1, holy this model flies xD).
4
4
5
-
An [Agent Client Protocol (ACP)](https://github.com/AnyContext/agent-client-protocol) adapter for [Cursor](https://cursor.sh) Agent CLI, enabling Cursor's powerful AI coding assistant to be used within the [Zed](https://zed.dev) editor.
5
+
An [Agent Client Protocol (ACP)](https://github.com/agentclientprotocol/agent-client-protocol) adapter for [Cursor](https://cursor.com) Agent CLI, enabling Cursor's powerful AI coding assistant to be used within the [Zed](https://zed.dev) editor.
6
6
7
7
## About
8
8
@@ -13,7 +13,7 @@ This is an `ai-assisted` personal project aimed at bringing a great AI coding ag
-**Session Persistence & History**: Conversation history is persisted to disk; when resuming a session, the full history is replayed so the client sees previous messages
16
+
-**Session Persistence & History**: Conversation history is persisted to disk; when resuming a session, the full history is replayed so the client sees previous messages (⚠️ This feature is WIP on Zed's side, so this can break at any time, I will try to keep it up to date)
17
17
-**Session Listing**: List past sessions (with optional cwd filter and pagination) for quick resume
18
18
-**Model & Mode Switching**: Dynamically change the underlying model and operation mode
19
19
-**Authentication**: Login/logout/status management via Cursor CLI
@@ -83,6 +83,7 @@ Verify the binary is accessible:
83
83
```bash
84
84
which cursor-acp
85
85
```
86
+
86
87
## Usage
87
88
88
89
### Run directly
@@ -175,7 +176,6 @@ You can also bind a keyboard shortcut to quickly open a new Cursor thread by add
175
176
176
177
If something isn't working, open Zed's Command Palette and run `dev: open acp logs` to inspect the ACP messages being sent between Zed and cursor-acp.
177
178
178
-
179
179
### Development
180
180
181
181
```bash
@@ -227,11 +227,11 @@ Sessions are persisted under `~/.cursor-acp/sessions/` (or `$CURSOR_ACP_CONFIG_D
227
227
228
228
## Requirements
229
229
230
-
-[Zed](https://zed.dev)
231
-
- Node.js 18+
230
+
-[Zed](https://zed.dev)
231
+
- Node.js 25.6.1+
232
232
-[Bun](https://bun.sh) (for package management and scripts)
0 commit comments