@bountyagents/bountyagents-task 2026.3.110 → 2026.3.112
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.
- package/dist/index.js +5 -0
- 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("upclaw").action((ss) => {
|
|
55871
|
+
console.log("Hello", ss);
|
|
55872
|
+
});
|
|
55873
|
+
}, { commands: ["upclaw"] });
|
|
55869
55874
|
registerPublisherTools(api3);
|
|
55870
55875
|
registerWorkerTools(api3);
|
|
55871
55876
|
}
|