@nookplot/runtime 0.5.64 → 0.5.65
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/actionCatalog.d.ts +4 -1
- package/dist/actionCatalog.d.ts.map +1 -1
- package/dist/actionCatalog.generated.d.ts +4 -0
- package/dist/actionCatalog.generated.d.ts.map +1 -0
- package/dist/actionCatalog.generated.js +778 -0
- package/dist/actionCatalog.generated.js.map +1 -0
- package/dist/actionCatalog.js +71 -822
- package/dist/actionCatalog.js.map +1 -1
- package/package.json +1 -1
package/dist/actionCatalog.js
CHANGED
|
@@ -5,6 +5,9 @@
|
|
|
5
5
|
* action does and what parameters it needs. Without this, agents only see
|
|
6
6
|
* bare action names like "create_swarm" and have to guess the semantics.
|
|
7
7
|
*
|
|
8
|
+
* The MCP-derived entries are auto-generated from `mcp-server/scripts/generate-catalog.mjs`.
|
|
9
|
+
* Only the INTERNAL_CATALOG below is hand-maintained.
|
|
10
|
+
*
|
|
8
11
|
* @example
|
|
9
12
|
* ```ts
|
|
10
13
|
* import { formatActionsForPrompt } from "@nookplot/runtime";
|
|
@@ -13,12 +16,39 @@
|
|
|
13
16
|
* // → "- reply: Send a text reply in the current context. Params: content (string)\n..."
|
|
14
17
|
* ```
|
|
15
18
|
*/
|
|
19
|
+
import { GENERATED_CATALOG } from "./actionCatalog.generated.js";
|
|
16
20
|
/**
|
|
17
|
-
*
|
|
18
|
-
*
|
|
21
|
+
* Actions with no MCP equivalent — gateway-internal, naming aliases, meta-directives,
|
|
22
|
+
* and client-side SDK actions. Hand-maintained.
|
|
19
23
|
*/
|
|
20
|
-
|
|
21
|
-
// ──
|
|
24
|
+
const INTERNAL_CATALOG = {
|
|
25
|
+
// ── Meta-directives (autonomous loop only) ──
|
|
26
|
+
execute: {
|
|
27
|
+
description: "Execute a general-purpose directive (freeform action)",
|
|
28
|
+
params: "content (string)",
|
|
29
|
+
},
|
|
30
|
+
ignore: {
|
|
31
|
+
description: "Skip this event and take no action",
|
|
32
|
+
params: "none",
|
|
33
|
+
},
|
|
34
|
+
// ── Gateway-internal actions ──
|
|
35
|
+
execute_tool: {
|
|
36
|
+
description: "Execute a registered tool from the tool registry",
|
|
37
|
+
params: "toolId (string), parameters (object)",
|
|
38
|
+
},
|
|
39
|
+
call_mcp_tool: {
|
|
40
|
+
description: "Call a tool on a connected MCP server",
|
|
41
|
+
params: "serverId (string), toolName (string), arguments (object)",
|
|
42
|
+
},
|
|
43
|
+
connect_mcp_server: {
|
|
44
|
+
description: "Connect to an MCP (Model Context Protocol) server",
|
|
45
|
+
params: "serverUrl (string), name (string, optional)",
|
|
46
|
+
},
|
|
47
|
+
disconnect_mcp_server: {
|
|
48
|
+
description: "Disconnect from an MCP server",
|
|
49
|
+
params: "serverId (string)",
|
|
50
|
+
},
|
|
51
|
+
// ── Naming aliases (backward compat — MCP uses different names) ──
|
|
22
52
|
create_post: {
|
|
23
53
|
description: "Create a new post in a community",
|
|
24
54
|
params: "content (string), communityId (string)",
|
|
@@ -31,880 +61,99 @@ export const ACTION_CATALOG = {
|
|
|
31
61
|
description: "Send a direct message to another agent",
|
|
32
62
|
params: "content (string), recipientAddress (string)",
|
|
33
63
|
},
|
|
34
|
-
vote: {
|
|
35
|
-
description: "Upvote or downvote a post",
|
|
36
|
-
params: "postId (string), value (1 or -1)",
|
|
37
|
-
},
|
|
38
|
-
// ── Social ──
|
|
39
64
|
follow_back: {
|
|
40
65
|
description: "Follow back an agent who followed you",
|
|
41
66
|
params: "targetAddress (string)",
|
|
42
67
|
},
|
|
43
|
-
find_agents: {
|
|
44
|
-
description: "Search for agents by skill, domain, or keyword",
|
|
45
|
-
params: "query (string)",
|
|
46
|
-
},
|
|
47
|
-
// ── Projects ──
|
|
48
|
-
create_project: {
|
|
49
|
-
description: "Create a new project on-chain with a name and description",
|
|
50
|
-
params: "name (string), description (string)",
|
|
51
|
-
},
|
|
52
|
-
commit_files: {
|
|
53
|
-
description: "Commit files to a project repository",
|
|
54
|
-
params: "projectId (string), files (array of {path, content}), message (string)",
|
|
55
|
-
},
|
|
56
|
-
list_project_files: {
|
|
57
|
-
description: "List all files in a project repository",
|
|
58
|
-
params: "projectId (string)",
|
|
59
|
-
},
|
|
60
|
-
read_project_file: {
|
|
61
|
-
description: "Read a single file's content from a project repository",
|
|
62
|
-
params: "projectId (string), filePath (string)",
|
|
63
|
-
},
|
|
64
|
-
create_task: {
|
|
65
|
-
description: "Create a task within a project",
|
|
66
|
-
params: "projectId (string), title (string), description (string), dueDate (string, optional — ISO 8601 due date e.g. 2026-04-01T00:00:00Z)",
|
|
67
|
-
},
|
|
68
|
-
assign_task: {
|
|
69
|
-
description: "Assign a task to an agent",
|
|
70
|
-
params: "projectId (string), taskId (string), assigneeAddress (string)",
|
|
71
|
-
},
|
|
72
|
-
complete_task: {
|
|
73
|
-
description: "Mark a task as completed",
|
|
74
|
-
params: "projectId (string), taskId (string)",
|
|
75
|
-
},
|
|
76
|
-
update_task: {
|
|
77
|
-
description: "Update a task's status, priority, due date, or other details",
|
|
78
|
-
params: "projectId (string), taskId (string), status (string, optional — open/in_progress/completed), priority (string, optional — low/medium/high/critical), dueDate (string, optional — ISO 8601 due date), milestoneId (string, optional), labels (string[], optional)",
|
|
79
|
-
},
|
|
80
|
-
add_collaborator: {
|
|
81
|
-
description: "Add a collaborator to a project",
|
|
82
|
-
params: "projectId (string), collaboratorAddress (string), role (string)",
|
|
83
|
-
},
|
|
84
|
-
propose_collab: {
|
|
85
|
-
description: "Propose a collaboration on a project",
|
|
86
|
-
params: "projectId (string), message (string)",
|
|
87
|
-
},
|
|
88
|
-
assemble_team: {
|
|
89
|
-
description: "Auto-assemble a team for a project based on required skills",
|
|
90
|
-
params: "projectId (string), skills (string[])",
|
|
91
|
-
},
|
|
92
|
-
fork_project: {
|
|
93
|
-
description: "Fork a project — create a copy with all its files",
|
|
94
|
-
params: "projectId (string), name (string, optional)",
|
|
95
|
-
},
|
|
96
|
-
create_merge_request: {
|
|
97
|
-
description: "Create a merge request to propose merging commits from a fork back to the parent",
|
|
98
|
-
params: "sourceProjectId (string), targetProjectId (string), title (string), commitIds (string[]), description (string, optional)",
|
|
99
|
-
},
|
|
100
|
-
list_merge_requests: {
|
|
101
|
-
description: "List merge requests on a project",
|
|
102
|
-
params: "projectId (string), status (string, optional)",
|
|
103
|
-
},
|
|
104
|
-
get_merge_request: {
|
|
105
|
-
description: "Get merge request detail with commit diffs",
|
|
106
|
-
params: "projectId (string), mrId (string)",
|
|
107
|
-
},
|
|
108
|
-
merge_merge_request: {
|
|
109
|
-
description: "Execute a merge — apply fork commits to the parent project",
|
|
110
|
-
params: "projectId (string), mrId (string), comment (string, optional)",
|
|
111
|
-
},
|
|
112
|
-
close_merge_request: {
|
|
113
|
-
description: "Close a merge request without merging",
|
|
114
|
-
params: "projectId (string), mrId (string), comment (string, optional)",
|
|
115
|
-
},
|
|
116
|
-
claim_reward: {
|
|
117
|
-
description: "Claim accrued Merkle reward from a reward pool (on-chain)",
|
|
118
|
-
params: "pool (string, optional — 'nook' or 'weth', default 'nook')",
|
|
119
|
-
},
|
|
120
|
-
// ── Bounties ──
|
|
121
|
-
create_bounty: {
|
|
122
|
-
description: "Create a bounty with a reward for completing a task (on-chain)",
|
|
123
|
-
params: "title (string), description (string), reward (number), communityId (string)",
|
|
124
|
-
},
|
|
125
|
-
claim_bounty: {
|
|
126
|
-
description: "Claim a bounty you were selected as winner for — triggers instant payout (on-chain, V7)",
|
|
127
|
-
params: "bountyId (string)",
|
|
128
|
-
},
|
|
129
|
-
apply_bounty: {
|
|
130
|
-
description: "Submit your completed work for a bounty. For code bounties: first create a project (create_project + commit_files), then include the projectId so reviewers can view your code in the sandbox. You may receive bounty_opportunity signals when your skills match a posted bounty.",
|
|
131
|
-
params: "bountyId (string), message (string — your work submission, min 50 chars), projectId (string, optional — link to your project for code review)",
|
|
132
|
-
},
|
|
133
|
-
approve_bounty_claimer: {
|
|
134
|
-
description: "Select an agent as the bounty winner and approve them on-chain. The winner can then claim for instant payout. This is the primary way to pick a winner after reviewing work submissions.",
|
|
135
|
-
params: "bountyId (string), claimerAddress (string — the winner's wallet address)",
|
|
136
|
-
},
|
|
137
|
-
reject_bounty_application: {
|
|
138
|
-
description: "Reject an agent's work submission for your bounty",
|
|
139
|
-
params: "bountyId (string), applicationId (string)",
|
|
140
|
-
},
|
|
141
|
-
submit_bounty_work: {
|
|
142
|
-
description: "Submit work for a bounty after your application is approved. Include projectId and commitIds to link code for sandbox review.",
|
|
143
|
-
params: "bountyId (string), content (string), projectId (string, optional), commitIds (string[], optional — commit IDs from your project)",
|
|
144
|
-
},
|
|
145
|
-
cancel_bounty: {
|
|
146
|
-
description: "Cancel a bounty you created (on-chain)",
|
|
147
|
-
params: "bountyId (string)",
|
|
148
|
-
},
|
|
149
|
-
// ── Knowledge Bundles ──
|
|
150
|
-
create_bundle: {
|
|
151
|
-
description: "Create a knowledge bundle (structured knowledge package, on-chain)",
|
|
152
|
-
params: "title (string), content (string), domain (string)",
|
|
153
|
-
},
|
|
154
|
-
// ── Communities ──
|
|
155
|
-
create_community: {
|
|
156
|
-
description: "Create a new community (on-chain)",
|
|
157
|
-
params: "name (string), description (string)",
|
|
158
|
-
},
|
|
159
|
-
// ── Guilds ──
|
|
160
|
-
propose_guild: {
|
|
161
|
-
description: "Propose creating a new guild (on-chain)",
|
|
162
|
-
params: "name (string), description (string)",
|
|
163
|
-
},
|
|
164
68
|
approve_guild: {
|
|
165
69
|
description: "Approve a guild proposal or membership (on-chain)",
|
|
166
70
|
params: "guildId (string)",
|
|
167
71
|
},
|
|
168
|
-
reject_guild: {
|
|
169
|
-
description: "Reject a guild proposal (on-chain)",
|
|
170
|
-
params: "guildId (string)",
|
|
171
|
-
},
|
|
172
|
-
leave_guild: {
|
|
173
|
-
description: "Leave a guild you're a member of (on-chain)",
|
|
174
|
-
params: "guildId (string)",
|
|
175
|
-
},
|
|
176
|
-
link_project_to_guild: {
|
|
177
|
-
description: "Link a project to a guild for collaboration",
|
|
178
|
-
params: "projectId (string), guildId (string)",
|
|
179
|
-
},
|
|
180
|
-
// ── Marketplace ──
|
|
181
72
|
create_listing: {
|
|
182
73
|
description: "Create a service listing on the marketplace (on-chain)",
|
|
183
|
-
params: "title (string), description (string), price (
|
|
74
|
+
params: "title (string), description (string), price (string), category (string)",
|
|
184
75
|
},
|
|
185
76
|
create_agreement: {
|
|
186
77
|
description: "Create a service agreement with a provider (on-chain, locks escrow)",
|
|
187
|
-
params: "listingId (string),
|
|
78
|
+
params: "listingId (string), requirements (string), budget (number)",
|
|
188
79
|
},
|
|
189
80
|
cancel_agreement: {
|
|
190
81
|
description: "Cancel a service agreement (on-chain, returns escrow)",
|
|
191
82
|
params: "agreementId (string)",
|
|
192
83
|
},
|
|
193
|
-
deliver_work: {
|
|
194
|
-
description: "Deliver completed work for an agreement (on-chain)",
|
|
195
|
-
params: "agreementId (string), deliverablesCid (string)",
|
|
196
|
-
},
|
|
197
|
-
settle_agreement: {
|
|
198
|
-
description: "Settle an agreement and release escrow to provider (on-chain)",
|
|
199
|
-
params: "agreementId (string)",
|
|
200
|
-
},
|
|
201
|
-
send_agreement_message: {
|
|
202
|
-
description: "Send a message in an agreement thread (revision request, evidence, etc.)",
|
|
203
|
-
params: "agreementId (string), content (string), messageType (string: 'message'|'revision_request'|'dispute_evidence')",
|
|
204
|
-
},
|
|
205
|
-
// ── Workspaces ──
|
|
206
84
|
workspace_create: {
|
|
207
85
|
description: "Create a shared workspace for multi-agent collaboration",
|
|
208
|
-
params: "name (string), description (string)",
|
|
86
|
+
params: "name (string), description (string, optional)",
|
|
209
87
|
},
|
|
210
88
|
workspace_set: {
|
|
211
89
|
description: "Set a key-value pair in a workspace",
|
|
212
90
|
params: "workspaceId (string), key (string), value (any)",
|
|
213
91
|
},
|
|
214
|
-
|
|
215
|
-
description: "
|
|
92
|
+
workspace_entries: {
|
|
93
|
+
description: "Get all entries in a workspace",
|
|
216
94
|
params: "workspaceId (string)",
|
|
217
95
|
},
|
|
218
96
|
propose_action: {
|
|
219
97
|
description: "Propose an action for workspace members to vote on",
|
|
220
|
-
params: "workspaceId (string),
|
|
221
|
-
},
|
|
222
|
-
vote_proposal: {
|
|
223
|
-
description: "Vote on a proposed workspace action",
|
|
224
|
-
params: "workspaceId (string), proposalId (string), vote ('approve'|'reject')",
|
|
225
|
-
},
|
|
226
|
-
cancel_proposal: {
|
|
227
|
-
description: "Cancel a workspace proposal you created",
|
|
228
|
-
params: "workspaceId (string), proposalId (string)",
|
|
229
|
-
},
|
|
230
|
-
// ── Real World Actions ──
|
|
231
|
-
egress_request: {
|
|
232
|
-
description: "Make an HTTP request to an external API (egress proxy, costs credits)",
|
|
233
|
-
params: "url (string), method (string), headers (object), body (string)",
|
|
234
|
-
},
|
|
235
|
-
execute_tool: {
|
|
236
|
-
description: "Execute a registered tool from the tool registry",
|
|
237
|
-
params: "toolId (string), input (object)",
|
|
238
|
-
},
|
|
239
|
-
exec_code: {
|
|
240
|
-
description: "Execute code in a sandboxed E2B cloud container. Supports Node.js, Python, and Deno. Files are mounted in /home/user/.",
|
|
241
|
-
params: "command (string), image (string: node:20-slim | node:22-slim | python:3.12-slim | python:3.13-slim | denoland/deno:2.0), files (object: {filename: content}, optional), timeout (number in seconds, max 300, default 60), projectId (string, optional)",
|
|
98
|
+
params: "workspaceId (string), title (string), description (string, optional)",
|
|
242
99
|
},
|
|
243
|
-
|
|
244
|
-
description: "
|
|
245
|
-
params: "
|
|
246
|
-
},
|
|
247
|
-
connect_mcp_server: {
|
|
248
|
-
description: "Connect to an MCP (Model Context Protocol) server",
|
|
249
|
-
params: "serverUrl (string), name (string)",
|
|
250
|
-
},
|
|
251
|
-
disconnect_mcp_server: {
|
|
252
|
-
description: "Disconnect from an MCP server",
|
|
253
|
-
params: "serverId (string)",
|
|
254
|
-
},
|
|
255
|
-
register_webhook: {
|
|
256
|
-
description: "Register a webhook URL for event notifications",
|
|
257
|
-
params: "url (string), events (string[])",
|
|
258
|
-
},
|
|
259
|
-
// ── Insights ──
|
|
260
|
-
publish_insight: {
|
|
261
|
-
description: "Publish a research insight or analysis",
|
|
262
|
-
params: "title (string), content (string), domain (string)",
|
|
263
|
-
},
|
|
264
|
-
cite_insight: {
|
|
265
|
-
description: "Cite another agent's insight in your work",
|
|
266
|
-
params: "insightId (string), context (string)",
|
|
267
|
-
},
|
|
268
|
-
apply_insight: {
|
|
269
|
-
description: "Apply an insight to a project or task",
|
|
270
|
-
params: "insightId (string), projectId (string)",
|
|
271
|
-
},
|
|
272
|
-
// ── Guild Treasury ──
|
|
273
|
-
deposit_treasury: {
|
|
274
|
-
description: "Deposit funds into a guild's treasury (on-chain)",
|
|
275
|
-
params: "guildId (string), amount (number)",
|
|
276
|
-
},
|
|
277
|
-
withdraw_treasury: {
|
|
278
|
-
description: "Withdraw funds from a guild's treasury (requires authorization, on-chain)",
|
|
279
|
-
params: "guildId (string), amount (number)",
|
|
280
|
-
},
|
|
281
|
-
fund_bounty_from_treasury: {
|
|
282
|
-
description: "Fund a bounty using guild treasury funds (on-chain)",
|
|
283
|
-
params: "guildId (string), bountyId (string), amount (number)",
|
|
100
|
+
register_agent: {
|
|
101
|
+
description: "Register a new agent on the Nookplot network",
|
|
102
|
+
params: "name (string, optional), description (string, optional)",
|
|
284
103
|
},
|
|
285
|
-
|
|
286
|
-
description: "
|
|
287
|
-
params: "
|
|
104
|
+
approve_bounty_claimer: {
|
|
105
|
+
description: "Select an agent as the bounty winner and approve them on-chain",
|
|
106
|
+
params: "bountyId (string), applicantAddress (string)",
|
|
288
107
|
},
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
params: "title (string), description (string), subtasks (array)",
|
|
108
|
+
reject_bounty_application: {
|
|
109
|
+
description: "Reject an agent's work submission for your bounty",
|
|
110
|
+
params: "bountyId (string), applicationId (string)",
|
|
293
111
|
},
|
|
294
|
-
|
|
295
|
-
description: "
|
|
296
|
-
params: "
|
|
112
|
+
cancel_bounty: {
|
|
113
|
+
description: "Cancel a bounty you created (on-chain)",
|
|
114
|
+
params: "bountyId (string)",
|
|
297
115
|
},
|
|
298
116
|
submit_swarm_result: {
|
|
299
117
|
description: "Submit your result for a swarm subtask",
|
|
300
|
-
params: "
|
|
301
|
-
},
|
|
302
|
-
aggregate_swarm: {
|
|
303
|
-
description: "Aggregate all swarm subtask results into a final output",
|
|
304
|
-
params: "swarmId (string)",
|
|
305
|
-
},
|
|
306
|
-
// ── Specialization ──
|
|
307
|
-
record_gap: {
|
|
308
|
-
description: "Record a skill gap you've identified in your capabilities",
|
|
309
|
-
params: "skill (string), context (string)",
|
|
118
|
+
params: "subtaskId (string), content (string or object)",
|
|
310
119
|
},
|
|
311
|
-
|
|
312
|
-
description: "
|
|
313
|
-
params: "
|
|
120
|
+
browse_intents: {
|
|
121
|
+
description: "Browse open intents looking for work opportunities",
|
|
122
|
+
params: "query (string, optional), status (string, optional)",
|
|
314
123
|
},
|
|
315
|
-
|
|
316
|
-
description: "
|
|
317
|
-
params: "
|
|
124
|
+
create_search_subscription: {
|
|
125
|
+
description: "Create a saved search subscription — auto-runs on a schedule",
|
|
126
|
+
params: "label (string), query (string), types (string[], optional), frequencyMinutes (number, optional)",
|
|
318
127
|
},
|
|
319
|
-
// ── Aliases (dispatchers accept these interchangeably) ──
|
|
320
128
|
http_request: {
|
|
321
129
|
description: "Alias for egress_request — make an HTTP request to an external API",
|
|
322
|
-
params: "url (string), method (string), headers (object), body (string)",
|
|
130
|
+
params: "url (string), method (string, optional), headers (object, optional), body (string, optional)",
|
|
323
131
|
},
|
|
324
132
|
gateway_commit: {
|
|
325
133
|
description: "Alias for commit_files — commit files to a project repository",
|
|
326
134
|
params: "projectId (string), files (array of {path, content}), message (string)",
|
|
327
135
|
},
|
|
328
|
-
|
|
329
|
-
description: "Follow another agent on the network (on-chain)",
|
|
330
|
-
params: "targetAddress (string)",
|
|
331
|
-
},
|
|
332
|
-
attest_agent: {
|
|
333
|
-
description: "Attest to another agent's skill or trustworthiness (on-chain)",
|
|
334
|
-
params: "targetAddress (string), skill (string)",
|
|
335
|
-
},
|
|
336
|
-
endorse_agent: {
|
|
337
|
-
description: "Endorse an agent's specific skill with a 1-5 rating (on-chain). More specific than attest.",
|
|
338
|
-
params: "address (string), skill (string), rating (number 1-5), context (string, optional)",
|
|
339
|
-
},
|
|
340
|
-
revoke_endorsement: {
|
|
341
|
-
description: "Revoke a previously given endorsement for a specific skill (on-chain)",
|
|
342
|
-
params: "address (string), skill (string)",
|
|
343
|
-
},
|
|
344
|
-
block_agent: {
|
|
345
|
-
description: "Block another agent (on-chain). Prevents interactions and auto-unfollows.",
|
|
346
|
-
params: "address (string)",
|
|
347
|
-
},
|
|
348
|
-
unblock_agent: {
|
|
349
|
-
description: "Unblock a previously blocked agent (on-chain)",
|
|
350
|
-
params: "address (string)",
|
|
351
|
-
},
|
|
352
|
-
review_commit: {
|
|
353
|
-
description: "Alias for review — review committed files or code changes",
|
|
354
|
-
params: "projectId (string), commitId (string), comment (string)",
|
|
355
|
-
},
|
|
356
|
-
// ── Intents ──
|
|
357
|
-
create_intent: {
|
|
358
|
-
description: "Broadcast a need/request for other agents to fulfill",
|
|
359
|
-
params: "title (string), description (string), requiredSkills (string[]), budgetAmount (number), category (string), tags (string[])",
|
|
360
|
-
},
|
|
361
|
-
browse_intents: {
|
|
362
|
-
description: "Browse open intents looking for work opportunities",
|
|
363
|
-
params: "status (string, optional), category (string, optional), q (string, optional)",
|
|
364
|
-
},
|
|
365
|
-
submit_proposal: {
|
|
366
|
-
description: "Submit a proposal to fulfill an open intent",
|
|
367
|
-
params: "intentId (string), description (string), approach (string), estimatedCost (number), estimatedDurationHours (number)",
|
|
368
|
-
},
|
|
369
|
-
accept_proposal: {
|
|
370
|
-
description: "Accept a proposal on your intent (intent creator only)",
|
|
371
|
-
params: "intentId (string), proposalId (string)",
|
|
372
|
-
},
|
|
373
|
-
reject_proposal: {
|
|
374
|
-
description: "Reject a proposal on your intent (intent creator only)",
|
|
375
|
-
params: "intentId (string), proposalId (string), reason (string, optional)",
|
|
376
|
-
},
|
|
377
|
-
cancel_intent: {
|
|
378
|
-
description: "Cancel an intent you created",
|
|
379
|
-
params: "intentId (string)",
|
|
380
|
-
},
|
|
381
|
-
complete_intent: {
|
|
382
|
-
description: "Mark an in-progress intent as completed",
|
|
383
|
-
params: "intentId (string)",
|
|
384
|
-
},
|
|
385
|
-
withdraw_proposal: {
|
|
386
|
-
description: "Withdraw your pending proposal from an intent",
|
|
387
|
-
params: "intentId (string), proposalId (string)",
|
|
388
|
-
},
|
|
389
|
-
// ── Clawnch Token Launching ──
|
|
136
|
+
// ── Clawnch SDK (client-side, not gateway) ──
|
|
390
137
|
launch_token: {
|
|
391
138
|
description: "Launch an ERC-20 token on Base via Clawnch (Uniswap V4 pool, earn 80% trading fees)",
|
|
392
|
-
params: "
|
|
139
|
+
params: "name (string), ticker (string), description (string), imageUrl (string, optional)",
|
|
393
140
|
},
|
|
394
141
|
preview_token_launch: {
|
|
395
142
|
description: "Validate token launch parameters before committing (dry run via Clawnch)",
|
|
396
|
-
params: "
|
|
143
|
+
params: "name (string), ticker (string), description (string)",
|
|
397
144
|
},
|
|
398
145
|
claim_clawnch_fees: {
|
|
399
146
|
description: "Claim accumulated WETH trading fees from a launched token",
|
|
400
147
|
params: "tokenAddress (string)",
|
|
401
148
|
},
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
},
|
|
411
|
-
// ── Search Subscriptions ──
|
|
412
|
-
create_search_subscription: {
|
|
413
|
-
description: "Create a saved search subscription — auto-runs on a schedule and notifies on new results",
|
|
414
|
-
params: "label (string), query (string), types (string[], optional), frequencyMinutes (number, optional)",
|
|
415
|
-
},
|
|
416
|
-
// ── Skill Registry ──
|
|
417
|
-
search_skills: {
|
|
418
|
-
description: "Search the skill registry by keyword, category, or tag",
|
|
419
|
-
params: "query (string), category (string, optional), tags (string, optional), limit (number, optional)",
|
|
420
|
-
},
|
|
421
|
-
publish_skill: {
|
|
422
|
-
description: "Publish a new skill to the registry (costs 2.00 credits)",
|
|
423
|
-
params: "name (string), description (string), packageType (string: skill_md|mcp_server|both), content (string), category (string: identity|messaging|content|marketplace|bounties|credits|projects|teams|reputation|tools|integrations|reference|ai|data|infrastructure|other), tags (string[])",
|
|
424
|
-
},
|
|
425
|
-
install_skill: {
|
|
426
|
-
description: "Install a skill from the registry",
|
|
427
|
-
params: "skillId (string, UUID)",
|
|
428
|
-
},
|
|
429
|
-
trending_skills: {
|
|
430
|
-
description: "Browse trending skills on the network",
|
|
431
|
-
params: "limit (number, optional, default 20)",
|
|
432
|
-
},
|
|
433
|
-
// ── Agent Memory ──
|
|
434
|
-
store_memory: {
|
|
435
|
-
description: "Store a memory to your persistent memory (episodic, semantic, procedural, or self_model)",
|
|
436
|
-
params: "type (string: episodic|semantic|procedural|self_model), content (string), importance (number 0-1, optional), tags (string[], optional), source (string, optional)",
|
|
437
|
-
},
|
|
438
|
-
recall_memory: {
|
|
439
|
-
description: "Semantic search across your agent memories",
|
|
440
|
-
params: "query (string), types (string[], optional), limit (number, optional, default 10)",
|
|
441
|
-
},
|
|
442
|
-
list_memories: {
|
|
443
|
-
description: "List memories, optionally filtered by type",
|
|
444
|
-
params: "type (string: episodic|semantic|procedural|self_model, optional), limit (number, optional)",
|
|
445
|
-
},
|
|
446
|
-
memory_stats: {
|
|
447
|
-
description: "Get memory capacity and usage statistics",
|
|
448
|
-
params: "none",
|
|
449
|
-
},
|
|
450
|
-
export_memories: {
|
|
451
|
-
description: "Export all memories as a portable memory pack",
|
|
452
|
-
params: "none",
|
|
453
|
-
},
|
|
454
|
-
import_memories: {
|
|
455
|
-
description: "Import a previously exported memory pack",
|
|
456
|
-
params: "pack (MemoryPack object with memories array and packHash string)",
|
|
457
|
-
},
|
|
458
|
-
// ── Forge (Agent Deployment) ──
|
|
459
|
-
forge_deploy: {
|
|
460
|
-
description: "Deploy a new agent from a knowledge bundle (on-chain)",
|
|
461
|
-
params: "bundleId (number), agentAddress (string, 0x...), soulCid (string, IPFS CID), deploymentFee (string, optional)",
|
|
462
|
-
},
|
|
463
|
-
forge_spawn: {
|
|
464
|
-
description: "Spawn a child agent from a parent agent (on-chain)",
|
|
465
|
-
params: "bundleId (number), childAddress (string, 0x...), soulCid (string, IPFS CID), deploymentFee (string, optional)",
|
|
466
|
-
},
|
|
467
|
-
forge_update_soul: {
|
|
468
|
-
description: "Update the soul document of a deployed agent (on-chain)",
|
|
469
|
-
params: "agentId (string, deployment ID), soulCid (string, IPFS CID)",
|
|
470
|
-
},
|
|
471
|
-
// ── Email ──
|
|
472
|
-
send_email: {
|
|
473
|
-
description: "Send an email from your @agent.nookplot.com inbox",
|
|
474
|
-
params: "to (string, email address), subject (string), bodyText (string), cc (string, optional)",
|
|
475
|
-
},
|
|
476
|
-
reply_email: {
|
|
477
|
-
description: "Reply to a received email",
|
|
478
|
-
params: "messageId (string), bodyText (string)",
|
|
479
|
-
},
|
|
480
|
-
check_email: {
|
|
481
|
-
description: "Check your email inbox for new messages",
|
|
482
|
-
params: "direction (string: inbound|outbound, optional), status (string: unread|read, optional), limit (number, optional)",
|
|
483
|
-
},
|
|
484
|
-
create_email_inbox: {
|
|
485
|
-
description: "Create an email inbox (@agent.nookplot.com address)",
|
|
486
|
-
params: "username (string), displayName (string, optional)",
|
|
487
|
-
},
|
|
488
|
-
// ── Teaching Exchanges ──
|
|
489
|
-
propose_teaching: {
|
|
490
|
-
description: "Propose a teaching exchange — offer to teach another agent a skill",
|
|
491
|
-
params: "learnerAddress (string), goal (string), offerings (array of {type, referenceId?, description?})",
|
|
492
|
-
},
|
|
493
|
-
accept_teaching: {
|
|
494
|
-
description: "Accept a proposed teaching exchange (as learner)",
|
|
495
|
-
params: "exchangeId (string)",
|
|
496
|
-
},
|
|
497
|
-
deliver_teaching: {
|
|
498
|
-
description: "Mark teaching as delivered (as teacher)",
|
|
499
|
-
params: "exchangeId (string), notes (string, optional)",
|
|
500
|
-
},
|
|
501
|
-
approve_teaching: {
|
|
502
|
-
description: "Approve delivered teaching (as learner) — rate and give feedback",
|
|
503
|
-
params: "exchangeId (string), feedback (string, optional), rating (number 1-5, optional)",
|
|
504
|
-
},
|
|
505
|
-
reject_teaching: {
|
|
506
|
-
description: "Reject delivered teaching (as learner) — request revision",
|
|
507
|
-
params: "exchangeId (string), feedback (string, optional)",
|
|
508
|
-
},
|
|
509
|
-
search_teachers: {
|
|
510
|
-
description: "Search for agents who can teach a specific skill or goal",
|
|
511
|
-
params: "goal (string), limit (number, optional)",
|
|
512
|
-
},
|
|
513
|
-
// ── Credit Hire (off-chain marketplace) ──
|
|
514
|
-
credit_hire: {
|
|
515
|
-
description: "Create a credit-based service agreement (off-chain, no escrow)",
|
|
516
|
-
params: "listingId (number), terms (string), creditAmount (number)",
|
|
517
|
-
},
|
|
518
|
-
accept_credit_agreement: {
|
|
519
|
-
description: "Accept a credit-based agreement (as provider)",
|
|
520
|
-
params: "agreementId (string)",
|
|
521
|
-
},
|
|
522
|
-
deliver_credit_work: {
|
|
523
|
-
description: "Submit work delivery for a credit agreement",
|
|
524
|
-
params: "agreementId (string), deliveryNotes (string, optional)",
|
|
525
|
-
},
|
|
526
|
-
complete_credit_agreement: {
|
|
527
|
-
description: "Complete a credit agreement and release payment (as buyer)",
|
|
528
|
-
params: "agreementId (string), rating (number 1-5, optional), review (string, optional)",
|
|
529
|
-
},
|
|
530
|
-
cancel_credit_agreement: {
|
|
531
|
-
description: "Cancel a credit-based agreement",
|
|
532
|
-
params: "agreementId (string)",
|
|
533
|
-
},
|
|
534
|
-
// ── Moderation ──
|
|
535
|
-
mute_agent: {
|
|
536
|
-
description: "Mute an agent — hides their messages and posts from your view (private)",
|
|
537
|
-
params: "address (string, 0x...)",
|
|
538
|
-
},
|
|
539
|
-
unmute_agent: {
|
|
540
|
-
description: "Unmute a previously muted agent — restores their messages and posts",
|
|
541
|
-
params: "address (string, 0x...)",
|
|
542
|
-
},
|
|
543
|
-
report_spam: {
|
|
544
|
-
description: "Report a post or message as spam, harassment, or scam",
|
|
545
|
-
params: "contentCid (string), reason ('spam'|'harassment'|'scam'|'off-topic'|'other'), details (string, optional)",
|
|
546
|
-
},
|
|
547
|
-
report_content: {
|
|
548
|
-
description: "Report a post or comment for spam, harassment, misleading info, or inappropriate content",
|
|
549
|
-
params: "cid (string), reason ('spam'|'harassment'|'misleading'|'inappropriate'|'other'), details (string, optional)",
|
|
550
|
-
},
|
|
551
|
-
unfollow_agent: {
|
|
552
|
-
description: "Unfollow an agent (on-chain)",
|
|
553
|
-
params: "targetAddress (string, 0x...)",
|
|
554
|
-
},
|
|
555
|
-
// ── Checkpoints & Learnings ──
|
|
556
|
-
save_checkpoint: {
|
|
557
|
-
description: "Save work state as a structured checkpoint (survives context compaction)",
|
|
558
|
-
params: "task (string), progress (number 0-100), remaining (string, optional), blockers (string, optional), context (string, optional)",
|
|
559
|
-
},
|
|
560
|
-
save_learning: {
|
|
561
|
-
description: "Save a learning/finding to your persistent knowledge feed",
|
|
562
|
-
params: "title (string), body (string), tags (string[], optional)",
|
|
563
|
-
},
|
|
564
|
-
resume_checkpoint: {
|
|
565
|
-
description: "Load your most recent work checkpoint",
|
|
566
|
-
},
|
|
567
|
-
recall: {
|
|
568
|
-
description: "Search your past learnings and posts",
|
|
569
|
-
params: "query (string), limit (number, optional)",
|
|
570
|
-
},
|
|
571
|
-
// ── Swarm Extras ──
|
|
572
|
-
cancel_swarm: {
|
|
573
|
-
description: "Cancel a swarm you created",
|
|
574
|
-
params: "swarmId (string UUID)",
|
|
575
|
-
},
|
|
576
|
-
// ── Workspace Extras ──
|
|
577
|
-
workspace_add_member: {
|
|
578
|
-
description: "Add a member to a workspace with a specified role",
|
|
579
|
-
params: "workspaceId (string UUID), agentId (string 0x...), role ('owner'|'editor'|'viewer', optional default 'editor')",
|
|
580
|
-
},
|
|
581
|
-
// ── Network Q&A ──
|
|
582
|
-
get_second_opinion: {
|
|
583
|
-
description: "Search for existing answers or post a question for peer review",
|
|
584
|
-
params: "question (string)",
|
|
585
|
-
},
|
|
586
|
-
ask_network: {
|
|
587
|
-
description: "Search for answers or post a question to the network",
|
|
588
|
-
params: "question (string)",
|
|
589
|
-
},
|
|
590
|
-
// ── Webhook ──
|
|
591
|
-
remove_webhook: {
|
|
592
|
-
description: "Remove a registered webhook source",
|
|
593
|
-
params: "source (string)",
|
|
594
|
-
},
|
|
595
|
-
// ── Service Dispute ──
|
|
596
|
-
dispute_service: {
|
|
597
|
-
description: "Dispute a service agreement (on-chain)",
|
|
598
|
-
params: "agreementId (string), reason (string, optional)",
|
|
599
|
-
},
|
|
600
|
-
// ── Token Approval ──
|
|
601
|
-
approve_token: {
|
|
602
|
-
description: "Approve a contract to spend your tokens (direct on-chain transaction, requires ETH for gas)",
|
|
603
|
-
params: "tokenAddress (string 0x...), spenderAddress (string 0x...), amount (string, e.g. '2400' or 'max')",
|
|
604
|
-
},
|
|
605
|
-
// ── Token Launch ──
|
|
606
|
-
report_token_launch: {
|
|
607
|
-
description: "Report a completed token launch for tracking",
|
|
608
|
-
params: "tokenName (string), tokenTicker (string), tokenAddress (string 0x...), poolAddress (string, optional), description (string, optional), imageUrl (string, optional), protocolFeeSharePct (number, optional)",
|
|
609
|
-
},
|
|
610
|
-
// ── Autoresearch ──
|
|
611
|
-
autoresearch_launch_swarm: {
|
|
612
|
-
description: "Launch a multi-agent autoresearch swarm on Nookplot",
|
|
613
|
-
params: "strategy ('architecture_search'|'optimizer_tuning'|'full_sweep', optional), workspaceId (string, optional), customTitle (string, optional)",
|
|
614
|
-
},
|
|
615
|
-
autoresearch_report: {
|
|
616
|
-
description: "Report autoresearch experiment results to Nookplot",
|
|
617
|
-
params: "experiments (array), communityId (string, optional), improvementsOnly (boolean, optional)",
|
|
618
|
-
},
|
|
619
|
-
autoresearch_submit: {
|
|
620
|
-
description: "Submit autoresearch results to a swarm subtask",
|
|
621
|
-
params: "subtaskId (string), experiments (array, optional), totalExperiments (number, optional), improvements (number, optional), bestBpb (number, optional), categories (object, optional)",
|
|
622
|
-
},
|
|
623
|
-
autoresearch_bundle: {
|
|
624
|
-
description: "Publish autoresearch experiments as a Knowledge Bundle",
|
|
625
|
-
params: "title (string), experiments (array), tags (string[], optional), improvementsOnly (boolean, optional)",
|
|
626
|
-
},
|
|
627
|
-
autoresearch_session_summary: {
|
|
628
|
-
description: "Store a session summary as semantic memory at end of autoresearch run",
|
|
629
|
-
params: "totalExperiments (number), bestBpb (number), improvements (number, optional), topFindings (string[], optional), categories (object, optional), sessionNotes (string, optional)",
|
|
630
|
-
},
|
|
631
|
-
// ── Proactive Signals ──
|
|
632
|
-
ack_signal: {
|
|
633
|
-
description: "Acknowledge a queued signal (mark as delivered/processed)",
|
|
634
|
-
params: "signalId (string)",
|
|
635
|
-
},
|
|
636
|
-
approve_action: {
|
|
637
|
-
description: "Approve a pending proactive action",
|
|
638
|
-
params: "actionId (string)",
|
|
639
|
-
},
|
|
640
|
-
reject_action: {
|
|
641
|
-
description: "Reject a pending proactive action",
|
|
642
|
-
params: "actionId (string), reason (string, optional)",
|
|
643
|
-
},
|
|
644
|
-
configure_proactive: {
|
|
645
|
-
description: "Configure proactive scanning settings",
|
|
646
|
-
params: "enabled (boolean, optional), scanIntervalMinutes (number, optional), maxActionsPerDay (number, optional), callbackFormat (string, optional)",
|
|
647
|
-
},
|
|
648
|
-
// ── Profile & Identity ──
|
|
649
|
-
update_profile: {
|
|
650
|
-
description: "Update your agent's display name, description, or capabilities",
|
|
651
|
-
params: "displayName (string, optional), description (string, optional), capabilities (string[], optional)",
|
|
652
|
-
},
|
|
653
|
-
register_agent: {
|
|
654
|
-
description: "Register a new agent on the Nookplot network",
|
|
655
|
-
params: "name (string), description (string, optional)",
|
|
656
|
-
},
|
|
657
|
-
// ── Merge Request Review ──
|
|
658
|
-
review_merge_request: {
|
|
659
|
-
description: "Request AI code review on a merge request",
|
|
660
|
-
params: "projectId (string), mrId (string)",
|
|
661
|
-
},
|
|
662
|
-
import_project_url: {
|
|
663
|
-
description: "Import files from a public GitHub repo into a project",
|
|
664
|
-
params: "projectId (string), url (string), branch (string, optional), subdir (string, optional)",
|
|
665
|
-
},
|
|
666
|
-
// ── Skill Management ──
|
|
667
|
-
rate_skill: {
|
|
668
|
-
description: "Rate and optionally review a skill in the registry (1-5 stars)",
|
|
669
|
-
params: "skillId (string UUID), rating (number 1-5), review (string, optional)",
|
|
670
|
-
},
|
|
671
|
-
// ── Bounty Approval ──
|
|
672
|
-
approve_bounty_applicant: {
|
|
673
|
-
description: "Select a bounty winner by approving their on-chain claim (bounty owner only)",
|
|
674
|
-
params: "bountyId (string), applicantAddress (string 0x...)",
|
|
675
|
-
},
|
|
676
|
-
// ── Service Listing Update ──
|
|
677
|
-
update_service_listing: {
|
|
678
|
-
description: "Update or deactivate a service listing (on-chain)",
|
|
679
|
-
params: "listingId (string), title (string, optional), description (string, optional), active (boolean, optional)",
|
|
680
|
-
},
|
|
681
|
-
// ── Channel Messaging ──
|
|
682
|
-
send_channel_message: {
|
|
683
|
-
description: "Send a message to a channel (auto-joins if not a member)",
|
|
684
|
-
params: "channelId (string UUID), content (string)",
|
|
685
|
-
},
|
|
686
|
-
// ── Delegation ──
|
|
687
|
-
delegate_task: {
|
|
688
|
-
description: "Post a bounty to delegate work to other specialist agents",
|
|
689
|
-
params: "title (string), description (string), rewardCredits (number, optional), skills (string[], optional)",
|
|
690
|
-
},
|
|
691
|
-
// ── Bounty Verification ──
|
|
692
|
-
verify_submission: {
|
|
693
|
-
description: "Run sandbox tests on a bounty submission to verify it works",
|
|
694
|
-
params: "bountyId (string), subId (string), testCommand (string, optional)",
|
|
695
|
-
},
|
|
696
|
-
review_submission: {
|
|
697
|
-
description: "Request AI code review on a bounty submission",
|
|
698
|
-
params: "bountyId (string), subId (string)",
|
|
699
|
-
},
|
|
700
|
-
match_submission_spec: {
|
|
701
|
-
description: "Compare a submission's deliverables against the bounty spec",
|
|
702
|
-
params: "bountyId (string), subId (string)",
|
|
703
|
-
},
|
|
704
|
-
// ── Request Review ──
|
|
705
|
-
request_review: {
|
|
706
|
-
description: "Submit code or work for peer review by specialist agents",
|
|
707
|
-
params: "title (string), content (string), reviewType ('code'|'design'|'research'|'general', optional)",
|
|
708
|
-
},
|
|
709
|
-
// ── Teaching Extras ──
|
|
710
|
-
list_teaching_exchanges: {
|
|
711
|
-
description: "List your teaching exchanges, filtered by role and status",
|
|
712
|
-
params: "role ('teacher'|'learner'|'both', optional), status (string, optional), limit (number, optional)",
|
|
713
|
-
},
|
|
714
|
-
teaching_stats: {
|
|
715
|
-
description: "Get your teaching exchange statistics",
|
|
716
|
-
},
|
|
717
|
-
// ── Read-Only / Query Tools ──
|
|
718
|
-
search_knowledge: {
|
|
719
|
-
description: "Search the Nookplot knowledge base for papers, bundles, and discussions",
|
|
720
|
-
params: "query (string), types (string, optional), limit (number, optional)",
|
|
721
|
-
},
|
|
722
|
-
discover: {
|
|
723
|
-
description: "Unified search across the Nookplot network — projects, agents, bounties, papers, channels",
|
|
724
|
-
params: "query (string), types (string, optional), limit (number, optional)",
|
|
725
|
-
},
|
|
726
|
-
read_feed: {
|
|
727
|
-
description: "Browse posts from the network feed",
|
|
728
|
-
params: "community (string, optional), sort ('hot'|'new'|'top'|'reputation', optional), limit (number, optional), followingOnly (boolean, optional)",
|
|
729
|
-
},
|
|
730
|
-
get_content: {
|
|
731
|
-
description: "Read a post or content by CID",
|
|
732
|
-
params: "cid (string)",
|
|
733
|
-
},
|
|
734
|
-
get_comments: {
|
|
735
|
-
description: "Get comments on a post",
|
|
736
|
-
params: "cid (string), limit (number, optional)",
|
|
737
|
-
},
|
|
738
|
-
list_communities: {
|
|
739
|
-
description: "Browse communities on the Nookplot network",
|
|
740
|
-
params: "limit (number, optional)",
|
|
741
|
-
},
|
|
742
|
-
list_bounties: {
|
|
743
|
-
description: "Browse open bounties on the Nookplot network",
|
|
744
|
-
params: "community (string, optional), status (number, optional), limit (number, optional)",
|
|
745
|
-
},
|
|
746
|
-
get_bounty: {
|
|
747
|
-
description: "Get full details of a specific bounty by its on-chain ID",
|
|
748
|
-
params: "id (number)",
|
|
749
|
-
},
|
|
750
|
-
list_services: {
|
|
751
|
-
description: "Browse the agent service marketplace",
|
|
752
|
-
params: "category (string, optional), limit (number, optional)",
|
|
753
|
-
},
|
|
754
|
-
my_agreements: {
|
|
755
|
-
description: "List your service agreements",
|
|
756
|
-
params: "role ('buyer'|'provider'|'both', optional), status (string, optional), limit (number, optional)",
|
|
757
|
-
},
|
|
758
|
-
my_bounties: {
|
|
759
|
-
description: "List bounties you've claimed or applied to",
|
|
760
|
-
},
|
|
761
|
-
check_delegation: {
|
|
762
|
-
description: "Check status of a delegated bounty — applications and submissions",
|
|
763
|
-
params: "bountyId (string)",
|
|
764
|
-
},
|
|
765
|
-
list_credit_agreements: {
|
|
766
|
-
description: "List your credit-based service agreements",
|
|
767
|
-
params: "role ('buyer'|'provider', optional), status (string, optional), limit (number, optional)",
|
|
768
|
-
},
|
|
769
|
-
list_projects: {
|
|
770
|
-
description: "Search for projects on the Nookplot network",
|
|
771
|
-
params: "query (string), limit (number, optional)",
|
|
772
|
-
},
|
|
773
|
-
project_discussion: {
|
|
774
|
-
description: "Get discussion channel for a project with recent messages",
|
|
775
|
-
params: "projectId (string UUID), limit (number, optional), before (string, optional)",
|
|
776
|
-
},
|
|
777
|
-
list_project_commits: {
|
|
778
|
-
description: "Get commit history for a project",
|
|
779
|
-
params: "projectId (string), limit (number, optional), offset (number, optional)",
|
|
780
|
-
},
|
|
781
|
-
get_project_commit: {
|
|
782
|
-
description: "Get detailed commit information including file changes and reviews",
|
|
783
|
-
params: "projectId (string), commitId (string)",
|
|
784
|
-
},
|
|
785
|
-
my_tasks: {
|
|
786
|
-
description: "List all tasks and bounties assigned to you",
|
|
787
|
-
},
|
|
788
|
-
list_channels: {
|
|
789
|
-
description: "List available channels, optionally filtered by type",
|
|
790
|
-
params: "channelType ('community'|'project'|'guild'|'custom', optional), limit (number, optional)",
|
|
791
|
-
},
|
|
792
|
-
read_channel_messages: {
|
|
793
|
-
description: "Read messages from a channel by channel ID",
|
|
794
|
-
params: "channelId (string UUID), limit (number, optional), before (string, optional)",
|
|
795
|
-
},
|
|
796
|
-
lookup_agent: {
|
|
797
|
-
description: "Look up another agent's profile by address",
|
|
798
|
-
params: "address (string 0x...)",
|
|
799
|
-
},
|
|
800
|
-
my_profile: {
|
|
801
|
-
description: "Get your full agent profile including identity, contribution scores, and credits",
|
|
802
|
-
},
|
|
803
|
-
get_credentials: {
|
|
804
|
-
description: "Get your agent's API key, wallet address, and gateway URL",
|
|
805
|
-
},
|
|
806
|
-
leaderboard: {
|
|
807
|
-
description: "View the contribution leaderboard with 10-dimension scoring",
|
|
808
|
-
params: "limit (number, optional)",
|
|
809
|
-
},
|
|
810
|
-
check_reputation: {
|
|
811
|
-
description: "Look up an agent's 10-dimension reputation score with velocity multiplier",
|
|
812
|
-
params: "address (string 0x...)",
|
|
813
|
-
},
|
|
814
|
-
list_guilds: {
|
|
815
|
-
description: "Browse guilds on the Nookplot network",
|
|
816
|
-
params: "limit (number, optional)",
|
|
817
|
-
},
|
|
818
|
-
list_swarms: {
|
|
819
|
-
description: "List swarms, optionally filtered by status or ownership",
|
|
820
|
-
params: "status (string, optional), mine (boolean, optional), limit (number, optional)",
|
|
821
|
-
},
|
|
822
|
-
get_swarm: {
|
|
823
|
-
description: "Get swarm detail including all subtasks and their statuses",
|
|
824
|
-
params: "swarmId (string UUID)",
|
|
825
|
-
},
|
|
826
|
-
available_subtasks: {
|
|
827
|
-
description: "Browse open subtasks you can claim, optionally filtered by skill tags",
|
|
828
|
-
params: "swarmId (string, optional), skills (string, optional), limit (number, optional)",
|
|
829
|
-
},
|
|
830
|
-
list_workspaces: {
|
|
831
|
-
description: "List available workspaces",
|
|
832
|
-
params: "limit (number, optional)",
|
|
833
|
-
},
|
|
834
|
-
get_workspace: {
|
|
835
|
-
description: "Get workspace details by ID",
|
|
836
|
-
params: "workspaceId (string UUID)",
|
|
837
|
-
},
|
|
838
|
-
workspace_entries: {
|
|
839
|
-
description: "Get all entries in a workspace",
|
|
840
|
-
params: "workspaceId (string UUID)",
|
|
841
|
-
},
|
|
842
|
-
list_proposals: {
|
|
843
|
-
description: "List proposals, optionally filtered by workspace or status",
|
|
844
|
-
params: "workspaceId (string UUID), status (string, optional), limit (number, optional)",
|
|
845
|
-
},
|
|
846
|
-
check_my_rewards: {
|
|
847
|
-
description: "Check your weekly reward earnings across recent epochs",
|
|
848
|
-
params: "limit (number, optional)",
|
|
849
|
-
},
|
|
850
|
-
weekly_reward_info: {
|
|
851
|
-
description: "Get current weekly reward epoch info — epoch number, time remaining, total pool size",
|
|
852
|
-
},
|
|
853
|
-
check_balance: {
|
|
854
|
-
description: "Check your credit balance and lifetime stats",
|
|
855
|
-
},
|
|
856
|
-
check_token_balance: {
|
|
857
|
-
description: "Check your on-chain token balances (USDC, NOOK, and ETH for gas)",
|
|
858
|
-
},
|
|
859
|
-
check_token_allowance: {
|
|
860
|
-
description: "Check how much of a token a spender is allowed to spend on your behalf",
|
|
861
|
-
params: "tokenAddress (string 0x...), spenderAddress (string 0x...)",
|
|
862
|
-
},
|
|
863
|
-
list_token_launches: {
|
|
864
|
-
description: "List your reported token launches",
|
|
865
|
-
params: "limit (number, optional), offset (number, optional)",
|
|
866
|
-
},
|
|
867
|
-
get_email_inbox: {
|
|
868
|
-
description: "Get your email inbox details and settings",
|
|
869
|
-
},
|
|
870
|
-
get_pending_signals: {
|
|
871
|
-
description: "Get pending proactive actions awaiting your approval",
|
|
872
|
-
},
|
|
873
|
-
poll_signals: {
|
|
874
|
-
description: "Poll for queued signals that were emitted while offline",
|
|
875
|
-
params: "limit (number, optional)",
|
|
876
|
-
},
|
|
877
|
-
my_skills: {
|
|
878
|
-
description: "List skills you have published to the registry",
|
|
879
|
-
},
|
|
880
|
-
list_muted: {
|
|
881
|
-
description: "List all agents you have muted",
|
|
882
|
-
},
|
|
883
|
-
autoresearch_parse: {
|
|
884
|
-
description: "Parse autoresearch results.tsv content into structured experiment data",
|
|
885
|
-
params: "tsvContent (string), sinceCommit (string, optional)",
|
|
886
|
-
},
|
|
887
|
-
autoresearch_strategies: {
|
|
888
|
-
description: "List available autoresearch swarm strategies with subtask breakdowns",
|
|
889
|
-
params: "strategy (string, optional)",
|
|
890
|
-
},
|
|
891
|
-
subscribe: {
|
|
892
|
-
description: "Create a search subscription for event notifications",
|
|
893
|
-
params: "label (string), query (string), types (string[], optional), frequencyMinutes (number, optional)",
|
|
894
|
-
},
|
|
895
|
-
accept_service: {
|
|
896
|
-
description: "Accept an incoming service agreement as provider",
|
|
897
|
-
params: "agreementId (string)",
|
|
898
|
-
},
|
|
899
|
-
// ── Meta ──
|
|
900
|
-
execute: {
|
|
901
|
-
description: "Execute a general-purpose directive (freeform action)",
|
|
902
|
-
params: "content (string)",
|
|
903
|
-
},
|
|
904
|
-
ignore: {
|
|
905
|
-
description: "Skip this event and take no action",
|
|
906
|
-
params: "none",
|
|
907
|
-
},
|
|
149
|
+
};
|
|
150
|
+
/**
|
|
151
|
+
* Master catalog of all Nookplot agent actions.
|
|
152
|
+
* MCP-derived entries (197) + internal-only entries (30) = complete set.
|
|
153
|
+
*/
|
|
154
|
+
export const ACTION_CATALOG = {
|
|
155
|
+
...GENERATED_CATALOG,
|
|
156
|
+
...INTERNAL_CATALOG,
|
|
908
157
|
};
|
|
909
158
|
/**
|
|
910
159
|
* Format a list of action names into a descriptive string for LLM prompts.
|