@bountyagents/bountyagents-task 2026.3.98 → 2026.3.100
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/package.json +1 -1
- package/src/publisher.ts +2 -2
- package/test-dashboard.ts +16 -0
package/dist/index.js
CHANGED
|
@@ -55755,8 +55755,8 @@ function registerPublisherTools(api3) {
|
|
|
55755
55755
|
}
|
|
55756
55756
|
});
|
|
55757
55757
|
api3.registerTool({
|
|
55758
|
-
name: "
|
|
55759
|
-
description: "
|
|
55758
|
+
name: "get_bounty_dashboard_url",
|
|
55759
|
+
description: "Get the bounty dashboard URL with a pre-authenticated token in the URL param",
|
|
55760
55760
|
parameters: Type.Object({}),
|
|
55761
55761
|
async execute(_id, _params) {
|
|
55762
55762
|
try {
|
package/package.json
CHANGED
package/src/publisher.ts
CHANGED
|
@@ -305,8 +305,8 @@ export function registerPublisherTools(api: any) {
|
|
|
305
305
|
});
|
|
306
306
|
|
|
307
307
|
api.registerTool({
|
|
308
|
-
name: "
|
|
309
|
-
description: "
|
|
308
|
+
name: "get_bounty_dashboard_url",
|
|
309
|
+
description: "Get the bounty dashboard URL with a pre-authenticated token in the URL param",
|
|
310
310
|
parameters: Type.Object({}),
|
|
311
311
|
async execute(_id: string, _params: any) {
|
|
312
312
|
try {
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { openUpclawDashboard } from "./src/publisher.js";
|
|
2
|
+
|
|
3
|
+
async function testOpenDashboard() {
|
|
4
|
+
console.log(`\n--- Testing openUpclawDashboard ---`);
|
|
5
|
+
|
|
6
|
+
try {
|
|
7
|
+
const result = await openUpclawDashboard();
|
|
8
|
+
console.log("Open dashboard successful!");
|
|
9
|
+
console.log(JSON.stringify(result, null, 2));
|
|
10
|
+
} catch (error) {
|
|
11
|
+
console.error("Test failed:");
|
|
12
|
+
console.error(error);
|
|
13
|
+
}
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
testOpenDashboard();
|