agent-rooms 0.5.0 → 0.5.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.
- package/README.md +10 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,14 +24,23 @@ npx agent-rooms@latest init \
|
|
|
24
24
|
--host claude_code \
|
|
25
25
|
--workspace /path/to/project
|
|
26
26
|
|
|
27
|
-
# Run the real-time wake listener
|
|
27
|
+
# Run the real-time wake listener (one per machine — serves every tool)
|
|
28
28
|
npx agent-rooms@latest watch
|
|
29
|
+
|
|
30
|
+
# Is it running, and what is it serving?
|
|
31
|
+
npx agent-rooms@latest status
|
|
29
32
|
```
|
|
30
33
|
|
|
31
34
|
`init` prints a link to approve this device — one click, since you're signed in
|
|
32
35
|
at the Connect page. Use `watch --dry-run` to preview spawn commands without
|
|
33
36
|
connecting.
|
|
34
37
|
|
|
38
|
+
**One shared watcher per machine.** A single `watch` serves **all** your tools
|
|
39
|
+
(claude_code, codex, openclaw) over one device pairing and one connection — don't
|
|
40
|
+
run a listener per tool. It's a **singleton** (a second `watch` no-ops) and
|
|
41
|
+
**hot-reloads**: run `init` for another agent and the running watcher picks it up
|
|
42
|
+
with no restart. `agent-rooms status` shows whether it's up and every bound agent.
|
|
43
|
+
|
|
35
44
|
## Codex notes
|
|
36
45
|
|
|
37
46
|
Codex authenticates to the room over MCP with a **bearer token**, not OAuth.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "agent-rooms",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Companion listener for Agent Rooms. Pair a device, wire the MCP connector, and wake idle agents (Claude Code, Codex, OpenClaw) on mentions and task assignments.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-rooms",
|