create-walle 0.9.1 → 0.9.3

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.
package/README.md CHANGED
@@ -1,12 +1,29 @@
1
1
  # create-walle
2
2
 
3
- Set up **CTM + Wall-E** in one command.
3
+ Set up **CTM + Wall-E** in one command — a browser-based Claude Code dashboard paired with a personal AI agent that builds a searchable second brain from your work life.
4
4
 
5
- **CTM** (Claude Task Manager) is a web-based dashboard for running and managing Claude Code sessions. It includes a terminal multiplexer, prompt editor, task queue, and code review panel — all in the browser.
5
+ ## What You Get
6
6
 
7
- **Wall-E** is your personal digital twin. An AI agent that learns from your Slack, email, and calendar to build a searchable second brain. It comes with bundled skills (morning briefing, weekly reflection, proactive alerts, and more) and a chat interface with tool-use.
7
+ ### CTM (Claude Task Manager)
8
8
 
9
- Together they run as a single server: CTM on the main port, Wall-E on port+1.
9
+ A web dashboard for running and managing Claude Code sessions, prompts, and workflows.
10
+
11
+ - **Terminal Multiplexer** — Run multiple Claude Code sessions side by side with live status, persistent scrollback, and AI-generated titles
12
+ - **Prompt Editor** — Save, version, and organize prompts with folders, tags, chains, templates, and AI search
13
+ - **Task Queue** — Queue prompts for sequential execution with auto-advance when Claude finishes, or step through manually
14
+ - **Approval Workflows** — Auto-approve tool-use requests based on learned rules; uncertain cases escalate to you
15
+ - **Code Review** — View git diffs from any project, staged or unstaged, with line-level detail
16
+ - **Session Insights** — Analyze patterns across sessions using Claude
17
+
18
+ ### Wall-E (Personal Digital Twin)
19
+
20
+ An always-on AI agent that learns from your Slack, email, calendar, and Claude Code sessions.
21
+
22
+ - **Second Brain** — Automatically ingests your digital life into a searchable memory store with full-text search, knowledge extraction, and pattern detection
23
+ - **Proactive Intelligence** — Surfaces time-sensitive items, suggests actions, and delivers morning briefings and weekly reflections without being asked
24
+ - **Chat with Tools** — Talk to Wall-E in the browser — it can search your memories, look up people, run skills, and call external tools via MCP (Slack, Glean, etc.)
25
+ - **12 Bundled Skills** — Morning briefing, weekly reflection, proactive alerts, Slack mentions, email sync, calendar integration, and more
26
+ - **Multi-Device** — Share your brain across machines via Dropbox or iCloud
10
27
 
11
28
  ## Install
12
29
 
@@ -34,54 +51,25 @@ npx create-walle -v # Show version
34
51
  On first launch, the browser setup page guides you through:
35
52
 
36
53
  1. **Owner name** — auto-detected from `git config`
37
- 2. **API key** — enter manually, or click "Auto-detect" to find it from:
38
- - Shell environment (`ANTHROPIC_API_KEY`)
39
- - Claude Code OAuth token (macOS Keychain)
40
- - Corporate devbox gateway (`~/.devbox/secrets/claude/auth_headers`)
54
+ 2. **API key** — enter manually, or click "Auto-detect" to find it from your shell environment, Claude Code OAuth, or corporate devbox
41
55
  3. **Integrations** — connect Slack (OAuth), email and calendar auto-detected on macOS
42
56
 
43
- ## API Authentication
44
-
45
- Wall-E supports three ways to connect to Claude:
46
-
47
- **Direct API key:**
48
- ```env
49
- ANTHROPIC_API_KEY=sk-ant-...
50
- ```
51
-
52
- **Portkey / API gateway:**
53
- ```env
54
- ANTHROPIC_BASE_URL=https://your-gateway.example.com/v1
55
- ANTHROPIC_AUTH_TOKEN=your-key
56
- ANTHROPIC_CUSTOM_HEADERS_B64=<base64-encoded headers>
57
- ```
58
-
59
- **Corporate devbox:** Auto-detected — no config needed if you use `devbox ai -c claude`.
60
-
61
57
  ## Custom Port
62
58
 
63
59
  ```bash
64
60
  CTM_PORT=5000 npx create-walle install ./my-agent
65
61
  ```
66
62
 
67
- Wall-E API runs on `CTM_PORT + 1` (e.g., 5001).
63
+ Wall-E runs on `CTM_PORT + 1` (e.g., 5001).
68
64
 
69
- ## What's Included
65
+ ## Architecture
70
66
 
71
- **CTM Dashboard:**
72
- - Terminal multiplexer — run multiple Claude Code sessions side by side
73
- - Prompt editor — save, organize, and queue prompts to Claude
74
- - Task queue — automated prompt execution with auto/manual modes
75
- - Code review panel — session insights and review workflows
76
- - Live session status — Running/Waiting/Idle indicators with scroll-up support during active output
67
+ Everything runs locally. CTM serves the dashboard, Wall-E runs as a background agent. Both use SQLite — no external databases, no cloud dependency beyond the Claude API.
77
68
 
78
- **Wall-E Agent:**
79
- - Ingest/think/reflect loops that continuously learn from your data
80
- - 12 bundled skills (morning briefing, weekly reflection, proactive alerts, slack mentions, email sync, and more)
81
- - Chat with tool-use search memories, run skills, call MCP servers
82
- - Brain DB — SQLite with full-text search across Slack, email, calendar
83
- - Intelligence engine — context-aware compaction, initiative scoring, proactive briefings
84
- - Multi-device — share data via Dropbox/iCloud, sessions tagged by hostname
69
+ | Component | Default Port | What it does |
70
+ |-----------|-------------|--------------|
71
+ | CTM | 3456 | Dashboard, terminal multiplexer, prompt editor, queue, code review |
72
+ | Wall-E | 3457 | AI agent, brain database, skills engine, chat API |
85
73
 
86
74
  ## Links
87
75
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-walle",
3
- "version": "0.9.1",
3
+ "version": "0.9.3",
4
4
  "description": "CTM + Wall-E — Claude Task Manager dashboard and your personal digital twin AI agent. Terminal multiplexer, prompt editor, task queue, and an agent that learns from Slack, email & calendar.",
5
5
  "bin": {
6
6
  "create-walle": "bin/create-walle.js"
@@ -23,3 +23,12 @@ When developing CTM or Wall-E code:
23
23
  3. Start a dev instance: `DEV_CTM_PORT=$port DEV_WALLE_PORT=$((port+1)) bash bin/dev.sh`
24
24
  4. Test ONLY against your dev port, never 3456
25
25
  5. Only restart primary when the user explicitly asks — and ask for confirmation first
26
+
27
+ ## Publishing to npm (create-walle)
28
+
29
+ When publishing with `/publish`:
30
+ 1. **Always review and update `create-walle/README.md`** before publishing — this is the npm doc page shown on https://www.npmjs.com/package/create-walle
31
+ 2. Check that feature descriptions, skill counts, and capabilities match the current codebase
32
+ 3. Bump version in both `create-walle/package.json` AND root `package.json`
33
+ 4. Run `bash build.sh` and verify file count
34
+ 5. Ask for confirmation before `npm publish`
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "walle",
3
- "version": "0.9.1",
3
+ "version": "0.9.3",
4
4
  "private": true,
5
5
  "description": "Wall-E — your personal digital twin",
6
6
  "scripts": {