Skip to content

Commit 3beddee

Browse files
authored
Update to claude-agent-sdk 0.2.68 (agentclientprotocol#379)
1 parent 52d5b74 commit 3beddee

4 files changed

Lines changed: 12 additions & 15 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.20.2
4+
5+
- Update to @anthropic-ai/claude-agent-sdk@0.2.68
6+
37
## 0.20.1
48

59
- fix: inherit process.env when spawning agent subprocess

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"publishConfig": {
44
"access": "public"
55
},
6-
"version": "0.20.1",
6+
"version": "0.20.2",
77
"description": "An ACP-compatible coding agent powered by the Claude Agent SDK (TypeScript)",
88
"main": "dist/lib.js",
99
"types": "dist/lib.d.ts",
@@ -61,7 +61,7 @@
6161
"license": "Apache-2.0",
6262
"dependencies": {
6363
"@agentclientprotocol/sdk": "0.14.1",
64-
"@anthropic-ai/claude-agent-sdk": "0.2.63",
64+
"@anthropic-ai/claude-agent-sdk": "0.2.68",
6565
"zod": "^3.25.0 || ^4.0.0"
6666
},
6767
"devDependencies": {

src/acp-agent.ts

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1327,13 +1327,6 @@ export class ClaudeAcpAgent implements Agent {
13271327
throw error;
13281328
}
13291329

1330-
if (shouldHideClaudeAuth() && initializationResult.account.subscriptionType) {
1331-
throw RequestError.authRequired(
1332-
undefined,
1333-
"This integration does not support using claude.ai subscriptions.",
1334-
);
1335-
}
1336-
13371330
const models = await getAvailableModels(q, initializationResult.models, settingsManager);
13381331

13391332
const availableModes = [

0 commit comments

Comments
 (0)