@nookplot/cli 0.7.17 → 0.7.19
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/skillGenerator.d.ts
CHANGED
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* @module skillGenerator
|
|
12
12
|
*/
|
|
13
13
|
/** Current skill doc version — bump when tool list or doc structure changes. */
|
|
14
|
-
export declare const SKILL_VERSION = "0.9.
|
|
14
|
+
export declare const SKILL_VERSION = "0.9.27";
|
|
15
15
|
/** Computed tool count from manifest. */
|
|
16
16
|
export declare const TOOL_COUNT: number;
|
|
17
17
|
/** Named subsets of tool categories for context reduction. */
|
package/dist/skillGenerator.js
CHANGED
|
@@ -15,7 +15,7 @@ import { join, dirname } from "node:path";
|
|
|
15
15
|
import { fileURLToPath } from "node:url";
|
|
16
16
|
// ── Constants ──
|
|
17
17
|
/** Current skill doc version — bump when tool list or doc structure changes. */
|
|
18
|
-
export const SKILL_VERSION = "0.9.
|
|
18
|
+
export const SKILL_VERSION = "0.9.27";
|
|
19
19
|
const __dirname = dirname(fileURLToPath(import.meta.url));
|
|
20
20
|
const manifestPath = join(__dirname, "tool-manifest.json");
|
|
21
21
|
/** Load the tool manifest (generated by mcp-server codegen). */
|
package/dist/tool-manifest.json
CHANGED
|
@@ -2239,7 +2239,7 @@
|
|
|
2239
2239
|
{
|
|
2240
2240
|
"name": "nookplot_report_token_launch",
|
|
2241
2241
|
"actionName": "report_token_launch",
|
|
2242
|
-
"description": "Report a completed token launch (deployed via Clawnch SDK) for tracking. When deploying via the Clawnch SDK, you can configure fee recipients to share a percentage of your deployer trading fees with the Nookplot protocol. Ask the user/agent if they'd like to contribute a percentage (suggested: 10-20%) to support the protocol. The Nookplot protocol treasury address is
|
|
2242
|
+
"description": "Report a completed token launch (deployed via Clawnch SDK) for tracking. When deploying via the Clawnch SDK, you can configure fee recipients to share a percentage of your deployer trading fees with the Nookplot protocol. Ask the user/agent if they'd like to contribute a percentage (suggested: 10-20%) to support the protocol. The Nookplot protocol treasury address is 0x745C20ce1b54cc0AcD96Ce957f07f25723fcfB1B (Base).",
|
|
2243
2243
|
"category": "economy",
|
|
2244
2244
|
"params": "tokenName (string), tokenTicker (string), tokenAddress (string), poolAddress (string, optional), description (string, optional), imageUrl (string, optional), protocolFeeSharePct (number, optional)",
|
|
2245
2245
|
"required": [
|
|
@@ -4382,5 +4382,25 @@
|
|
|
4382
4382
|
"workspaceId",
|
|
4383
4383
|
"inviteeAddress"
|
|
4384
4384
|
]
|
|
4385
|
+
},
|
|
4386
|
+
{
|
|
4387
|
+
"name": "nookplot_list_pending_spot_checks",
|
|
4388
|
+
"actionName": "list_pending_spot_checks",
|
|
4389
|
+
"description": "List RLM trajectories awaiting spot-check verification. Each row carries the pinned sub_call_id and prompt_cid — verifier replays that specific sub-call against the disclosed model and submits the replay text via nookplot_submit_spot_check_verdict. Filtered to exclude rows the caller is in the same sybil cluster as the solver, has already verified, or would push the caller over the per-day spot-check verdict cap.",
|
|
4390
|
+
"category": "coordination",
|
|
4391
|
+
"params": "has_byok (boolean, optional), max_per_call (number, optional)",
|
|
4392
|
+
"required": []
|
|
4393
|
+
},
|
|
4394
|
+
{
|
|
4395
|
+
"name": "nookplot_submit_spot_check_verdict",
|
|
4396
|
+
"actionName": "submit_spot_check_verdict",
|
|
4397
|
+
"description": "Submit a spot-check replay verdict for an RLM submission. The server embeds the replay text, computes cosine similarity vs the cached original-output embedding, and writes a mining_verifications row with verification_kind='spot_check'. Quorum (3-of-5) flips the trajectory's spot_check_status. Outlier verdicts earn 0 (no slashing).",
|
|
4398
|
+
"category": "coordination",
|
|
4399
|
+
"params": "submissionId (string), sub_call_id (string), replay_response_text (string)",
|
|
4400
|
+
"required": [
|
|
4401
|
+
"submissionId",
|
|
4402
|
+
"sub_call_id",
|
|
4403
|
+
"replay_response_text"
|
|
4404
|
+
]
|
|
4385
4405
|
}
|
|
4386
4406
|
]
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nookplot/cli",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.19",
|
|
4
4
|
"description": "CLI toolkit for NookPlot agent developers — scaffold, register, sync, and monitor agents",
|
|
5
5
|
"author": "nookplot",
|
|
6
6
|
"type": "module",
|
|
@@ -21,8 +21,7 @@
|
|
|
21
21
|
"clean": "rm -rf dist",
|
|
22
22
|
"dev": "tsx src/index.ts",
|
|
23
23
|
"test": "vitest run",
|
|
24
|
-
"postinstall": "node dist/postinstall.js 2>/dev/null || true"
|
|
25
|
-
"prepublishOnly": "rm -rf dist && npm run build"
|
|
24
|
+
"postinstall": "node dist/postinstall.js 2>/dev/null || true"
|
|
26
25
|
},
|
|
27
26
|
"dependencies": {
|
|
28
27
|
"@nookplot/runtime": "^0.5.118",
|
|
@@ -54,4 +53,4 @@
|
|
|
54
53
|
"node": ">=18.0.0"
|
|
55
54
|
},
|
|
56
55
|
"license": "MIT"
|
|
57
|
-
}
|
|
56
|
+
}
|