Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.org
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ Thanks to [[https://github.com/lobehub/lobe-icons][Lobe Icons]] for the lovely i

*** Claude Agent SDK

For Anthropic's [[https://platform.claude.com/docs/en/agent-sdk/overview][Claude Agent SDK]] (formerly known as the Claude Code SDK), follow [[https://github.com/zed-industries/claude-agent-acp][Zed's claude-agent-acp instructions]], typically something like:
For Anthropic's [[https://platform.claude.com/docs/en/agent-sdk/overview][Claude Agent SDK]] (formerly known as the Claude Code SDK), follow [[https://github.com/agentclientprotocol/claude-agent-acp][claude-agent-acp instructions]], typically something like:

#+begin_src bash
npm install -g @zed-industries/claude-agent-acp
npm install -g @agentclientprotocol/claude-agent-acp
#+end_src

*Note:* The =-g= flag is required to install the binary globally so it's available in your PATH. After installation, verify it's available by running =which claude-agent-acp= in your terminal.
Expand Down Expand Up @@ -166,7 +166,7 @@ You can install via:
:ensure-system-package
;; Add agent installation configs here
((claude . "brew install claude-code")
(claude-agent-acp . "npm install -g @zed-industries/claude-agent-acp")))
(claude-agent-acp . "npm install -g @agentclientprotocol/claude-agent-acp")))
#+end_src

This will automatically install the required dependencies ([[https://melpa.org/#/acp][acp.el]] and [[https://melpa.org/#/shell-maker][shell-maker]]).
Expand Down
2 changes: 1 addition & 1 deletion agent-shell-anthropic.el
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ Returns an agent configuration alist using `agent-shell-make-agent-config'."
(funcall agent-shell-anthropic-default-model-id)
agent-shell-anthropic-default-model-id))
:default-session-mode-id (lambda () agent-shell-anthropic-default-session-mode-id)
:install-instructions "See https://github.com/zed-industries/claude-agent-acp for installation."))
:install-instructions "See https://github.com/agentclientprotocol/claude-agent-acp for installation."))

(defun agent-shell-anthropic-start-claude-code ()
"Start an interactive Claude Agent shell."
Expand Down