agentlife 2.6.4 → 2.6.5

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 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -6034,12 +6034,7 @@ Setup code: ${setupCode}
6034
6034
  var SKIP_GUIDANCE_AGENTS = new Set(["agentlife"]);
6035
6035
  var SKIP_AGENTS_MD_INJECTION = new Set(["agentlife", "agentlife-builder", "quick", "supervisor"]);
6036
6036
  function registerBootstrapHook(api, state2) {
6037
- api.registerService({
6038
- id: "agentlife-bootstrap-hook",
6039
- start: () => {
6040
- registerBootstrapHookImpl(api, state2);
6041
- }
6042
- });
6037
+ registerBootstrapHookImpl(api, state2);
6043
6038
  }
6044
6039
  function registerBootstrapHookImpl(api, state2) {
6045
6040
  api.registerHook("agent:bootstrap", (event) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agentlife",
3
- "version": "2.6.4",
3
+ "version": "2.6.5",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "build": "bun build index.ts --outfile dist/index.js --target node --external openclaw/plugin-sdk",