agent-status-pi 0.1.29 → 0.1.30

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/index.js +1 -1
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -331,7 +331,7 @@ export default function agentStatusPiExtension(pi) {
331
331
  touch({ last_activity_at: nowUtc() });
332
332
  });
333
333
 
334
- pi.on("agent_end", async () => {
334
+ pi.on("agent_settled", async () => {
335
335
  if (!enabled) return;
336
336
  setCoreTask(undefined);
337
337
  current = updateRuntime(current);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agent-status-pi",
3
- "version": "0.1.29",
3
+ "version": "0.1.30",
4
4
  "description": "Pi extension for local agent status snapshots",
5
5
  "type": "module",
6
6
  "main": "index.js",