agentlife 2.6.7 → 2.6.8
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/dist/index.js +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2314,22 +2314,22 @@ function captureBridge(context) {
|
|
|
2314
2314
|
function broadcastSurface(dsl) {
|
|
2315
2315
|
if (!broadcastRef)
|
|
2316
2316
|
return;
|
|
2317
|
-
broadcastRef("agentlife.surface.push", { dsl, timestamp: Date.now() });
|
|
2317
|
+
broadcastRef("plugin.agentlife.surface.push", { dsl, timestamp: Date.now() });
|
|
2318
2318
|
}
|
|
2319
2319
|
function broadcastDelete(surfaceId) {
|
|
2320
2320
|
if (!broadcastRef)
|
|
2321
2321
|
return;
|
|
2322
|
-
broadcastRef("agentlife.surface.delete", { surfaceId, timestamp: Date.now() });
|
|
2322
|
+
broadcastRef("plugin.agentlife.surface.delete", { surfaceId, timestamp: Date.now() });
|
|
2323
2323
|
}
|
|
2324
2324
|
function broadcastSnapshot(surfaces) {
|
|
2325
2325
|
if (!broadcastRef)
|
|
2326
2326
|
return;
|
|
2327
|
-
broadcastRef("agentlife.surface.snapshot", { surfaces, timestamp: Date.now() });
|
|
2327
|
+
broadcastRef("plugin.agentlife.surface.snapshot", { surfaces, timestamp: Date.now() });
|
|
2328
2328
|
}
|
|
2329
2329
|
function broadcastInput(message, sessionKey) {
|
|
2330
2330
|
if (!broadcastRef)
|
|
2331
2331
|
return;
|
|
2332
|
-
broadcastRef("agentlife.input", { message, sessionKey, timestamp: Date.now() });
|
|
2332
|
+
broadcastRef("plugin.agentlife.input", { message, sessionKey, timestamp: Date.now() });
|
|
2333
2333
|
}
|
|
2334
2334
|
|
|
2335
2335
|
// push.ts
|