claude-code-controller 0.1.0 → 0.1.1

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 +1 -17
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,21 +6,7 @@
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
7
7
  [![Node >= 18](https://img.shields.io/badge/node-%3E%3D18-brightgreen)](https://nodejs.org)
8
8
 
9
- ```
10
- Your Code
11
-
12
-
13
- ┌─────────────────────┐
14
- │ ClaudeCodeController│
15
- │ ┌───────────────┐ │
16
- │ │ TeamManager │ │ ┌─────────┐
17
- │ │ TaskManager │──┼────▶│ Agent 1 │ claude CLI (PTY)
18
- │ │ ProcessMgr │ │ └─────────┘
19
- │ │ InboxPoller │──┼────▶│ Agent 2 │ claude CLI (PTY)
20
- │ └───────────────┘ │ └─────────┘
21
- └─────────────────────┘ │ Agent N │ claude CLI (PTY)
22
- └─────────┘
23
- ```
9
+ ![Claude Code Controller UI](screenshot.png)
24
10
 
25
11
  No Agent SDK. No `-p` mode. Full programmatic control over real Claude Code instances through the internal filesystem-based teams protocol.
26
12
 
@@ -314,8 +300,6 @@ ClaudeCodeController
314
300
 
315
301
  A built-in web dashboard lets you spawn agents, see their messages in real-time, and handle plan/permission approvals — all from your browser.
316
302
 
317
- ![Claude Code Controller UI](screenshot.png)
318
-
319
303
  ```bash
320
304
  cd web
321
305
  bun install
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-controller",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Programmatic API to pilot Claude Code agents via the internal teams/inbox/tasks filesystem protocol",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",