@lucascouts/claude-agent-tui 0.2.0 → 0.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -6,6 +6,16 @@ An [ACP](https://agentclientprotocol.com)-compatible agent that drives the **Cla
6
6
 
7
7
  > **Fork** of [`@agentclientprotocol/claude-agent-acp`](https://github.com/agentclientprotocol/claude-agent-acp) v0.39.0. Where the upstream adapter calls the Claude Agent **SDK**, this fork spawns the `claude` **subscription CLI** in a pseudo-terminal and translates its JSONL transcript into ACP `session/update` notifications. See [`.fork-provenance.json`](.fork-provenance.json) for the exact fork point.
8
8
 
9
+ ## Why this exists
10
+
11
+ On **June 15, 2026**, [Anthropic split Claude subscription billing](https://zed.dev/blog/anthropic-subscription-changes) into two pools: Anthropic's **first-party tools** (chat and the official **Claude Code CLI**) keep using your **Pro/Max subscription**, while **third-party agents and SDK usage** are billed separately at **API rates** — roughly **15–30× more expensive** (separate monthly credits: $20 Pro / $100 Max 5x / $200 Max 20x).
12
+
13
+ In practice, Zed's built-in Claude integration now draws from those expensive third-party credits instead of your subscription. The official `claude` CLI/TUI, however, **still runs on your subscription**.
14
+
15
+ This project bridges the two: it drives the **official Claude Code TUI** over a PTY and exposes it through the **ACP** protocol, so Zed renders it as a native agent panel — giving you the full Claude Code experience inside Zed **on your existing subscription**, not API credits.
16
+
17
+ > Not affiliated with or endorsed by Anthropic or Zed Industries. Use of the `claude` CLI remains subject to Anthropic's terms.
18
+
9
19
  ## Requirements
10
20
 
11
21
  - The **`claude` CLI** (Claude Code subscription) available on your `PATH`.
package/package.json CHANGED
@@ -3,8 +3,8 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.2.0",
7
- "description": "ACP agent that drives the Claude Code subscription TUI over a PTY, rendering Claude Code threads in Zed and other ACP-compatible clients.",
6
+ "version": "0.2.2",
7
+ "description": "Run the official Claude Code TUI in Zed's agent panel on your Claude Pro/Max subscription an ACP-over-PTY bridge created for Anthropic's June 2026 billing split.",
8
8
  "main": "dist/lib.js",
9
9
  "types": "dist/lib.d.ts",
10
10
  "bin": {
@@ -67,7 +67,7 @@
67
67
  "devDependencies": {
68
68
  "@anthropic-ai/sdk": "0.101.0",
69
69
  "@eslint/js": "10.0.1",
70
- "@types/node": "25.9.1",
70
+ "@types/node": "25.9.2",
71
71
  "@typescript-eslint/eslint-plugin": "8.60.1",
72
72
  "@typescript-eslint/parser": "8.60.1",
73
73
  "eslint": "10.4.1",