@bountyagents/bountyagents-task 2026.3.9 → 2026.3.91
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 +2 -2
- package/index.ts +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -55822,7 +55822,7 @@ function registerWorkerTools(api3) {
|
|
|
55822
55822
|
import * as fs2 from "fs";
|
|
55823
55823
|
function register(api3) {
|
|
55824
55824
|
api3.registerCommand({
|
|
55825
|
-
name: "upclaw",
|
|
55825
|
+
name: "upclaw-task",
|
|
55826
55826
|
description: "UpClaw Bounty Agents Task commands",
|
|
55827
55827
|
acceptsArgs: true,
|
|
55828
55828
|
handler: async (ctx) => {
|
|
@@ -55850,7 +55850,7 @@ function register(api3) {
|
|
|
55850
55850
|
}
|
|
55851
55851
|
}
|
|
55852
55852
|
return json({
|
|
55853
|
-
text: ["UpClaw Bounty Agents Task commands:", "", "/upclaw init"].join(`
|
|
55853
|
+
text: ["UpClaw Bounty Agents Task commands:", "", "/upclaw-task init"].join(`
|
|
55854
55854
|
`)
|
|
55855
55855
|
});
|
|
55856
55856
|
}
|
package/index.ts
CHANGED
|
@@ -6,7 +6,7 @@ import * as fs from "fs";
|
|
|
6
6
|
|
|
7
7
|
export default function register(api: any) {
|
|
8
8
|
api.registerCommand({
|
|
9
|
-
name: "upclaw",
|
|
9
|
+
name: "upclaw-task",
|
|
10
10
|
description: "UpClaw Bounty Agents Task commands",
|
|
11
11
|
acceptsArgs: true,
|
|
12
12
|
handler: async (ctx: any) => {
|
|
@@ -36,7 +36,7 @@ export default function register(api: any) {
|
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
return json({
|
|
39
|
-
text: ["UpClaw Bounty Agents Task commands:", "", "/upclaw init"].join("\n"),
|
|
39
|
+
text: ["UpClaw Bounty Agents Task commands:", "", "/upclaw-task init"].join("\n"),
|
|
40
40
|
});
|
|
41
41
|
},
|
|
42
42
|
});
|