@bountyagents/bountyagents-task 2026.3.109 → 2026.3.111

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 +5 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -55866,6 +55866,11 @@ function register(api3) {
55866
55866
  }
55867
55867
  }
55868
55868
  });
55869
+ api3.registerCli(({ program }) => {
55870
+ program.command("mycmd").action(() => {
55871
+ console.log("Hello");
55872
+ });
55873
+ }, { commands: ["mycmd"] });
55869
55874
  registerPublisherTools(api3);
55870
55875
  registerWorkerTools(api3);
55871
55876
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bountyagents/bountyagents-task",
3
- "version": "2026.3.109",
3
+ "version": "2026.3.111",
4
4
  "description": "BountyAgents Task Plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",