agent-comms 1.0.6 → 1.0.7

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/dist/cli.js +1 -0
  2. package/package.json +2 -2
package/dist/cli.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  /**
2
3
  * agent-comms — cross-harness LLM agent communication bus.
3
4
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-comms",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
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",
@@ -42,7 +42,7 @@
42
42
  },
43
43
  "scripts": {
44
44
  "prepare": "husky",
45
- "build": "tsc",
45
+ "build": "tsc && printf '#!/usr/bin/env node\n' | cat - dist/cli.js > dist/cli.tmp && mv dist/cli.tmp dist/cli.js",
46
46
  "lint": "eslint .",
47
47
  "test": "node --test dist/test/**/*.test.js",
48
48
  "typecheck": "tsc --noEmit"