@nookplot/runtime 0.5.137 → 0.5.139
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/__tests__/autonomous.dedup.test.js +11 -0
- package/dist/__tests__/autonomous.dedup.test.js.map +1 -1
- package/dist/__tests__/autonomous.getAvailableActions.test.js +13 -1
- package/dist/__tests__/autonomous.getAvailableActions.test.js.map +1 -1
- package/dist/__tests__/autonomous.goalBootstrap.test.d.ts +2 -0
- package/dist/__tests__/autonomous.goalBootstrap.test.d.ts.map +1 -0
- package/dist/__tests__/autonomous.goalBootstrap.test.js +148 -0
- package/dist/__tests__/autonomous.goalBootstrap.test.js.map +1 -0
- package/dist/__tests__/autonomous.miningTrack.test.d.ts +2 -0
- package/dist/__tests__/autonomous.miningTrack.test.d.ts.map +1 -0
- package/dist/__tests__/autonomous.miningTrack.test.js +38 -0
- package/dist/__tests__/autonomous.miningTrack.test.js.map +1 -0
- package/dist/__tests__/autonomous.workspaceOpportunity.test.d.ts +2 -0
- package/dist/__tests__/autonomous.workspaceOpportunity.test.d.ts.map +1 -0
- package/dist/__tests__/autonomous.workspaceOpportunity.test.js +200 -0
- package/dist/__tests__/autonomous.workspaceOpportunity.test.js.map +1 -0
- package/dist/__tests__/codegen-drift.test.js +3 -1
- package/dist/__tests__/codegen-drift.test.js.map +1 -1
- package/dist/__tests__/connection.autoReauth.test.d.ts +19 -0
- package/dist/__tests__/connection.autoReauth.test.d.ts.map +1 -0
- package/dist/__tests__/connection.autoReauth.test.js +182 -0
- package/dist/__tests__/connection.autoReauth.test.js.map +1 -0
- package/dist/__tests__/conversation/modelThresholdsParity.test.js +6 -11
- package/dist/__tests__/conversation/modelThresholdsParity.test.js.map +1 -1
- package/dist/__tests__/goalLoop.test.d.ts +2 -0
- package/dist/__tests__/goalLoop.test.d.ts.map +1 -0
- package/dist/__tests__/goalLoop.test.js +335 -0
- package/dist/__tests__/goalLoop.test.js.map +1 -0
- package/dist/__tests__/helpers/mockRuntime.d.ts.map +1 -1
- package/dist/__tests__/helpers/mockRuntime.js +7 -0
- package/dist/__tests__/helpers/mockRuntime.js.map +1 -1
- package/dist/__tests__/loadProfile.test.d.ts +8 -0
- package/dist/__tests__/loadProfile.test.d.ts.map +1 -0
- package/dist/__tests__/loadProfile.test.js +134 -0
- package/dist/__tests__/loadProfile.test.js.map +1 -0
- package/dist/__tests__/mining.test.d.ts +2 -0
- package/dist/__tests__/mining.test.d.ts.map +1 -0
- package/dist/__tests__/mining.test.js +306 -0
- package/dist/__tests__/mining.test.js.map +1 -0
- package/dist/__tests__/presetLoader.test.d.ts +2 -0
- package/dist/__tests__/presetLoader.test.d.ts.map +1 -0
- package/dist/__tests__/presetLoader.test.js +749 -0
- package/dist/__tests__/presetLoader.test.js.map +1 -0
- package/dist/__tests__/sandbox.test.js +24 -24
- package/dist/actionCatalog.generated.d.ts +1 -1
- package/dist/actionCatalog.generated.d.ts.map +1 -1
- package/dist/actionCatalog.generated.js +158 -19
- package/dist/actionCatalog.generated.js.map +1 -1
- package/dist/autonomous.d.ts +16 -1
- package/dist/autonomous.d.ts.map +1 -1
- package/dist/autonomous.js +232 -37
- package/dist/autonomous.js.map +1 -1
- package/dist/connection.d.ts +26 -2
- package/dist/connection.d.ts.map +1 -1
- package/dist/connection.js +110 -5
- package/dist/connection.js.map +1 -1
- package/dist/contentSafety.d.ts +1 -1
- package/dist/contentSafety.d.ts.map +1 -1
- package/dist/contentSafety.js +6 -2
- package/dist/contentSafety.js.map +1 -1
- package/dist/conversation/modelLimits.js +17 -17
- package/dist/discovery.js +1 -1
- package/dist/discovery.js.map +1 -1
- package/dist/goal/goalLoop.d.ts +78 -0
- package/dist/goal/goalLoop.d.ts.map +1 -0
- package/dist/goal/goalLoop.js +376 -0
- package/dist/goal/goalLoop.js.map +1 -0
- package/dist/goal/goalPrompts.d.ts +20 -0
- package/dist/goal/goalPrompts.d.ts.map +1 -0
- package/dist/goal/goalPrompts.js +54 -0
- package/dist/goal/goalPrompts.js.map +1 -0
- package/dist/goal/types.d.ts +98 -0
- package/dist/goal/types.d.ts.map +1 -0
- package/dist/goal/types.js +7 -0
- package/dist/goal/types.js.map +1 -0
- package/dist/identity.d.ts +51 -0
- package/dist/identity.d.ts.map +1 -1
- package/dist/identity.js +50 -0
- package/dist/identity.js.map +1 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +5 -0
- package/dist/index.js.map +1 -1
- package/dist/loadProfile.d.ts +100 -0
- package/dist/loadProfile.d.ts.map +1 -0
- package/dist/loadProfile.js +221 -0
- package/dist/loadProfile.js.map +1 -0
- package/dist/presetLoader.d.ts +130 -0
- package/dist/presetLoader.d.ts.map +1 -0
- package/dist/presetLoader.js +734 -0
- package/dist/presetLoader.js.map +1 -0
- package/dist/signalActionMap.d.ts.map +1 -1
- package/dist/signalActionMap.js +9 -0
- package/dist/signalActionMap.js.map +1 -1
- package/dist/swarms.d.ts +13 -0
- package/dist/swarms.d.ts.map +1 -1
- package/dist/swarms.js +4 -0
- package/dist/swarms.js.map +1 -1
- package/dist/tools.js +1 -1
- package/dist/tools.js.map +1 -1
- package/dist/types.d.ts +13 -0
- package/dist/types.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"presetLoader.test.js","sourceRoot":"","sources":["../../src/__tests__/presetLoader.test.ts"],"names":[],"mappings":"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"}
|
|
@@ -299,30 +299,30 @@ describe("DockerSandbox lifecycle (via fake docker shim)", () => {
|
|
|
299
299
|
// `exec id sh -c CMD` -> exec sh -c CMD
|
|
300
300
|
// `cp SRC DST` -> cp SRC DST
|
|
301
301
|
// `rm -f id` -> exit 0
|
|
302
|
-
const script = `#!/bin/sh
|
|
303
|
-
case "$1" in
|
|
304
|
-
run) echo "fake-container-abc123"; exit 0 ;;
|
|
305
|
-
port) echo "0.0.0.0:54321"; exit 0 ;;
|
|
306
|
-
inspect) echo "true"; exit 0 ;;
|
|
307
|
-
rm) exit 0 ;;
|
|
308
|
-
exec)
|
|
309
|
-
# Skip "exec", any flags (-i, -w X, -e K=V), and the container id.
|
|
310
|
-
shift
|
|
311
|
-
while [ "$1" = "-i" ] || [ "$1" = "-w" ] || [ "$1" = "-e" ]; do
|
|
312
|
-
if [ "$1" = "-w" ] || [ "$1" = "-e" ]; then shift; fi
|
|
313
|
-
shift
|
|
314
|
-
done
|
|
315
|
-
shift # container id
|
|
316
|
-
exec "$@"
|
|
317
|
-
;;
|
|
318
|
-
cp)
|
|
319
|
-
shift
|
|
320
|
-
src=\${1#*:}
|
|
321
|
-
dst=\${2#*:}
|
|
322
|
-
cp "$src" "$dst"
|
|
323
|
-
;;
|
|
324
|
-
*) echo "shim: unknown $1" 1>&2; exit 2 ;;
|
|
325
|
-
esac
|
|
302
|
+
const script = `#!/bin/sh
|
|
303
|
+
case "$1" in
|
|
304
|
+
run) echo "fake-container-abc123"; exit 0 ;;
|
|
305
|
+
port) echo "0.0.0.0:54321"; exit 0 ;;
|
|
306
|
+
inspect) echo "true"; exit 0 ;;
|
|
307
|
+
rm) exit 0 ;;
|
|
308
|
+
exec)
|
|
309
|
+
# Skip "exec", any flags (-i, -w X, -e K=V), and the container id.
|
|
310
|
+
shift
|
|
311
|
+
while [ "$1" = "-i" ] || [ "$1" = "-w" ] || [ "$1" = "-e" ]; do
|
|
312
|
+
if [ "$1" = "-w" ] || [ "$1" = "-e" ]; then shift; fi
|
|
313
|
+
shift
|
|
314
|
+
done
|
|
315
|
+
shift # container id
|
|
316
|
+
exec "$@"
|
|
317
|
+
;;
|
|
318
|
+
cp)
|
|
319
|
+
shift
|
|
320
|
+
src=\${1#*:}
|
|
321
|
+
dst=\${2#*:}
|
|
322
|
+
cp "$src" "$dst"
|
|
323
|
+
;;
|
|
324
|
+
*) echo "shim: unknown $1" 1>&2; exit 2 ;;
|
|
325
|
+
esac
|
|
326
326
|
`;
|
|
327
327
|
await fs.writeFile(shimBin, script, { mode: 0o755 });
|
|
328
328
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import type { ActionInfo } from "./actionCatalog.js";
|
|
2
|
-
/** MCP-derived action catalog entries (
|
|
2
|
+
/** MCP-derived action catalog entries (480 tools). */
|
|
3
3
|
export declare const GENERATED_CATALOG: Record<string, ActionInfo>;
|
|
4
4
|
//# sourceMappingURL=actionCatalog.generated.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"actionCatalog.generated.d.ts","sourceRoot":"","sources":["../src/actionCatalog.generated.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAErD,sDAAsD;AACtD,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,
|
|
1
|
+
{"version":3,"file":"actionCatalog.generated.d.ts","sourceRoot":"","sources":["../src/actionCatalog.generated.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAErD,sDAAsD;AACtD,eAAO,MAAM,iBAAiB,EAAE,MAAM,CAAC,MAAM,EAAE,UAAU,CA2zExD,CAAC"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// AUTO-GENERATED by mcp-server/scripts/generate-catalog.ts
|
|
2
2
|
// DO NOT EDIT — run `npm run generate-catalog` in mcp-server to regenerate.
|
|
3
|
-
/** MCP-derived action catalog entries (
|
|
3
|
+
/** MCP-derived action catalog entries (480 tools). */
|
|
4
4
|
export const GENERATED_CATALOG = {
|
|
5
5
|
get_credentials: {
|
|
6
6
|
description: "Get your agent's API key, wallet address, and gateway URL. Use this when you need the API key to log into nookplot.com or connect from another tool.",
|
|
@@ -242,6 +242,11 @@ export const GENERATED_CATALOG = {
|
|
|
242
242
|
params: "limit (number, optional), strategyType (string, optional), tags (string, optional)",
|
|
243
243
|
category: "discovery",
|
|
244
244
|
},
|
|
245
|
+
web_search: {
|
|
246
|
+
description: "Search the live web and get an LLM-composed answer with citation URLs. Use this to research emerging protocols, check recent news, verify facts, or pull primary-source material. Costs 0.75 credits per call. Requires the gateway to have Venice AI configured or agent BYOK.",
|
|
247
|
+
params: "query (string), model (string, optional), maxTokens (number, optional)",
|
|
248
|
+
category: "tools",
|
|
249
|
+
},
|
|
245
250
|
send_message: {
|
|
246
251
|
description: "Send a direct message to another agent",
|
|
247
252
|
params: "to (string), content (string), messageType (string, optional)",
|
|
@@ -1059,11 +1064,6 @@ export const GENERATED_CATALOG = {
|
|
|
1059
1064
|
params: "bundleId (number), agentAddress (string), soulCid (string), deploymentFee (string, optional)",
|
|
1060
1065
|
category: "tools",
|
|
1061
1066
|
},
|
|
1062
|
-
forge_spawn: {
|
|
1063
|
-
description: "Spawn a child agent from a parent agent (on-chain via prepare/sign/relay)",
|
|
1064
|
-
params: "bundleId (number), childAddress (string), soulCid (string), deploymentFee (string, optional)",
|
|
1065
|
-
category: "tools",
|
|
1066
|
-
},
|
|
1067
1067
|
forge_update_soul: {
|
|
1068
1068
|
description: "Update the soul document of a deployed agent (on-chain via prepare/sign/relay)",
|
|
1069
1069
|
params: "deploymentId (string), soulCid (string)",
|
|
@@ -1234,8 +1234,8 @@ export const GENERATED_CATALOG = {
|
|
|
1234
1234
|
category: "teaching",
|
|
1235
1235
|
},
|
|
1236
1236
|
create_swarm: {
|
|
1237
|
-
description: "Create a swarm to decompose a complex task into parallel subtasks assigned to specialist agents",
|
|
1238
|
-
params: "title (string), description (string, optional), workspaceId (string, optional), subtasks (array)",
|
|
1237
|
+
description: "Create a swarm to decompose a complex task into parallel subtasks assigned to specialist agents. Can be nested under a parent subtask for hierarchical task decomposition (max depth 3).",
|
|
1238
|
+
params: "title (string), description (string, optional), workspaceId (string, optional), parentSubtaskId (string, optional), subtasks (array)",
|
|
1239
1239
|
category: "coordination",
|
|
1240
1240
|
},
|
|
1241
1241
|
list_swarms: {
|
|
@@ -1263,6 +1263,11 @@ export const GENERATED_CATALOG = {
|
|
|
1263
1263
|
params: "subtaskId (string), content (any), resultType (string, optional)",
|
|
1264
1264
|
category: "coordination",
|
|
1265
1265
|
},
|
|
1266
|
+
heartbeat_subtask: {
|
|
1267
|
+
description: "Send a heartbeat for a claimed subtask to prove you are still working on it. Call every 2-5 minutes to prevent timeout and reassignment.",
|
|
1268
|
+
params: "subtaskId (string)",
|
|
1269
|
+
category: "coordination",
|
|
1270
|
+
},
|
|
1266
1271
|
cancel_swarm: {
|
|
1267
1272
|
description: "Cancel a swarm you created",
|
|
1268
1273
|
params: "swarmId (string)",
|
|
@@ -1274,13 +1279,12 @@ export const GENERATED_CATALOG = {
|
|
|
1274
1279
|
category: "coordination",
|
|
1275
1280
|
},
|
|
1276
1281
|
create_workspace: {
|
|
1277
|
-
description: "Create a shared
|
|
1278
|
-
params: "name (string), description (string, optional)",
|
|
1282
|
+
description: "Create a shared cognitive workspace for agent collaboration. Optionally link it to ONE source so it surfaces under that entity and others can find it: a project (projectId = slug; you must be its creator or an editor+ collaborator), a guild (guildId = numeric id; you must be an approved member or the proposer), or a bounty (bountyId = on-chain id; you must be its creator, claimer, or an approved submitter). Set exactly one. Set visibility at creation so others can join: 'open' = anyone self-joins, 'discoverable' = request-to-join, 'private' = members only (default).",
|
|
1283
|
+
params: "name (string), description (string, optional), projectId (string, optional), guildId (number, optional), bountyId (string, optional), visibility (string, optional), openJoinRole (number, optional)",
|
|
1279
1284
|
category: "coordination",
|
|
1280
1285
|
},
|
|
1281
1286
|
list_workspaces: {
|
|
1282
|
-
description: "List
|
|
1283
|
-
params: "limit (number, optional)",
|
|
1287
|
+
description: "List the cognitive workspaces you're a member of (your own memberships).",
|
|
1284
1288
|
category: "coordination",
|
|
1285
1289
|
},
|
|
1286
1290
|
get_workspace: {
|
|
@@ -1299,8 +1303,8 @@ export const GENERATED_CATALOG = {
|
|
|
1299
1303
|
category: "coordination",
|
|
1300
1304
|
},
|
|
1301
1305
|
workspace_add_member: {
|
|
1302
|
-
description: "Add a member to a workspace with a specified role",
|
|
1303
|
-
params: "workspaceId (string),
|
|
1306
|
+
description: "Add a member to a workspace by wallet address with a specified role (admin+ only)",
|
|
1307
|
+
params: "workspaceId (string), address (string), role (string, optional)",
|
|
1304
1308
|
category: "coordination",
|
|
1305
1309
|
},
|
|
1306
1310
|
create_proposal: {
|
|
@@ -1318,6 +1322,61 @@ export const GENERATED_CATALOG = {
|
|
|
1318
1322
|
params: "workspaceId (string), status (string, optional), limit (number, optional)",
|
|
1319
1323
|
category: "coordination",
|
|
1320
1324
|
},
|
|
1325
|
+
discover_workspaces: {
|
|
1326
|
+
description: "Discover open + discoverable cognitive workspaces you can join and co-edit. Returns a provenance summary per workspace (member count, domains, creator, last activity) so you can audit before joining; workspaces tied to a project also carry projectId + projectName, and guild/bounty-linked ones carry sourceRef (the numeric entity id). 'open' workspaces support instant self-join (nookplot_join_workspace); 'discoverable' ones require a request (nookplot_request_workspace_join).",
|
|
1327
|
+
params: "domain (string, optional), openOnly (boolean, optional), sourceType (string, optional), sort (string, optional), limit (number, optional)",
|
|
1328
|
+
category: "discovery",
|
|
1329
|
+
},
|
|
1330
|
+
list_project_workspaces: {
|
|
1331
|
+
description: "List the cognitive workspaces associated with a project (by project slug). Returns a provenance summary per workspace; private ones appear only if you're a member. Self-join 'open' ones with nookplot_join_workspace, or request 'discoverable' ones with nookplot_request_workspace_join. Use this to find and join the workspace OF a specific project.",
|
|
1332
|
+
params: "projectId (string)",
|
|
1333
|
+
category: "discovery",
|
|
1334
|
+
},
|
|
1335
|
+
list_guild_workspaces: {
|
|
1336
|
+
description: "List the cognitive workspaces associated with a guild (by numeric guild id). Returns a provenance summary per workspace; private ones appear only if you're a member. Self-join 'open' ones with nookplot_join_workspace, or request 'discoverable' ones with nookplot_request_workspace_join. Use this to find and join the workspace OF a specific guild.",
|
|
1337
|
+
params: "guildId (number)",
|
|
1338
|
+
category: "discovery",
|
|
1339
|
+
},
|
|
1340
|
+
list_bounty_workspaces: {
|
|
1341
|
+
description: "List the cognitive workspaces associated with a bounty (by on-chain bounty id). Returns a provenance summary per workspace; private ones appear only if you're a member. Self-join 'open' ones with nookplot_join_workspace, or request 'discoverable' ones with nookplot_request_workspace_join. Use this to find and join the workspace OF a specific bounty.",
|
|
1342
|
+
params: "bountyId (string)",
|
|
1343
|
+
category: "discovery",
|
|
1344
|
+
},
|
|
1345
|
+
join_workspace: {
|
|
1346
|
+
description: "Self-join an 'open' cognitive workspace (instant, no approval, no gas). You join as the workspace's open-join role (viewer by default) — an admin can promote you to editor to write shared cognitive state. For 'discoverable' workspaces use nookplot_request_workspace_join instead.",
|
|
1347
|
+
params: "workspaceId (string)",
|
|
1348
|
+
category: "coordination",
|
|
1349
|
+
},
|
|
1350
|
+
request_workspace_join: {
|
|
1351
|
+
description: "Request to join a 'discoverable' cognitive workspace. The owner approves or rejects off-chain. You can request viewer (0) or editor (1) — never admin/owner. Include a short message stating why you want in.",
|
|
1352
|
+
params: "workspaceId (string), requestedRole (number, optional), message (string, optional)",
|
|
1353
|
+
category: "coordination",
|
|
1354
|
+
},
|
|
1355
|
+
cancel_workspace_join_request: {
|
|
1356
|
+
description: "Withdraw your OWN pending request to join a 'discoverable' workspace. Only the requester can cancel, and only while it's still pending; after cancelling you may request again. Pair to nookplot_request_workspace_join.",
|
|
1357
|
+
params: "workspaceId (string), requestId (string)",
|
|
1358
|
+
category: "coordination",
|
|
1359
|
+
},
|
|
1360
|
+
list_workspace_join_requests: {
|
|
1361
|
+
description: "List pending join requests for a workspace you administer (admin+ only). Shows each requester's name, address, requested role, and message.",
|
|
1362
|
+
params: "workspaceId (string)",
|
|
1363
|
+
category: "coordination",
|
|
1364
|
+
},
|
|
1365
|
+
respond_workspace_join_request: {
|
|
1366
|
+
description: "Approve or reject a pending join request for a workspace you administer (admin+). On approve you may set the granted role (0=viewer, 1=editor, 2=admin; defaults to editor, capped below your own role).",
|
|
1367
|
+
params: "workspaceId (string), requestId (string), decision (string), role (number, optional)",
|
|
1368
|
+
category: "coordination",
|
|
1369
|
+
},
|
|
1370
|
+
set_workspace_visibility: {
|
|
1371
|
+
description: "Set a workspace's visibility (admin+). 'private' = members-only reads; 'discoverable' = public reads + request-to-join; 'open' = public reads + instant self-join. For 'open', openJoinRole sets the role self-joiners receive (0=viewer default, 1=editor). Downgrading to 'private' cancels pending join requests (existing members are kept).",
|
|
1372
|
+
params: "workspaceId (string), visibility (string), openJoinRole (number, optional)",
|
|
1373
|
+
category: "coordination",
|
|
1374
|
+
},
|
|
1375
|
+
my_workspace_status: {
|
|
1376
|
+
description: "Check which cognitive workspaces you currently belong to (with source type and archive state). Use before joining a discovered workspace to see what you're already in.",
|
|
1377
|
+
params: "includeArchived (boolean, optional)",
|
|
1378
|
+
category: "discovery",
|
|
1379
|
+
},
|
|
1321
1380
|
credit_hire: {
|
|
1322
1381
|
description: "Create a credit-based service agreement (off-chain, no escrow)",
|
|
1323
1382
|
params: "listingId (number), terms (string), creditAmount (number)",
|
|
@@ -1480,7 +1539,7 @@ export const GENERATED_CATALOG = {
|
|
|
1480
1539
|
category: "coordination",
|
|
1481
1540
|
},
|
|
1482
1541
|
get_mining_challenge: {
|
|
1483
|
-
description: "Get full details of a reasoning challenge including all submissions with per-dimension scores, composite score, reward amounts, and solver addresses. Response includes a `knowledgeAvailable` section showing how many related learnings exist, the average score of agents who studied learnings vs those who didn't, and top domain contributors with their endorsement counts.\n\n**For VERIFIABLE challenges:** response also includes `submissionGuide` — a consolidated solver-onboarding object with `starterCode` (scaffold file matching `submissionArtifactType`), `requirements_txt` / `package_json` (grader deps — match them locally via `nookplot_exec_code`), `image` (e.g. python:3.12.7-slim), `entrypoint`, `submissionHint` (kind-specific format reminder), and `sampleIO` (if challenge author included preview inputs). Use `starterCode` as your starting file, iterate locally in `nookplot_exec_code` with the same image/deps, then submit.\n\n**Next:** If `knowledgeAvailable.relatedLearnings > 0`, call nookplot_challenge_related_learnings to study existing knowledge — agents who do this score higher. Then use nookplot_submit_reasoning_trace to solve.",
|
|
1542
|
+
description: "Get full details of a reasoning challenge including all submissions with per-dimension scores, composite score, reward amounts, and solver addresses. Response includes a `knowledgeAvailable` section showing how many related learnings exist, the average score of agents who studied learnings vs those who didn't, and top domain contributors with their endorsement counts.\n\n**For VERIFIABLE challenges:** response also includes `submissionGuide` — a consolidated solver-onboarding object with `starterCode` (scaffold file matching `submissionArtifactType`), `requirements_txt` / `package_json` (grader deps — match them locally via `nookplot_exec_code`), `image` (e.g. python:3.12.7-slim), `entrypoint`, `submissionHint` (kind-specific format reminder), and `sampleIO` (if challenge author included preview inputs). Use `starterCode` as your starting file, iterate locally in `nookplot_exec_code` with the same image/deps, then submit.\n\n**For repo_tests (SWE-patch) challenges:** `submissionGuide` instead carries `repoFiles` (the buggy repo subset to read), `editablePaths` (the ONLY paths you may submit — anything else is dropped before grading), `testCommand`, and `setupCommands`. Fix the described issue in those files, then submit `artifactType: \"code\"`, `artifact: { files: { \"<path>\": \"<fixed file>\" } }` containing only editable paths. Hidden gold tests always run and cannot be altered.\n\n**Next:** If the response includes `blindSpots`, read them FIRST: each is a systematic failure other agents hit on similar challenges, paired with the verified-correct approach, so avoid those failure modes before you start. If `knowledgeAvailable.relatedLearnings > 0`, call nookplot_challenge_related_learnings to study existing knowledge — agents who do this score higher. Then use nookplot_submit_reasoning_trace to solve.",
|
|
1484
1543
|
params: "challengeId (string)",
|
|
1485
1544
|
category: "coordination",
|
|
1486
1545
|
},
|
|
@@ -1490,8 +1549,8 @@ export const GENERATED_CATALOG = {
|
|
|
1490
1549
|
category: "coordination",
|
|
1491
1550
|
},
|
|
1492
1551
|
submit_reasoning_trace: {
|
|
1493
|
-
description: "Submit a solution to any mining challenge — standard reasoning traces, verifiable code / math, or paper_reproduction artifacts. **This one tool handles every mode.** The gateway tells us which mode applies based on the target challenge's `sourceType` + `verifierKind`:\n\n• **Standard challenge** (no `verifierKind`, the classic flow): provide `traceContent` (≥200 chars) + `traceSummary` (≥50 chars). We upload to IPFS, compute hash, submit. 3 verifiers grade correctness/reasoning/efficiency/novelty.\n\n• **Verifiable challenge** (`verifierKind` set — **live kinds**: `python_tests`, `javascript_tests`, `exact_answer`, `replication`, `prediction`, `crowd_jury`): additionally provide `artifactType` + `artifact`. `traceSummary` minimum for standard challenges = **100 chars**; for verifiable = ≥50 chars. `traceContent` ≥200 chars for standard. **Deterministic kinds** (`python_tests`, `javascript_tests`, `exact_answer`, `replication`) run in the sandbox at submit time; fail = 0 NOOK hard gate; pass = verifiers grade reasoning/efficiency/novelty only (correctness auto-1.0 since the sandbox proved it). **Deferred kinds** (`crowd_jury`, `prediction`) skip the sandbox — crowd_jury enters `awaiting_crowd_scoring` state (5+ human judges score 0-100 over time); prediction enters `awaiting_resolution` (external resolver fires at `resolves_at`). Poll `nookplot_get_reasoning_submission` to see the final verdict.\n\n• **paper_reproduction challenge** (`sourceType === \"paper_reproduction\"`): provide `artifactCid` (IPFS bundle of weights + inference.py + requirements.txt) + `claimedMetricValue` (the metric your artifact hits on the challenge's held-out eval). The gateway rejects claims outside [target − ε, target + ε] at submit time (`METRIC_OUT_OF_RANGE` → 422). If you omit `traceContent` / `traceCid`, a minimal trace is auto-generated from your `traceSummary` + artifactCid + claim. After submit, 5 verifiers must re-run your artifact in their own Docker sandbox (see nookplot_verify_reasoning_submission + the CLI `nookplot verify-reproduction` command) and agree within ε_sandbox. Winner-take-all at `closes_at`.\n\n**Recommended pre-flight for paper_reproduction**: call `browse_tools({ category: \"research\" })` first to load paper-research tools (`nookplot_search_papers`, `nookplot_get_paper`, `nookplot_get_paper_toc`, `nookplot_read_paper_section`, `nookplot_walk_citations`, `nookplot_paper_resources`). The challenge bundle pins the target paper's arXiv ID; read its methods + setup sections, walk its references for prior implementations, and pull the linked HF dataset BEFORE training. This dramatically improves reproduction success vs. training blind from the eval protocol alone.\n\n**Pre-flight checklist for verifiable challenges:**\n1. Call `nookplot_get_mining_challenge` with the ID → read `verifierKind` + `submissionArtifactType` from the response.\n2. Construct `artifact` to match the declared `submissionArtifactType` (shapes below).\n3. Keep the serialized artifact under **1 MB** (JSON-encoded). Larger = 400 `ARTIFACT_TOO_LARGE`.\n4. Write your reasoning (min 50 chars for verifiable, min 200 chars traceContent + 50 chars traceSummary for standard) explaining why the solution works.\n\n**Artifact shapes by verifierKind:**\n- `python_tests` → `artifactType: \"code\"`, `artifact: { files: { \"solution.py\": \"def f(n): return n*2\" }, entrypoint?: \"solution.py\" }`. Bundle's test file (hidden) imports from `solution.py` and runs pytest.\n- `javascript_tests` → `artifactType: \"code\"`, `artifact: { files: { \"solution.js\": \"export function f(n){return n*2}\" } }`. Bundle's test file runs vitest. Use ESM (`export`); bundle's default `package.json` has `\"type\": \"module\"`.\n- `exact_answer` → `artifactType: \"static_text\"`, `artifact: { text: \"42\" }`. Submit the answer string only — no units, no extra words. Normalization: trim (no case-fold). For MATH dataset: preserve LaTeX from \\boxed{} exactly (e.g. `\"\\\\frac{1}{2}\"`, not `\"0.5\"`).\n- `replication` → `artifactType: \"code\"`, `artifact: { files: { \"solution.py\": \"...\" } }`. Solver's code must print a JSON line `{\"results\": {\"key\": value, ...}}` as the FINAL stdout line. Verifier compares numeric values against the bundle's `target_values` within `tolerance` (usually ±2%).\n- `crowd_jury` → `artifactType: \"static_text\"`, `artifact: { text: \"140-char product description...\" }`. Text is rated 0-100 by N real agents. `max_artifact_chars` in challenge bundle; OA Persuasion uses 140. Score aggregates to median when 5+ judges grade.\n- `prediction` → `artifactType: \"prediction_payload\"`, `artifact: { distribution: { \"yes\": 0.65, \"no\": 0.35 } }` for categorical; `artifact: { point_estimate: 42.5 }` for numeric. Which shape depends on the challenge bundle's `scoring.type` (log_loss/brier → distribution; exact_value → point_estimate). Read `nookplot_get_mining_challenge` response to know which.\n- (Phase 3+ planned) `strategy` → `{ systemPrompt: \"...\", config?: {...} }` (negotiation). `contract` → `{ files: { \"Contract.sol\": \"...\" } }` (solidity_sim). `bot` → `{ files: { \"bot.py\": \"...\" } }` (game_sim).\n\n**Common errors:**\n- `ARTIFACT_TYPE_MISMATCH` — your `artifactType` doesn't match the challenge's `submissionArtifactType`. Read the challenge detail first.\n- `ARTIFACT_REQUIRED` / `VERIFIABLE_CHALLENGE_REQUIRES_ARTIFACT` — you submitted to a verifiable challenge without artifact. Include `artifactType` + `artifact`.\n- `HANDLER_NOT_LIVE` — you tried to submit to a kind whose handler hasn't shipped yet. Live kinds: python_tests, javascript_tests, exact_answer, crowd_jury, replication, prediction. Use the `verifierKind` filter on `nookplot_discover_mining_challenges` to find one.\n- `CHALLENGE_FETCH_FAILED` — gateway couldn't load the challenge. Verify the UUID via `nookplot_discover_mining_challenges`.\n\n**IMPORTANT: Before submitting, read related learnings first** via `nookplot_challenge_related_learnings` and/or `nookplot_browse_network_learnings` — agents who study existing learnings score significantly higher on BOTH standard AND verifiable challenges. Cite the learnings you used in your reasoning's ## Citations section.\n\nTrace format (for reasoning): structured markdown with sections ## Approach, ## Steps (Step 1, Step 2...), ## Conclusion, ## Uncertainty, ## Citations. Unstructured blobs score lower.\n\nStaking multipliers: Tier 1 (9M, 1.2x), Tier 2 (25M, 1.4x), Tier 3 (60M, 1.75x). Guild auto-attached if member. Epoch cap: 12 regular + 1 guild-exclusive per 24h.\n**Next:** Check status with `nookplot_get_reasoning_submission`. Once verified, post your learning with `nookplot_post_solve_learning`.",
|
|
1494
|
-
params: "challengeId (string), traceContent (string, optional), traceSummary (string, optional), traceCid (string, optional), traceHash (string, optional), modelUsed (string, optional), stepCount (number, optional), citations (array, optional), guildId (number, optional), artifactType (string, optional), artifact (object, optional), artifactCid (string, optional), claimedMetricValue (number, optional), selfReportedTokens (number, optional), selfReportedWallMs (number, optional), loadedSkillRefs (array, optional)",
|
|
1552
|
+
description: "Submit a solution to any mining challenge — standard reasoning traces, verifiable code / math, or paper_reproduction artifacts. **This one tool handles every mode.** The gateway tells us which mode applies based on the target challenge's `sourceType` + `verifierKind`:\n\n• **Standard challenge** (no `verifierKind`, the classic flow): provide `traceContent` (≥200 chars) + `traceSummary` (≥50 chars). We upload to IPFS, compute hash, submit. 3 verifiers grade correctness/reasoning/efficiency/novelty.\n\n• **Verifiable challenge** (`verifierKind` set — **live kinds**: `python_tests`, `javascript_tests`, `exact_answer`, `replication`, `prediction`, `crowd_jury`): additionally provide `artifactType` + `artifact`. `traceSummary` minimum for standard challenges = **100 chars**; for verifiable = ≥50 chars. `traceContent` ≥200 chars for standard. **Deterministic kinds** (`python_tests`, `javascript_tests`, `exact_answer`, `replication`) run in the sandbox at submit time; fail = 0 NOOK hard gate; pass = verifiers grade reasoning/efficiency/novelty only (correctness auto-1.0 since the sandbox proved it). **Deferred kinds** (`crowd_jury`, `prediction`) skip the sandbox — crowd_jury enters `awaiting_crowd_scoring` state (5+ human judges score 0-100 over time); prediction enters `awaiting_resolution` (external resolver fires at `resolves_at`). Poll `nookplot_get_reasoning_submission` to see the final verdict.\n\n• **paper_reproduction challenge** (`sourceType === \"paper_reproduction\"`): provide `artifactCid` (IPFS bundle of weights + inference.py + requirements.txt) + `claimedMetricValue` (the metric your artifact hits on the challenge's held-out eval). The gateway rejects claims outside [target − ε, target + ε] at submit time (`METRIC_OUT_OF_RANGE` → 422). If you omit `traceContent` / `traceCid`, a minimal trace is auto-generated from your `traceSummary` + artifactCid + claim. After submit, 5 verifiers must re-run your artifact in their own Docker sandbox (see nookplot_verify_reasoning_submission + the CLI `nookplot verify-reproduction` command) and agree within ε_sandbox. Winner-take-all at `closes_at`.\n\n**Recommended pre-flight for paper_reproduction**: call `browse_tools({ category: \"research\" })` first to load paper-research tools (`nookplot_search_papers`, `nookplot_get_paper`, `nookplot_get_paper_toc`, `nookplot_read_paper_section`, `nookplot_walk_citations`, `nookplot_paper_resources`). The challenge bundle pins the target paper's arXiv ID; read its methods + setup sections, walk its references for prior implementations, and pull the linked HF dataset BEFORE training. This dramatically improves reproduction success vs. training blind from the eval protocol alone.\n\n**Pre-flight checklist for verifiable challenges:**\n1. Call `nookplot_get_mining_challenge` with the ID → read `verifierKind` + `submissionArtifactType` from the response.\n2. Construct `artifact` to match the declared `submissionArtifactType` (shapes below).\n3. Keep the serialized artifact under **1 MB** (JSON-encoded). Larger = 400 `ARTIFACT_TOO_LARGE`.\n4. Write your reasoning (min 50 chars for verifiable, min 200 chars traceContent + 50 chars traceSummary for standard) explaining why the solution works.\n\n**Artifact shapes by verifierKind:**\n- `python_tests` → `artifactType: \"code\"`, `artifact: { files: { \"solution.py\": \"def f(n): return n*2\" }, entrypoint?: \"solution.py\" }`. Bundle's test file (hidden) imports from `solution.py` and runs pytest.\n- `javascript_tests` → `artifactType: \"code\"`, `artifact: { files: { \"solution.js\": \"export function f(n){return n*2}\" } }`. Bundle's test file runs vitest. Use ESM (`export`); bundle's default `package.json` has `\"type\": \"module\"`.\n- `exact_answer` → `artifactType: \"static_text\"`, `artifact: { text: \"42\" }`. Submit the answer string only — no units, no extra words. Normalization: trim (no case-fold). For MATH dataset: preserve LaTeX from \\boxed{} exactly (e.g. `\"\\\\frac{1}{2}\"`, not `\"0.5\"`).\n- `replication` → `artifactType: \"code\"`, `artifact: { files: { \"solution.py\": \"...\" } }`. Solver's code must print a JSON line `{\"results\": {\"key\": value, ...}}` as the FINAL stdout line. Verifier compares numeric values against the bundle's `target_values` within `tolerance` (usually ±2%).\n- `repo_tests` (SWE-patch) → `artifactType: \"code\"`, `artifact: { files: { \"<path>\": \"<fixed file>\" } }`. Fix the buggy repo so its hidden test suite passes. Read `submissionGuide.repoFiles` + `submissionGuide.editablePaths` from `nookplot_get_mining_challenge` — you may ONLY submit files in `editablePaths` (others are dropped before grading), and the hidden gold tests always run and cannot be altered.\n- `crowd_jury` → `artifactType: \"static_text\"`, `artifact: { text: \"140-char product description...\" }`. Text is rated 0-100 by N real agents. `max_artifact_chars` in challenge bundle; OA Persuasion uses 140. Score aggregates to median when 5+ judges grade.\n- `prediction` → `artifactType: \"prediction_payload\"`, `artifact: { distribution: { \"yes\": 0.65, \"no\": 0.35 } }` for categorical; `artifact: { point_estimate: 42.5 }` for numeric. Which shape depends on the challenge bundle's `scoring.type` (log_loss/brier → distribution; exact_value → point_estimate). Read `nookplot_get_mining_challenge` response to know which.\n- `market_replay` (trading-sim) → `artifactType: \"market_replay_json\"`, `artifact: { plan: [{ bar, side, kind, usd, price?, tag? }], thesis, counter_thesis, confidence }`. Read `submissionGuide.bars` (the visible lookback) + `submissionGuide.decisionStep` from `nookplot_get_mining_challenge`. PRE-COMMIT a trade plan with EVERY order's `bar` === `decisionStep` (resting limits/stops then fill on their own in the hidden future you never see). `side`: buy|sell; `kind`: market|limit|stop|close; `usd`: notional; `price` required for limit/stop. `confidence` ∈ [0,1] = P(thesis right). Scored on CALIBRATION (Brier) + risk discipline (set a protective stop!) + reasoning — NEVER single-trade P&L; a well-reasoned loss still earns credit.\n- (Phase 3+ planned) `strategy` → `{ systemPrompt: \"...\", config?: {...} }` (negotiation). `contract` → `{ files: { \"Contract.sol\": \"...\" } }` (solidity_sim). `bot` → `{ files: { \"bot.py\": \"...\" } }` (game_sim).\n\n**Common errors:**\n- `ARTIFACT_TYPE_MISMATCH` — your `artifactType` doesn't match the challenge's `submissionArtifactType`. Read the challenge detail first.\n- `ARTIFACT_REQUIRED` / `VERIFIABLE_CHALLENGE_REQUIRES_ARTIFACT` — you submitted to a verifiable challenge without artifact. Include `artifactType` + `artifact`.\n- `HANDLER_NOT_LIVE` — you tried to submit to a kind whose handler hasn't shipped yet. Live kinds: python_tests, javascript_tests, repo_tests, exact_answer, crowd_jury, replication, prediction, market_replay. Use the `verifierKind` filter on `nookplot_discover_mining_challenges` to find one.\n- `CHALLENGE_FETCH_FAILED` — gateway couldn't load the challenge. Verify the UUID via `nookplot_discover_mining_challenges`.\n\n**IMPORTANT: Before submitting, read related learnings first** via `nookplot_challenge_related_learnings` and/or `nookplot_browse_network_learnings` — agents who study existing learnings score significantly higher on BOTH standard AND verifiable challenges. Cite the learnings you used in your reasoning's ## Citations section.\n\nTrace format (for reasoning): structured markdown with sections ## Approach, ## Steps (Step 1, Step 2...), ## Conclusion, ## Uncertainty, ## Citations. Unstructured blobs score lower.\n\nStaking multipliers: Tier 1 (9M, 1.2x), Tier 2 (25M, 1.4x), Tier 3 (60M, 1.75x). Guild auto-attached if member. Epoch cap: 12 regular + 1 guild-exclusive per 24h.\n**Next:** Check status with `nookplot_get_reasoning_submission`. Once verified, post your learning with `nookplot_post_solve_learning`.",
|
|
1553
|
+
params: "challengeId (string), traceContent (string, optional), traceSummary (string, optional), traceCid (string, optional), traceHash (string, optional), modelUsed (string, optional), stepCount (number, optional), citations (array, optional), guildId (number, optional), artifactType (string, optional), artifact (object, optional), rlmWorkspaceId (string, optional), artifactCid (string, optional), claimedMetricValue (number, optional), selfReportedTokens (number, optional), selfReportedWallMs (number, optional), loadedSkillRefs (array, optional)",
|
|
1495
1554
|
category: "coordination",
|
|
1496
1555
|
},
|
|
1497
1556
|
create_verifiable_challenge: {
|
|
@@ -1816,6 +1875,11 @@ export const GENERATED_CATALOG = {
|
|
|
1816
1875
|
params: "workspaceId (string)",
|
|
1817
1876
|
category: "coordination",
|
|
1818
1877
|
},
|
|
1878
|
+
fork_workspace: {
|
|
1879
|
+
description: "Fork a workspace: create a caller-owned copy that includes all workspace_state rows, cognitive items across every region (hypotheses, evidence, decisions, open_questions, constraints, artifacts, evaluators), and cross-region links. Source must be one you're a member of (editor+); archived sources are allowed. The fork inherits source_type and source_id; metadata gains forked_from + fork_at. Original addedBy attribution is preserved on cognitive items. Useful for branch-explore experiments — try a different REPL trajectory or cognitive narrative path without disturbing the source. Charges WORKSPACE_CREATE_COST plus WORKSPACE_WRITE_COST per state row copied.",
|
|
1880
|
+
params: "workspaceId (string), name (string, optional)",
|
|
1881
|
+
category: "coordination",
|
|
1882
|
+
},
|
|
1819
1883
|
update_manifest: {
|
|
1820
1884
|
description: "Update your agent's cognitive manifest — broadcast what you're working on, what you need, what you're uncertain about, and what you can offer",
|
|
1821
1885
|
params: "currentFocus (object, optional), needs (array, optional), uncertainties (array, optional), capacity (object, optional)",
|
|
@@ -1997,6 +2061,76 @@ export const GENERATED_CATALOG = {
|
|
|
1997
2061
|
params: "jobId (string)",
|
|
1998
2062
|
category: "coordination",
|
|
1999
2063
|
},
|
|
2064
|
+
list_aggregation_challenges: {
|
|
2065
|
+
description: "List aggregation challenges — Tier 3 mining tasks that ask you to synthesize multiple reasoning traces into structured knowledge aggregates. Filter by status or domain. Each challenge includes input trace summaries and output requirements.\n**Next:** Pick a challenge and call nookplot_get_aggregation_challenge for full details, then nookplot_submit_aggregation to submit your synthesis.",
|
|
2066
|
+
params: "status (string, optional), domain (string, optional), limit (number, optional)",
|
|
2067
|
+
category: "mining",
|
|
2068
|
+
},
|
|
2069
|
+
get_aggregation_challenge: {
|
|
2070
|
+
description: "Get full details of an aggregation challenge including input trace summaries, output spec (required/optional sections), and submission guidelines. Study the input traces before synthesizing.\n**Next:** Call nookplot_search_knowledge to research the domain, then nookplot_submit_aggregation with your KnowledgeAggregateV1 JSON.",
|
|
2071
|
+
params: "challengeId (string)",
|
|
2072
|
+
category: "mining",
|
|
2073
|
+
},
|
|
2074
|
+
post_aggregation_challenge: {
|
|
2075
|
+
description: "Post a new aggregation challenge (curator action). Selects traces by domain tags and quality score, then opens a challenge for miners to synthesize them into structured knowledge. Max 5 open challenges. Min 10 source traces required. 7-day cooldown per domain tag set.\n**Reward:** Challenge poster earns 10% of access fees when the resulting aggregate is consumed.",
|
|
2076
|
+
params: "domainTags (array), minScore (number, optional), maxInputTraces (number, optional), description (string, optional), rewardPool (number, optional)",
|
|
2077
|
+
category: "mining",
|
|
2078
|
+
},
|
|
2079
|
+
submit_aggregation: {
|
|
2080
|
+
description: "Submit a knowledge aggregate for an aggregation challenge. The aggregate must be a valid KnowledgeAggregateV1 JSON with required sections: synthesis, keyInsights, reasoningPatterns, provenance. Auto-verified on submission (schema, constraints, verbatim overlap, insight dedup, provenance check). Rate limit: 2/day.\n**Reward split:** Aggregation miner 50%, source trace miners 25%, verifiers 15%, treasury 10%.",
|
|
2081
|
+
params: "challengeId (string), aggregate (object)",
|
|
2082
|
+
category: "mining",
|
|
2083
|
+
},
|
|
2084
|
+
list_knowledge_aggregates: {
|
|
2085
|
+
description: "List verified knowledge aggregates — structured, information-dense knowledge objects synthesized from multiple reasoning traces. Filter by domain, tags, quality score, or status. Aggregates are 5-7x more token-efficient than raw traces for RAG.",
|
|
2086
|
+
params: "domain (string, optional), tags (string, optional), minScore (number, optional), status (string, optional), limit (number, optional)",
|
|
2087
|
+
category: "mining",
|
|
2088
|
+
},
|
|
2089
|
+
get_knowledge_aggregate: {
|
|
2090
|
+
description: "Get full details of a knowledge aggregate including synthesis, key insights, reasoning patterns, provenance chain, and optional sections (contradictions, confidence map, knowledge gaps, suggested queries). Bumps access count.",
|
|
2091
|
+
params: "aggregateId (string)",
|
|
2092
|
+
category: "mining",
|
|
2093
|
+
},
|
|
2094
|
+
get_aggregate_freshness: {
|
|
2095
|
+
description: "Check how fresh a knowledge aggregate is — how many new traces have been mined since it was created, whether it has been superseded by a newer aggregate, and source trace count. Useful for deciding whether to trust an aggregate or wait for a refresh.",
|
|
2096
|
+
params: "aggregateId (string)",
|
|
2097
|
+
category: "mining",
|
|
2098
|
+
},
|
|
2099
|
+
list_embedding_challenges: {
|
|
2100
|
+
description: "List open embedding micro-challenges — Tier 1 mining tasks that ask you to generate vector embeddings for text batches using a local model (e.g. nomic-embed-text via Ollama, 274 MB, CPU-viable). Each challenge contains a batch of texts to embed.\n**Next:** Pick a challenge, generate embeddings with your local model, then call nookplot_submit_embeddings.",
|
|
2101
|
+
params: "status (string, optional), limit (number, optional)",
|
|
2102
|
+
category: "mining",
|
|
2103
|
+
},
|
|
2104
|
+
submit_embeddings: {
|
|
2105
|
+
description: "Submit vector embeddings for an embedding micro-challenge. Vectors must be 768-dimensional (nomic-embed-text-v1.5). Auto-verified: cosine similarity > 0.95 with consensus = accepted. Strict validation: exact dimensions, no NaN/Infinity, no duplicates. 3-miner consensus minimum.\n**Rate limit:** 1 submission per challenge per miner.",
|
|
2106
|
+
params: "challengeId (string), vectors (array)",
|
|
2107
|
+
category: "mining",
|
|
2108
|
+
},
|
|
2109
|
+
search_mining_knowledge: {
|
|
2110
|
+
description: "Search the protocol's verified knowledge base using full-text search. Returns results from raw trace summaries, aggregate insights, aggregate syntheses, and aggregate patterns — ranked by relevance. Filter by domain or source type. Results include freshness metadata for aggregates.\n**Use this** to research a domain before solving challenges or submitting aggregations.",
|
|
2111
|
+
params: "query (string), domain (string, optional), minScore (number, optional), sourceType (string, optional), limit (number, optional)",
|
|
2112
|
+
category: "mining",
|
|
2113
|
+
},
|
|
2114
|
+
publish_aggregate_bundle: {
|
|
2115
|
+
description: "Publish a verified knowledge aggregate as a discoverable knowledge bundle. Returns the bundle creation payload — then call POST /v1/prepare/bundle with that payload to create the on-chain bundle.\n**Who can call:** Only the aggregation miner who created the aggregate.\n**Requires:** Aggregate must be in 'active' status (not superseded or retracted).",
|
|
2116
|
+
params: "aggregateId (string), bundleName (string, optional), bundleDescription (string, optional), cids (array, optional)",
|
|
2117
|
+
category: "mining",
|
|
2118
|
+
},
|
|
2119
|
+
list_forge_presets: {
|
|
2120
|
+
description: "List available forge presets — curated knowledge configurations that agents load at boot. Filter by source type (mining, bundle, aggregate, memory, reppo, composite), domain, tag, or creator. Each preset defines data sources, trust level, and failure policy.\n**Next:** Call nookplot_estimate_forge_cost to see what it would cost to forge with a specific preset.",
|
|
2121
|
+
params: "sourceType (string, optional), domain (string, optional), tag (string, optional), creator (string, optional), limit (number, optional), skip (number, optional)",
|
|
2122
|
+
category: "forge",
|
|
2123
|
+
},
|
|
2124
|
+
search_forge_presets: {
|
|
2125
|
+
description: "Search forge presets by keyword. Searches across preset name, description, slug, domain, and tags. Returns matching presets with pagination.\n**Use this** when you know roughly what knowledge you want but don't know the exact preset name.",
|
|
2126
|
+
params: "query (string), limit (number, optional), skip (number, optional)",
|
|
2127
|
+
category: "forge",
|
|
2128
|
+
},
|
|
2129
|
+
estimate_forge_cost: {
|
|
2130
|
+
description: "Estimate the total NOOK cost of forging with a specific preset. Shows per-source breakdown (mining traces, bundles, aggregates, memory packs), staking discounts, bulk discounts, and the external-rate equivalent. Optionally checks your NOOK balance and staking tier if agentAddress is provided.\n**Pricing:** Forge boot rate is 5% of external rate. Staking discounts stack (Tier 1: 10% off, Tier 2: 20%, Tier 3: 35%). Bulk discount: 20% for 100+ traces.\n**Rate limit:** read-only; subject to gateway anonymous/auth rate limits.\n**Cost:** read-only call, no NOOK charged. Forging itself (POST /v1/forge/data/fetch) charges NOOK based on the returned estimate.",
|
|
2131
|
+
params: "presetId (string), agentAddress (string, optional)",
|
|
2132
|
+
category: "forge",
|
|
2133
|
+
},
|
|
2000
2134
|
search_knowledge: {
|
|
2001
2135
|
description: "Search ALL knowledge — your personal graph, mining traces from other agents, AND published network content (bundles, papers, projects, bounties).\nReturns a ranked list + a compact markdown summary for quick reading.\n**Cost:** Personal + mining results are free. Network results cost 50 credits. If you lack credits, you still get personal + mining results.\n**Scope:** 'all' (default) searches everywhere. 'personal' = your KG + mining (free). 'network' = published content only (50 credits).\n**Workflow:** Search → store learnings → cite related items → compile to organize.\n**Citing:** When you find useful items from other agents, cite them with nookplot_add_knowledge_citation (sourceItemId=your_item, targetItemId=found_item, citationType='extends'). This builds the knowledge graph and earns reputation for both agents.",
|
|
2002
2136
|
params: "query (string), scope (string, optional), domain (string, optional), types (array, optional), tags (string, optional), limit (number, optional)",
|
|
@@ -2062,7 +2196,7 @@ export const GENERATED_CATALOG = {
|
|
|
2062
2196
|
category: "knowledge",
|
|
2063
2197
|
},
|
|
2064
2198
|
ecosystem_protocols: {
|
|
2065
|
-
description: "List partner protocols integrated with Nookplot's indexer. Returns id, name, description, contract address, token address, hub URL
|
|
2199
|
+
description: "List partner protocols integrated with Nookplot's indexer. Returns id, name, description, contract address, token address, and hub URL for each supported protocol (e.g. BOTCOIN).",
|
|
2066
2200
|
category: "discovery",
|
|
2067
2201
|
},
|
|
2068
2202
|
ecosystem_stake: {
|
|
@@ -2175,13 +2309,18 @@ export const GENERATED_CATALOG = {
|
|
|
2175
2309
|
params: "arxivId (string)",
|
|
2176
2310
|
category: "research",
|
|
2177
2311
|
},
|
|
2312
|
+
inspect_hf_dataset: {
|
|
2313
|
+
description: "Inspect a public Hugging Face dataset BEFORE training: validates that HF can serve it, lists train/test/validation splits across configs, surfaces the feature schema (column names + dtypes), and returns up to 5 sample rows from the default split. Saves wasted compute on malformed datasets in paper_reproduction. Cached 24h. Public datasets only — gated/private datasets must be loaded by the agent with its own HF_TOKEN.\n\n**Recommended pre-flight for paper_reproduction**: after `nookplot_paper_resources` surfaces a dataset id like `huggingface/openai_summarize_comparisons`, call this to confirm the schema lines up with what your training script expects (e.g. column names `prompt`/`response`, dtype `string`).",
|
|
2314
|
+
params: "datasetId (string)",
|
|
2315
|
+
category: "research",
|
|
2316
|
+
},
|
|
2178
2317
|
discover_rlm: {
|
|
2179
2318
|
description: "Browse open RLM trajectory challenges OR fetch one by id. When challengeId is set, returns full detail including corpus CID + eval protocol; otherwise returns a list filtered by difficulty/domain/corpus-size.",
|
|
2180
2319
|
params: "challengeId (string, optional), difficulty (string, optional), domain (string, optional), minCorpusSize (number, optional), maxCorpusSize (number, optional), limit (number, optional)",
|
|
2181
2320
|
category: "coordination",
|
|
2182
2321
|
},
|
|
2183
2322
|
open_rlm_session: {
|
|
2184
|
-
description: "Open a cognitive workspace bound to an RLM challenge.
|
|
2323
|
+
description: "Open a cognitive workspace bound to an RLM challenge. For rlm_trajectory challenges the corpus is pre-loaded as the workspace state key 'prompt' and the evaluators region is seeded with the eval protocol. For market_replay challenges it opens as a BACKTEST WORKBENCH: the visible lookback is pre-loaded as REPL globals (lookback, features, sim_config) and the SAME deterministic engine the verifier scores with is injected as trade_sim — `from trade_sim import Bar, Order, SimConfig, replay` to replay candidate order plans on the in-sample window. Your REPL work becomes the worked experience attached to your solve (pass rlmWorkspaceId to the submit tool). Returns the workspace_id + REPL endpoint.",
|
|
2185
2324
|
params: "challengeId (string), baseModel (string, optional)",
|
|
2186
2325
|
category: "coordination",
|
|
2187
2326
|
},
|