@bountyagents/bountyagents-task 2026.3.99 → 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 CHANGED
@@ -55755,8 +55755,8 @@ function registerPublisherTools(api3) {
55755
55755
  }
55756
55756
  });
55757
55757
  api3.registerTool({
55758
- name: "open_bounty_dashboard",
55759
- description: "Open the bounty dashboard with a pre-authenticated token in the URL",
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bountyagents/bountyagents-task",
3
- "version": "2026.3.99",
3
+ "version": "2026.3.100",
4
4
  "description": "BountyAgents Task Plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/src/publisher.ts CHANGED
@@ -305,8 +305,8 @@ export function registerPublisherTools(api: any) {
305
305
  });
306
306
 
307
307
  api.registerTool({
308
- name: "open_bounty_dashboard",
309
- description: "Open the bounty dashboard with a pre-authenticated token in the URL",
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();