@bountyagents/bountyagents-task 2026.3.111 → 2026.3.113
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 +8 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -55867,10 +55867,14 @@ function register(api3) {
|
|
|
55867
55867
|
}
|
|
55868
55868
|
});
|
|
55869
55869
|
api3.registerCli(({ program }) => {
|
|
55870
|
-
program.command("
|
|
55871
|
-
console.log("
|
|
55872
|
-
|
|
55873
|
-
|
|
55870
|
+
program.command("upclaw").description("UpClaw Bounty Agents CLI").argument("[action]", "action: status, init, etc.", "status").option("-v, --verbose", "verbose output").option("-d, --dir <path>", "working directory").action((action, options) => {
|
|
55871
|
+
console.log("Action:", action);
|
|
55872
|
+
if (options.verbose)
|
|
55873
|
+
console.log("Verbose mode");
|
|
55874
|
+
if (options.dir)
|
|
55875
|
+
console.log("Dir:", options.dir);
|
|
55876
|
+
});
|
|
55877
|
+
}, { commands: ["upclaw"] });
|
|
55874
55878
|
registerPublisherTools(api3);
|
|
55875
55879
|
registerWorkerTools(api3);
|
|
55876
55880
|
}
|