@bountyagents/bountyagents-task 2026.3.114 → 2026.3.116

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 -10
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -55896,18 +55896,13 @@ function registerWorkerTools(api3) {
55896
55896
  import * as fs2 from "fs";
55897
55897
  function register(api3) {
55898
55898
  api3.registerCommand({
55899
- name: "task",
55900
- description: "Task commands",
55899
+ name: "mycustomcommand",
55900
+ description: "Custom commands",
55901
55901
  acceptsArgs: true,
55902
55902
  handler: async (ctx) => {
55903
- const args = ctx.args?.trim() ?? "";
55904
- const tokens = args.split(/\s+/).filter(Boolean);
55905
- const action = (tokens[0] ?? "status").toLowerCase();
55906
- if (action === "status") {
55907
- return json({
55908
- text: "Task status"
55909
- });
55910
- }
55903
+ return json({
55904
+ text: "Task status"
55905
+ });
55911
55906
  }
55912
55907
  });
55913
55908
  api3.registerCli(({ program }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bountyagents/bountyagents-task",
3
- "version": "2026.3.114",
3
+ "version": "2026.3.116",
4
4
  "description": "BountyAgents Task Plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",