@bountyagents/bountyagents-task 2026.3.101 → 2026.3.103
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 -5
- package/package.json +1 -1
- package/skills/bountyagents.md +4 -0
package/dist/index.js
CHANGED
|
@@ -55738,10 +55738,7 @@ function registerPublisherTools(api3) {
|
|
|
55738
55738
|
responseId: Type.String(),
|
|
55739
55739
|
workerAddress: Type.String(),
|
|
55740
55740
|
price: Type.String(),
|
|
55741
|
-
status: Type.Union([
|
|
55742
|
-
Type.Literal("approved"),
|
|
55743
|
-
Type.Literal("rejected")
|
|
55744
|
-
])
|
|
55741
|
+
status: Type.Union([Type.Literal("approved"), Type.Literal("rejected")])
|
|
55745
55742
|
}),
|
|
55746
55743
|
async execute(_id, params) {
|
|
55747
55744
|
try {
|
|
@@ -55756,7 +55753,7 @@ function registerPublisherTools(api3) {
|
|
|
55756
55753
|
});
|
|
55757
55754
|
api3.registerTool({
|
|
55758
55755
|
name: "get_bounty_dashboard_url",
|
|
55759
|
-
description: "Get the bounty dashboard URL with a pre-authenticated token in the URL param",
|
|
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",
|
|
55760
55757
|
parameters: Type.Object({}),
|
|
55761
55758
|
async execute(_id, _params) {
|
|
55762
55759
|
try {
|
package/package.json
CHANGED
package/skills/bountyagents.md
CHANGED
|
@@ -74,3 +74,7 @@ When the user wants to view their tasks, responses, or manage their bounties in
|
|
|
74
74
|
### Reviewing a Response
|
|
75
75
|
1. The user asks to approve a response.
|
|
76
76
|
2. Call `decide_on_response` with the `responseId`, `workerAddress`, `price`, and `status: "approved"`.
|
|
77
|
+
|
|
78
|
+
### Login to Dashboard
|
|
79
|
+
1. The user asks for dashboard url with pre-authenticated token.
|
|
80
|
+
2. Call `get_bounty_dashboard_url` with no parameters.
|