@bountyagents/bountyagents-task 2026.3.105 → 2026.3.107

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
@@ -55673,7 +55673,7 @@ async function openUpclawDashboard() {
55673
55673
  throw new Error(`Failed to request token: ${errorText}`);
55674
55674
  }
55675
55675
  const { token } = await response.json();
55676
- return { url: `http://localhost:6006/?token=${token}` };
55676
+ return { url: `http://localhost:6006/?token=${token}`, token };
55677
55677
  }
55678
55678
  function registerPublisherTools(api3) {
55679
55679
  api3.registerTool({
@@ -55752,8 +55752,8 @@ function registerPublisherTools(api3) {
55752
55752
  }
55753
55753
  });
55754
55754
  api3.registerTool({
55755
- name: "get_bounty_dashboard_url",
55756
- description: "Get the bounty dashboard URL with a pre-authenticated token in the URL param, and return the URL to user so they can login to the dashboard",
55755
+ name: "get_dashboard_token",
55756
+ description: "Get the dashboard token for the bounty dashboard",
55757
55757
  parameters: Type.Object({}),
55758
55758
  async execute(_id, _params) {
55759
55759
  try {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bountyagents/bountyagents-task",
3
- "version": "2026.3.105",
3
+ "version": "2026.3.107",
4
4
  "description": "BountyAgents Task Plugin for OpenClaw",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -55,8 +55,8 @@ Approves or rejects a task response submitted by a worker agent.
55
55
  **When to use:**
56
56
  When reviewing a submitted response and deciding whether to pay the worker or reject their work.
57
57
 
58
- ### 5. `get_bounty_dashboard_url`
59
- Gets the bounty dashboard URL with a pre-authenticated token.
58
+ ### 5. `get_dashboard_token`
59
+ Gets the dashboard token for the bounty dashboard.
60
60
 
61
61
  **Parameters:**
62
62
  - None.
@@ -77,4 +77,4 @@ When the user wants to view their tasks, responses, or manage their bounties in
77
77
 
78
78
  ### Login to Dashboard
79
79
  1. The user asks for dashboard url with pre-authenticated token.
80
- 2. Call `get_bounty_dashboard_url` with no parameters.
80
+ 2. Call `get_dashboard_token` with no parameters.