Skip to content

Commit 634f1ef

Browse files
authored
Update to claude-agent-sdk 0.1.65 (#202)
1 parent 86d333b commit 634f1ef

4 files changed

Lines changed: 80 additions & 87 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## 0.12.3
44

5+
- Update to @anthropic-ai/claude-agent-sdk@v0.1.65
6+
- Update to @agentclientprotocol/sdk@0.9.0
57
- Allow agent to write plans and todos to its config directory
68
- Fix experimental resume ids
79

package-lock.json

Lines changed: 71 additions & 79 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,16 +51,16 @@
5151
"author": "Zed Industries",
5252
"license": "Apache-2.0",
5353
"dependencies": {
54-
"@agentclientprotocol/sdk": "0.8.0",
55-
"@anthropic-ai/claude-agent-sdk": "0.1.61",
54+
"@agentclientprotocol/sdk": "0.9.0",
55+
"@anthropic-ai/claude-agent-sdk": "0.1.65",
5656
"@modelcontextprotocol/sdk": "1.24.3",
5757
"diff": "8.0.2"
5858
},
5959
"devDependencies": {
6060
"@anthropic-ai/sdk": "0.71.2",
61-
"@types/node": "24.10.1",
62-
"@typescript-eslint/eslint-plugin": "8.48.1",
63-
"@typescript-eslint/parser": "8.48.1",
61+
"@types/node": "25.0.0",
62+
"@typescript-eslint/eslint-plugin": "8.49.0",
63+
"@typescript-eslint/parser": "8.49.0",
6464
"eslint": "9.39.1",
6565
"eslint-config-prettier": "10.1.8",
6666
"globals": "16.5.0",

src/mcp-server.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
22
import {
33
BashInput,
4-
BashOutputInput,
54
FileEditInput,
65
FileReadInput,
76
FileWriteInput,
@@ -533,14 +532,14 @@ Output: Create directory 'foo'`),
533532
- Returns stdout and stderr output along with shell status
534533
- Use this tool when you need to monitor or check the output of a long-running shell
535534
536-
In sessions with ${toolNames.bashOutput} always use it instead of BashOutput.`,
535+
In sessions with ${toolNames.bashOutput} always use it for output from Bash commands instead of TaskOutput.`,
537536
inputSchema: {
538537
bash_id: z
539538
.string()
540539
.describe(`The id of the background bash command as returned by \`${toolNames.bash}\``),
541540
},
542541
},
543-
async (input: BashOutputInput) => {
542+
async (input) => {
544543
const bgTerm = agent.backgroundTerminals[input.bash_id];
545544

546545
if (!bgTerm) {

0 commit comments

Comments
 (0)