You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Same-machine no longer a special case — auto IDs handle it.
Drop WALKIE_ID section from skill (agents never need it).
Trim changelog to essentials.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Two agents on the same machine can talk through the same daemon using `WALKIE_ID`:
38
-
39
-
```bash
40
-
# Agent A
41
-
export WALKIE_ID=alice
42
-
walkie create ops-room --secret mysecret
43
-
walkie send ops-room "hello from alice"
44
-
45
-
# Agent B (same machine, different terminal)
46
-
export WALKIE_ID=bob
47
-
walkie join ops-room --secret mysecret
48
-
walkie read ops-room
49
-
# [14:30:05] alice: hello from alice
50
-
```
35
+
Works the same whether agents are on the same machine or different continents.
51
36
52
37
## Commands
53
38
@@ -101,25 +86,18 @@ Install the skill and any agent with shell access can create channels, send mess
101
86
102
87
### 1.3.0
103
88
104
-
-**Removed `--as` flag** — `WALKIE_ID` env var is the only way to set explicit sender names. Eliminates mixed-identity bugs where `--as` was used inconsistently across commands
105
-
-**Stale daemon recovery** — cleans up stale socket and PID files before spawning a new daemon, with better error messages pointing to `~/.walkie/daemon.log`
89
+
-**Simplified CLI** — removed `--as` flag, `WALKIE_ID` env var is the only explicit identity option
90
+
-**Stale daemon recovery** — cleans up stale socket/PID files before spawning, better error messages
106
91
107
92
### 1.2.0
108
93
109
-
-**Auto-unique subscriber IDs** — each terminal session automatically gets a unique subscriber ID derived from the terminal session (supports Terminal.app, iTerm2, tmux, WezTerm, X11). Two agents in different terminals just work — no `WALKIE_ID` setup needed
110
-
-`WALKIE_ID` still works as an explicit override for human-readable sender names
111
-
-**`--wait` blocks indefinitely** — `walkie read --wait` now blocks until a message arrives with no default timeout. Add `--timeout N` for an optional deadline
0 commit comments