agent-relay-server 0.3.1 → 0.3.2

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
@@ -115,7 +115,7 @@ When a session starts, the plugin's background monitor registers the agent and o
115
115
 
116
116
  ```
117
117
  Agent Relay active. Your agent ID: macmini2-cli-myproject-a1b2c3
118
- Relay URL: http://localhost:4850 | Server: 0.3.1 | Plugin: 0.3.1
118
+ Relay URL: http://localhost:4850 | Server: 0.3.2 | Plugin: 0.3.2
119
119
  ```
120
120
 
121
121
  Incoming messages arrive as monitor notifications. The agent sees them without being prompted:
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Agent Relay integration for Codex sessions",
5
5
  "author": {
6
6
  "name": "Edin Mujkanovic"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-relay-server",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "Lightweight HTTP message relay for inter-agent communication across machines",
5
5
  "module": "src/index.ts",
6
6
  "type": "module",
package/src/index.ts CHANGED
@@ -3,7 +3,7 @@ import { initDb, reapStaleAgents, pruneOldMessages } from "./db";
3
3
  import { matchRoute } from "./routes";
4
4
  import { emitAgentStatus } from "./sse";
5
5
  import { resolve, sep } from "path";
6
- import { REAP_INTERVAL_MS, STALE_TTL_MS, MAX_BODY_BYTES, DAY_MS } from "./config";
6
+ import { REAP_INTERVAL_MS, STALE_TTL_MS, MAX_BODY_BYTES, DAY_MS, VERSION } from "./config";
7
7
 
8
8
  const PORT = Number(process.env.PORT) || 4850;
9
9
  const HOST = process.env.HOST || "127.0.0.1";
@@ -83,4 +83,4 @@ Bun.serve({
83
83
  },
84
84
  });
85
85
 
86
- console.log(`agent-relay running on http://localhost:${PORT}`);
86
+ console.log(`agent-relay ${VERSION} running on http://${HOST}:${PORT}`);