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 +1 -1
- package/codex/plugin/.codex-plugin/plugin.json +1 -1
- package/package.json +1 -1
- package/src/index.ts +2 -2
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.
|
|
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:
|
package/package.json
CHANGED
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
|
|
86
|
+
console.log(`agent-relay ${VERSION} running on http://${HOST}:${PORT}`);
|