agentlife 2.6.1 → 2.6.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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -8538,6 +8538,7 @@ function register(api) {
8538
8538
  }
8539
8539
  loadRegistryFromDisk(state2).catch((e) => console.warn("[agentlife] eager registry load failed:", e?.message));
8540
8540
  }
8541
+ registerBootstrapHook(api, state2);
8541
8542
  registerSurfacesService(api, state2);
8542
8543
  api.registerService({
8543
8544
  id: "agentlife-provisioning",
@@ -8580,7 +8581,6 @@ function register(api) {
8580
8581
  }
8581
8582
  });
8582
8583
  initFollowupSystem(api, state2);
8583
- registerBootstrapHook(api, state2);
8584
8584
  registerPromptStateHook(api, state2);
8585
8585
  registerWidgetPushTool(api, state2);
8586
8586
  registerActivityHooks(api, state2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentlife",
3
- "version": "2.6.1",
3
+ "version": "2.6.2",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "bun build index.ts --outfile dist/index.js --target node --external openclaw/plugin-sdk",