agent-comms 1.0.4 → 1.0.5

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 +11 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -19,9 +19,16 @@ Every operation is a file read/write. A bridge translates file changes into its
19
19
  ## Install
20
20
 
21
21
  ```bash
22
- npx github:ExaDev/agent-comms # auto-detect harnesses and configure
23
- npx github:ExaDev/agent-comms status # check current configuration
24
- npx github:ExaDev/agent-comms remove # undo configuration
22
+ npx agent-comms # auto-detect harnesses and configure
23
+ npx agent-comms status # check current configuration
24
+ npx agent-comms remove # undo configuration
25
+ ```
26
+
27
+ Or install as a dependency:
28
+
29
+ ```bash
30
+ npm install agent-comms
31
+ pnpm add agent-comms
25
32
  ```
26
33
 
27
34
  Or clone and run manually:
@@ -43,7 +50,7 @@ A bridge is two things:
43
50
  Core provides shared helpers so each bridge only implements those two things:
44
51
 
45
52
  ```typescript
46
- import { BusStore, BusTool, buildAction, ensureRegistered, drainAndFormat } from "agent-comms/core";
53
+ import { BusStore, BusTool, buildAction, ensureRegistered, drainAndFormat } from "agent-comms";
47
54
 
48
55
  const store = new BusStore();
49
56
  const tool = new BusTool(store);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-comms",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "Cross-harness agent communication bus — filesystem-based rooms, DMs, and presence for LLM agents",
5
5
  "type": "module",
6
6
  "packageManager": "pnpm@10.33.0",