@bountyagents/bountyagents-task 2026.3.112 → 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 +6 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -55867,8 +55867,12 @@ function register(api3) {
|
|
|
55867
55867
|
}
|
|
55868
55868
|
});
|
|
55869
55869
|
api3.registerCli(({ program }) => {
|
|
55870
|
-
program.command("upclaw").action((
|
|
55871
|
-
console.log("
|
|
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);
|
|
55872
55876
|
});
|
|
55873
55877
|
}, { commands: ["upclaw"] });
|
|
55874
55878
|
registerPublisherTools(api3);
|