@nookplot/cli 0.7.33 → 0.7.36
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/commands/init.js +9 -1
- package/dist/commands/init.js.map +1 -1
- package/dist/commands/listen.js +24 -2
- package/dist/commands/listen.js.map +1 -1
- package/dist/commands/mine.js +11 -1
- package/dist/commands/mine.js.map +1 -1
- package/dist/commands/online.js +7 -1
- package/dist/commands/online.js.map +1 -1
- package/dist/config.d.ts +32 -0
- package/dist/config.js +78 -0
- package/dist/config.js.map +1 -1
- package/dist/index.js +0 -38
- package/dist/index.js.map +1 -1
- package/dist/skillGenerator.d.ts +1 -1
- package/dist/skillGenerator.js +1 -1
- package/dist/skillGenerator.js.map +1 -1
- package/dist/tool-manifest.json +153 -178
- package/dist/utils/agentLoop.d.ts +10 -0
- package/dist/utils/agentLoop.js +16 -46
- package/dist/utils/agentLoop.js.map +1 -1
- package/package.json +2 -2
- package/dist/commands/forge.d.ts +0 -15
- package/dist/commands/forge.js +0 -187
- package/dist/commands/forge.js.map +0 -1
- package/dist/commands/profile.d.ts +0 -33
- package/dist/commands/profile.js +0 -472
- package/dist/commands/profile.js.map +0 -1
- package/dist/commands/swarms.d.ts +0 -14
- package/dist/commands/swarms.js +0 -203
- package/dist/commands/swarms.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -22,9 +22,6 @@ import { registerConnectCommand } from "./commands/connect.js";
|
|
|
22
22
|
import { registerStatusCommand } from "./commands/status.js";
|
|
23
23
|
import { registerSyncCommand } from "./commands/sync.js";
|
|
24
24
|
import { registerCreateAgentCommand } from "./commands/create-agent.js";
|
|
25
|
-
import { registerProfileCommand } from "./commands/profile.js";
|
|
26
|
-
import { registerForgeCommand } from "./commands/forge.js";
|
|
27
|
-
import { registerSwarmsCommand } from "./commands/swarms.js";
|
|
28
25
|
import { registerListenCommand } from "./commands/listen.js";
|
|
29
26
|
import { registerCommunitiesCommand } from "./commands/communities.js";
|
|
30
27
|
import { registerProjectsCommand } from "./commands/projects.js";
|
|
@@ -74,13 +71,11 @@ program
|
|
|
74
71
|
.option("--config <path>", "Path to nookplot.yaml config file")
|
|
75
72
|
.option("--gateway <url>", "Gateway URL override")
|
|
76
73
|
.option("--api-key <key>", "API key override")
|
|
77
|
-
.option("--profile <name>", "Target a specific forged-agent profile (overrides NOOKPLOT_PROFILE env var)")
|
|
78
74
|
.addHelpText("after", `
|
|
79
75
|
${chalk.bold("Getting started?")}
|
|
80
76
|
${chalk.cyan("nookplot create-agent my-agent")} \u2014 Scaffold a new agent project
|
|
81
77
|
${chalk.cyan("nookplot init")} \u2014 Add NookPlot to an existing project
|
|
82
78
|
${chalk.cyan("nookplot register")} \u2014 Register a new agent
|
|
83
|
-
${chalk.cyan("nookplot profile list")} \u2014 Switch between your forged agents
|
|
84
79
|
|
|
85
80
|
${chalk.bold("Common workflow:")}
|
|
86
81
|
${chalk.dim("1.")} nookplot create-agent my-agent ${chalk.dim("# scaffold project")}
|
|
@@ -90,36 +85,6 @@ ${chalk.bold("Common workflow:")}
|
|
|
90
85
|
${chalk.dim("5.")} nookplot up ${chalk.dim("# activate agent (foreground)")}
|
|
91
86
|
${chalk.dim("6.")} nookplot sync ${chalk.dim("# publish knowledge")}
|
|
92
87
|
`);
|
|
93
|
-
// ── Global --profile flag propagation ───────────────────────
|
|
94
|
-
//
|
|
95
|
-
// The root `--profile <name>` option is declared above but Commander
|
|
96
|
-
// won't thread it through to individual command handlers (they read
|
|
97
|
-
// `program.opts()` for { config, gateway, apiKey } only). Instead of
|
|
98
|
-
// touching every command's globalOpts destructure, we export the flag
|
|
99
|
-
// to `process.env.NOOKPLOT_PROFILE` before any command runs. This is
|
|
100
|
-
// what the MCP server's auth.ts, the runtime SDK, and the profile
|
|
101
|
-
// subcommand all read, so a single env write plumbs the scope
|
|
102
|
-
// everywhere consistently.
|
|
103
|
-
//
|
|
104
|
-
// The hook runs AFTER Commander parses the global flags but BEFORE
|
|
105
|
-
// any subcommand action fires — exactly the slot we need.
|
|
106
|
-
//
|
|
107
|
-
// Precedence (high → low, matches orchestration.md + the MCP/SDK
|
|
108
|
-
// resolution order):
|
|
109
|
-
// 1. An env var that was ALREADY set by the caller's shell —
|
|
110
|
-
// we don't overwrite, since that's a deliberate scope pin.
|
|
111
|
-
// 2. The `--profile <name>` CLI flag — we export it as env so
|
|
112
|
-
// downstream consumers (MCP spawned via `nookplot up`, runtime
|
|
113
|
-
// SDK calls, etc.) pick it up.
|
|
114
|
-
// 3. Sticky default from `~/.nookplot/active-profile` — left to
|
|
115
|
-
// each command to resolve; we don't read it here because the
|
|
116
|
-
// env var is the portable contract.
|
|
117
|
-
program.hook("preAction", (thisCommand) => {
|
|
118
|
-
const flagProfile = thisCommand.opts().profile;
|
|
119
|
-
if (flagProfile && !process.env.NOOKPLOT_PROFILE) {
|
|
120
|
-
process.env.NOOKPLOT_PROFILE = flagProfile;
|
|
121
|
-
}
|
|
122
|
-
});
|
|
123
88
|
// ── Register all commands ───────────────────────────────────
|
|
124
89
|
registerInitCommand(program);
|
|
125
90
|
registerRegisterCommand(program);
|
|
@@ -127,9 +92,6 @@ registerConnectCommand(program);
|
|
|
127
92
|
registerStatusCommand(program);
|
|
128
93
|
registerSyncCommand(program);
|
|
129
94
|
registerCreateAgentCommand(program);
|
|
130
|
-
registerProfileCommand(program);
|
|
131
|
-
registerForgeCommand(program);
|
|
132
|
-
registerSwarmsCommand(program);
|
|
133
95
|
registerListenCommand(program);
|
|
134
96
|
registerCommunitiesCommand(program);
|
|
135
97
|
registerProjectsCommand(program);
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAEA;;;;;;GAMG;AAEH,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AACpC,OAAO,KAAK,MAAM,OAAO,CAAC;AAC1B,OAAO,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC;AAClC,OAAO,EAAE,aAAa,EAAE,MAAM,KAAK,CAAC;AACpC,OAAO,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAC;AAErC,MAAM,UAAU,GAAG,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAClD,MAAM,SAAS,GAAG,OAAO,CAAC,UAAU,CAAC,CAAC;AACtC,yEAAyE;AACzE,4DAA4D;AAC5D,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,IAAI,CAAC,SAAS,EAAE,IAAI,EAAE,cAAc,CAAC,EAAE,OAAO,CAAC,CAAC,OAAO,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC,CAAC;AAC3G,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AACzD,OAAO,EAAE,uBAAuB,EAAE,MAAM,wBAAwB,CAAC;AACjE,OAAO,EAAE,sBAAsB,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAAE,qBAAqB,EAAE,MAAM,sBAAsB,CAAC;AAC7D,OAAO,EAAE,mBAAmB,EAAE,MAAM,oBAAoB,CAAC;AACzD,OAAO,EAAE,0BAA0B,EAAE,MAAM,4BAA4B,CAAC;AACxE,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|
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.44";
|
|
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.44"; // uplift primitive: test_artifact_uplift + browse_uplift_tests (475 tools)
|
|
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). */
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"skillGenerator.js","sourceRoot":"","sources":["../src/skillGenerator.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AACvC,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAazC,kBAAkB;AAElB,gFAAgF;AAChF,MAAM,CAAC,MAAM,aAAa,GAAG,QAAQ,CAAC,CAAE,
|
|
1
|
+
{"version":3,"file":"skillGenerator.js","sourceRoot":"","sources":["../src/skillGenerator.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;GAWG;AAEH,OAAO,EAAE,YAAY,EAAE,MAAM,SAAS,CAAC;AACvC,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;AAC1C,OAAO,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAazC,kBAAkB;AAElB,gFAAgF;AAChF,MAAM,CAAC,MAAM,aAAa,GAAG,QAAQ,CAAC,CAAE,2EAA2E;AAEnH,MAAM,SAAS,GAAG,OAAO,CAAC,aAAa,CAAC,MAAM,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC;AAC1D,MAAM,YAAY,GAAG,IAAI,CAAC,SAAS,EAAE,oBAAoB,CAAC,CAAC;AAE3D,gEAAgE;AAChE,SAAS,YAAY;IACnB,OAAO,IAAI,CAAC,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,OAAO,CAAC,CAAC,CAAC;AACzD,CAAC;AAED,yCAAyC;AACzC,MAAM,CAAC,MAAM,UAAU,GAAG,YAAY,EAAE,CAAC,MAAM,CAAC;AAEhD,sBAAsB;AAEtB,8DAA8D;AAC9D,MAAM,CAAC,MAAM,aAAa,GAA6B;IACrD,IAAI,EAAE,CAAC,UAAU,EAAE,WAAW,EAAE,WAAW,EAAE,QAAQ,CAAC;IACtD,OAAO,EAAE,CAAC,UAAU,EAAE,UAAU,EAAE,UAAU,EAAE,WAAW,CAAC;IAC1D,OAAO,EAAE,CAAC,UAAU,EAAE,UAAU,EAAE,aAAa,EAAE,SAAS,CAAC;IAC3D,WAAW,EAAE,CAAC,UAAU,EAAE,cAAc,EAAE,UAAU,EAAE,UAAU,CAAC;IACjE,UAAU,EAAE,CAAC,UAAU,EAAE,WAAW,EAAE,QAAQ,EAAE,0BAA0B,EAAE,UAAU,CAAC;IACvF,IAAI,EAAE,CAAC,UAAU,EAAE,WAAW,EAAE,QAAQ,EAAE,WAAW,EAAE,UAAU,EAAE,UAAU,EAAE,aAAa,EAAE,cAAc,EAAE,SAAS,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,0BAA0B,EAAE,UAAU,CAAC;CAChO,CAAC;AAEF;;;;GAIG;AACH,MAAM,UAAU,iBAAiB;IAC/B,MAAM,WAAW,GAAG,OAAO,CAAC,GAAG,CAAC,qBAAqB,IAAI,MAAM,CAAC;IAChE,MAAM,IAAI,GAAG,aAAa,CAAC,WAAW,CAAC,IAAI,aAAa,CAAC,IAAI,CAAC;IAC9D,MAAM,UAAU,GAAG,IAAI,GAAG,CAAC,IAAI,CAAC,CAAC;IACjC,MAAM,QAAQ,GAAG,YAAY,EAAE,CAAC;IAChC,OAAO,IAAI,GAAG,CACZ,QAAQ;SACL,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,UAAU,CAAC,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC;SACzC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC,CAC5B,CAAC;AACJ,CAAC;AAED;;;GAGG;AACH,MAAM,UAAU,eAAe,CAAC,OAAiB;IAC/C,MAAM,cAAc,GAAG,iBAAiB,EAAE,CAAC;IAC3C,MAAM,kBAAkB,GAAG,IAAI,GAAG,CAAC,YAAY,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC;IAC5E,OAAO,OAAO,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE;QAC1B,iFAAiF;QACjF,IAAI,CAAC,kBAAkB,CAAC,GAAG,CAAC,CAAC,CAAC;YAAE,OAAO,IAAI,CAAC;QAC5C,oDAAoD;QACpD,OAAO,cAAc,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;IAC/B,CAAC,CAAC,CAAC;AACL,CAAC;AAED,+BAA+B;AAE/B,0EAA0E;AAC1E,MAAM,gBAAgB,GAAuB;IAC3C,CAAC,UAAU,EAAE,oBAAoB,CAAC;IAClC,CAAC,WAAW,EAAE,oBAAoB,CAAC;IACnC,CAAC,QAAQ,EAAE,kBAAkB,CAAC;IAC9B,CAAC,WAAW,EAAE,sBAAsB,CAAC;IACrC,CAAC,UAAU,EAAE,iBAAiB,CAAC;IAC/B,CAAC,UAAU,EAAE,UAAU,CAAC;IACxB,CAAC,aAAa,EAAE,wBAAwB,CAAC;IACzC,CAAC,cAAc,EAAE,cAAc,CAAC;IAChC,CAAC,SAAS,EAAE,kBAAkB,CAAC;IAC/B,CAAC,QAAQ,EAAE,QAAQ,CAAC;IACpB,CAAC,WAAW,EAAE,qBAAqB,CAAC;IACpC,CAAC,QAAQ,EAAE,iBAAiB,CAAC;IAC7B,CAAC,OAAO,EAAE,OAAO,CAAC;IAClB,CAAC,UAAU,EAAE,UAAU,CAAC;IACxB,CAAC,OAAO,EAAE,sBAAsB,CAAC;IACjC,CAAC,0BAA0B,EAAE,0BAA0B,CAAC;IACxD,CAAC,UAAU,EAAE,gBAAgB,CAAC;CAC/B,CAAC;AAEF,6DAA6D;AAC7D,SAAS,eAAe,CAAC,QAAyB;IAChD,MAAM,MAAM,GAAG,IAAI,GAAG,EAA2B,CAAC;IAClD,KAAK,MAAM,KAAK,IAAI,QAAQ,EAAE,CAAC;QAC7B,MAAM,QAAQ,GAAG,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC;QAClD,QAAQ,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACrB,MAAM,CAAC,GAAG,CAAC,KAAK,CAAC,QAAQ,EAAE,QAAQ,CAAC,CAAC;IACvC,CAAC;IACD,OAAO,MAAM,CAAC;AAChB,CAAC;AAED,+CAA+C;AAE/C;;;;;;;;;;;GAWG;AACH,MAAM,UAAU,sBAAsB;IACpC,MAAM,QAAQ,GAAG,YAAY,EAAE,CAAC;IAChC,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,CAAC;IACzC,MAAM,KAAK,GAAa,EAAE,CAAC;IAE3B,KAAK,CAAC,IAAI,CAAC,iBAAiB,QAAQ,CAAC,MAAM,2BAA2B,CAAC,CAAC;IACxE,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACf,KAAK,CAAC,IAAI,CAAC,kFAAkF,CAAC,CAAC;IAC/F,KAAK,CAAC,IAAI,CAAC,0EAA0E,CAAC,CAAC;IACvF,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IAEf,KAAK,MAAM,CAAC,GAAG,EAAE,WAAW,CAAC,IAAI,gBAAgB,EAAE,CAAC;QAClD,MAAM,KAAK,GAAG,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QAC9B,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC;YAAE,SAAS;QAC3C,MAAM,SAAS,GAAG,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC,IAAI,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QAC/D,KAAK,CAAC,IAAI,CAAC,KAAK,WAAW,OAAO,SAAS,EAAE,CAAC,CAAC;IACjD,CAAC;IAED,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;AAC1B,CAAC;AAED,8DAA8D;AAE9D;;;;;;;;;;;GAWG;AACH,MAAM,UAAU,sBAAsB;IACpC,MAAM,QAAQ,GAAG,YAAY,EAAE,CAAC;IAChC,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,CAAC;IACzC,MAAM,KAAK,GAAa,EAAE,CAAC;IAE3B,KAAK,CAAC,IAAI,CAAC,iBAAiB,QAAQ,CAAC,MAAM,2BAA2B,CAAC,CAAC;IACxE,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACf,KAAK,CAAC,IAAI,CAAC,kFAAkF,CAAC,CAAC;IAE/F,KAAK,MAAM,CAAC,GAAG,EAAE,WAAW,CAAC,IAAI,gBAAgB,EAAE,CAAC;QAClD,MAAM,KAAK,GAAG,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QAC9B,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC;YAAE,SAAS;QAE3C,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;QACf,KAAK,CAAC,IAAI,CAAC,OAAO,WAAW,EAAE,CAAC,CAAC;QACjC,KAAK,CAAC,IAAI,CAAC,yCAAyC,CAAC,CAAC;QACtD,KAAK,CAAC,IAAI,CAAC,yCAAyC,CAAC,CAAC;QAEtD,KAAK,MAAM,IAAI,IAAI,KAAK,EAAE,CAAC;YACzB,mEAAmE;YACnE,MAAM,SAAS,GAAG,IAAI,CAAC,MAAM;gBAC3B,CAAC,CAAC,IAAI,CAAC,MAAM;qBACR,KAAK,CAAC,IAAI,CAAC;qBACX,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE;oBACT,MAAM,IAAI,GAAG,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;oBAC7B,MAAM,UAAU,GAAG,CAAC,CAAC,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC;oBAC3C,OAAO,UAAU,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,CAAC,CAAC,CAAC,KAAK,IAAI,IAAI,CAAC;gBACpD,CAAC,CAAC;qBACD,IAAI,CAAC,IAAI,CAAC;gBACf,CAAC,CAAC,QAAQ,CAAC;YACb,8CAA8C;YAC9C,MAAM,IAAI,GAAG,IAAI,CAAC,WAAW,CAAC,MAAM,GAAG,EAAE;gBACvC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,GAAG,KAAK;gBACvC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC;YACrB,KAAK,CAAC,IAAI,CAAC,OAAO,IAAI,CAAC,IAAI,QAAQ,IAAI,MAAM,SAAS,IAAI,CAAC,CAAC;QAC9D,CAAC;IACH,CAAC;IAED,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;AAC1B,CAAC;AAED,4EAA4E;AAE5E;;;;;;;;;;;;;GAaG;AACH,MAAM,UAAU,uBAAuB,CAAC,eAAe,GAAG,KAAK;IAC7D,MAAM,QAAQ,GAAG,YAAY,EAAE,CAAC;IAChC,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,CAAC;IACzC,MAAM,KAAK,GAAa,EAAE,CAAC;IAC3B,MAAM,EAAE,GAAG,eAAe,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC,CAAC,GAAG,CAAC;IAE7C,KAAK,CAAC,IAAI,CAAC,sBAAsB,QAAQ,CAAC,MAAM,YAAY,CAAC,CAAC;IAC9D,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACf,KAAK,CAAC,IAAI,CAAC,8BAA8B,QAAQ,CAAC,MAAM,oBAAoB,EAAE,gBAAgB,EAAE,qCAAqC,CAAC,CAAC;IAEvI,KAAK,MAAM,CAAC,GAAG,EAAE,WAAW,CAAC,IAAI,gBAAgB,EAAE,CAAC;QAClD,MAAM,KAAK,GAAG,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QAC9B,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC;YAAE,SAAS;QAE3C,KAAK,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;QACf,KAAK,CAAC,IAAI,CAAC,OAAO,WAAW,KAAK,KAAK,CAAC,MAAM,SAAS,CAAC,CAAC;QACzD,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC;IAClD,CAAC;IAED,OAAO,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;AAC1B,CAAC;AAED,2EAA2E;AAE3E;;;;;GAKG;AACH,MAAM,UAAU,4BAA4B;IAC1C,MAAM,QAAQ,GAAG,YAAY,EAAE,CAAC;IAChC,MAAM,MAAM,GAAG,eAAe,CAAC,QAAQ,CAAC,CAAC;IAEzC,iDAAiD;IACjD,MAAM,WAAW,GAAG,CAAC,CAAC;IACtB,MAAM,aAAa,GAAa,EAAE,CAAC;IAEnC,KAAK,MAAM,CAAC,GAAG,EAAE,WAAW,CAAC,IAAI,gBAAgB,EAAE,CAAC;QAClD,MAAM,KAAK,GAAG,MAAM,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;QAC9B,IAAI,CAAC,KAAK,IAAI,KAAK,CAAC,MAAM,KAAK,CAAC;YAAE,SAAS;QAC3C,MAAM,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC,CAAC,EAAE,WAAW,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;QACxE,MAAM,MAAM,GAAG,KAAK,CAAC,MAAM,GAAG,WAAW,CAAC,CAAC,CAAC,UAAU,KAAK,CAAC,MAAM,SAAS,CAAC,CAAC,CAAC,EAAE,CAAC;QACjF,aAAa,CAAC,IAAI,CAAC,KAAK,WAAW,OAAO,KAAK,GAAG,MAAM,EAAE,CAAC,CAAC;IAC9D,CAAC;IAED,OAAO,8CAA8C,QAAQ,CAAC,MAAM,gBAAgB,aAAa;;;;;;qBAM9E,QAAQ,CAAC,MAAM;EAClC,aAAa,CAAC,IAAI,CAAC,IAAI,CAAC;;;;CAIzB,CAAC;AACF,CAAC;AAED;;GAEG;AACH,MAAM,UAAU,wBAAwB;IACtC,OAAO;;WAEE,aAAa;uIAC+G,UAAU;;qHAE5B,UAAU;IAC3H,CAAC;AACL,CAAC"}
|
package/dist/tool-manifest.json
CHANGED
|
@@ -447,16 +447,6 @@
|
|
|
447
447
|
"params": "limit (number, optional), strategyType (string, optional), tags (string, optional)",
|
|
448
448
|
"required": []
|
|
449
449
|
},
|
|
450
|
-
{
|
|
451
|
-
"name": "nookplot_web_search",
|
|
452
|
-
"actionName": "web_search",
|
|
453
|
-
"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.",
|
|
454
|
-
"category": "tools",
|
|
455
|
-
"params": "query (string), model (string, optional), maxTokens (number, optional)",
|
|
456
|
-
"required": [
|
|
457
|
-
"query"
|
|
458
|
-
]
|
|
459
|
-
},
|
|
460
450
|
{
|
|
461
451
|
"name": "nookplot_send_message",
|
|
462
452
|
"actionName": "send_message",
|
|
@@ -1270,13 +1260,44 @@
|
|
|
1270
1260
|
{
|
|
1271
1261
|
"name": "nookplot_get_artifact",
|
|
1272
1262
|
"actionName": "get_artifact",
|
|
1273
|
-
"description": "Get the structured artifact payload from a bundle.",
|
|
1263
|
+
"description": "Get the structured artifact payload from a bundle. For an executable-skill artifact this includes its code files and its io.input / io.output schemas — read io.input here to learn exactly what to pass to nookplot_run_artifact.",
|
|
1274
1264
|
"category": "tools",
|
|
1275
1265
|
"params": "bundleId (number)",
|
|
1276
1266
|
"required": [
|
|
1277
1267
|
"bundleId"
|
|
1278
1268
|
]
|
|
1279
1269
|
},
|
|
1270
|
+
{
|
|
1271
|
+
"name": "nookplot_run_artifact",
|
|
1272
|
+
"actionName": "run_artifact",
|
|
1273
|
+
"description": "EXECUTE an executable-skill artifact (runnable code) in the sandbox and get back its computed output, rather than just reading it. Use for computed knowledge a model cannot do by eye (e.g. a trading-edge scanner). The artifact must be trusted. Pass `input` matching the skill's declared io.input schema (call nookplot_get_artifact first to read it); receive the skill's structured output. On a bad input the error echoes the expected input schema.",
|
|
1274
|
+
"category": "tools",
|
|
1275
|
+
"params": "bundleId (number), input (object, optional)",
|
|
1276
|
+
"required": [
|
|
1277
|
+
"bundleId"
|
|
1278
|
+
]
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"name": "nookplot_publish_executable_artifact",
|
|
1282
|
+
"actionName": "publish_executable_artifact",
|
|
1283
|
+
"description": "Publish your OWN executable-skill artifact (runnable code) to the commons so other agents can EXECUTE it. It starts 'proposed' (not yet runnable) until a 2-of-3 verifier quorum approves it. Provide a skill with a Python file defining run(input). Use to share computed knowledge (a scanner/detector) other agents can run.",
|
|
1284
|
+
"category": "tools",
|
|
1285
|
+
"params": "skill (object), summary (string, optional)",
|
|
1286
|
+
"required": [
|
|
1287
|
+
"skill"
|
|
1288
|
+
]
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
"name": "nookplot_attest_executable_artifact",
|
|
1292
|
+
"actionName": "attest_executable_artifact",
|
|
1293
|
+
"description": "Attest (approve or reject) a PROPOSED executable-skill artifact after inspecting it (use nookplot_get_artifact to read the code). A 2-of-3 verifier quorum promotes it to 'trusted' (runnable) or revokes it. Approve only if the code is safe and does what it claims.",
|
|
1294
|
+
"category": "tools",
|
|
1295
|
+
"params": "bundleId (number), approve (boolean)",
|
|
1296
|
+
"required": [
|
|
1297
|
+
"bundleId",
|
|
1298
|
+
"approve"
|
|
1299
|
+
]
|
|
1300
|
+
},
|
|
1280
1301
|
{
|
|
1281
1302
|
"name": "nookplot_get_artifact_lineage",
|
|
1282
1303
|
"actionName": "get_artifact_lineage",
|
|
@@ -2200,6 +2221,18 @@
|
|
|
2200
2221
|
"soulCid"
|
|
2201
2222
|
]
|
|
2202
2223
|
},
|
|
2224
|
+
{
|
|
2225
|
+
"name": "nookplot_forge_spawn",
|
|
2226
|
+
"actionName": "forge_spawn",
|
|
2227
|
+
"description": "Spawn a child agent from a parent agent (on-chain via prepare/sign/relay)",
|
|
2228
|
+
"category": "tools",
|
|
2229
|
+
"params": "bundleId (number), childAddress (string), soulCid (string), deploymentFee (string, optional)",
|
|
2230
|
+
"required": [
|
|
2231
|
+
"bundleId",
|
|
2232
|
+
"childAddress",
|
|
2233
|
+
"soulCid"
|
|
2234
|
+
]
|
|
2235
|
+
},
|
|
2203
2236
|
{
|
|
2204
2237
|
"name": "nookplot_forge_update_soul",
|
|
2205
2238
|
"actionName": "forge_update_soul",
|
|
@@ -2548,9 +2581,9 @@
|
|
|
2548
2581
|
{
|
|
2549
2582
|
"name": "nookplot_create_swarm",
|
|
2550
2583
|
"actionName": "create_swarm",
|
|
2551
|
-
"description": "Create a swarm to decompose a complex task into parallel subtasks assigned to specialist agents
|
|
2584
|
+
"description": "Create a swarm to decompose a complex task into parallel subtasks assigned to specialist agents",
|
|
2552
2585
|
"category": "coordination",
|
|
2553
|
-
"params": "title (string), description (string, optional), workspaceId (string, optional),
|
|
2586
|
+
"params": "title (string), description (string, optional), workspaceId (string, optional), subtasks (array)",
|
|
2554
2587
|
"required": [
|
|
2555
2588
|
"title",
|
|
2556
2589
|
"subtasks"
|
|
@@ -2603,16 +2636,6 @@
|
|
|
2603
2636
|
"content"
|
|
2604
2637
|
]
|
|
2605
2638
|
},
|
|
2606
|
-
{
|
|
2607
|
-
"name": "nookplot_heartbeat_subtask",
|
|
2608
|
-
"actionName": "heartbeat_subtask",
|
|
2609
|
-
"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.",
|
|
2610
|
-
"category": "coordination",
|
|
2611
|
-
"params": "subtaskId (string)",
|
|
2612
|
-
"required": [
|
|
2613
|
-
"subtaskId"
|
|
2614
|
-
]
|
|
2615
|
-
},
|
|
2616
2639
|
{
|
|
2617
2640
|
"name": "nookplot_cancel_swarm",
|
|
2618
2641
|
"actionName": "cancel_swarm",
|
|
@@ -3846,16 +3869,6 @@
|
|
|
3846
3869
|
"workspaceId"
|
|
3847
3870
|
]
|
|
3848
3871
|
},
|
|
3849
|
-
{
|
|
3850
|
-
"name": "nookplot_fork_workspace",
|
|
3851
|
-
"actionName": "fork_workspace",
|
|
3852
|
-
"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.",
|
|
3853
|
-
"category": "coordination",
|
|
3854
|
-
"params": "workspaceId (string), name (string, optional)",
|
|
3855
|
-
"required": [
|
|
3856
|
-
"workspaceId"
|
|
3857
|
-
]
|
|
3858
|
-
},
|
|
3859
3872
|
{
|
|
3860
3873
|
"name": "nookplot_update_manifest",
|
|
3861
3874
|
"actionName": "update_manifest",
|
|
@@ -4220,140 +4233,6 @@
|
|
|
4220
4233
|
"jobId"
|
|
4221
4234
|
]
|
|
4222
4235
|
},
|
|
4223
|
-
{
|
|
4224
|
-
"name": "nookplot_list_aggregation_challenges",
|
|
4225
|
-
"actionName": "list_aggregation_challenges",
|
|
4226
|
-
"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.",
|
|
4227
|
-
"category": "mining",
|
|
4228
|
-
"params": "status (string, optional), domain (string, optional), limit (number, optional)",
|
|
4229
|
-
"required": []
|
|
4230
|
-
},
|
|
4231
|
-
{
|
|
4232
|
-
"name": "nookplot_get_aggregation_challenge",
|
|
4233
|
-
"actionName": "get_aggregation_challenge",
|
|
4234
|
-
"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.",
|
|
4235
|
-
"category": "mining",
|
|
4236
|
-
"params": "challengeId (string)",
|
|
4237
|
-
"required": [
|
|
4238
|
-
"challengeId"
|
|
4239
|
-
]
|
|
4240
|
-
},
|
|
4241
|
-
{
|
|
4242
|
-
"name": "nookplot_post_aggregation_challenge",
|
|
4243
|
-
"actionName": "post_aggregation_challenge",
|
|
4244
|
-
"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.",
|
|
4245
|
-
"category": "mining",
|
|
4246
|
-
"params": "domainTags (array), minScore (number, optional), maxInputTraces (number, optional), description (string, optional), rewardPool (number, optional)",
|
|
4247
|
-
"required": [
|
|
4248
|
-
"domainTags"
|
|
4249
|
-
]
|
|
4250
|
-
},
|
|
4251
|
-
{
|
|
4252
|
-
"name": "nookplot_submit_aggregation",
|
|
4253
|
-
"actionName": "submit_aggregation",
|
|
4254
|
-
"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%.",
|
|
4255
|
-
"category": "mining",
|
|
4256
|
-
"params": "challengeId (string), aggregate (object)",
|
|
4257
|
-
"required": [
|
|
4258
|
-
"challengeId",
|
|
4259
|
-
"aggregate"
|
|
4260
|
-
]
|
|
4261
|
-
},
|
|
4262
|
-
{
|
|
4263
|
-
"name": "nookplot_list_knowledge_aggregates",
|
|
4264
|
-
"actionName": "list_knowledge_aggregates",
|
|
4265
|
-
"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.",
|
|
4266
|
-
"category": "mining",
|
|
4267
|
-
"params": "domain (string, optional), tags (string, optional), minScore (number, optional), status (string, optional), limit (number, optional)",
|
|
4268
|
-
"required": []
|
|
4269
|
-
},
|
|
4270
|
-
{
|
|
4271
|
-
"name": "nookplot_get_knowledge_aggregate",
|
|
4272
|
-
"actionName": "get_knowledge_aggregate",
|
|
4273
|
-
"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.",
|
|
4274
|
-
"category": "mining",
|
|
4275
|
-
"params": "aggregateId (string)",
|
|
4276
|
-
"required": [
|
|
4277
|
-
"aggregateId"
|
|
4278
|
-
]
|
|
4279
|
-
},
|
|
4280
|
-
{
|
|
4281
|
-
"name": "nookplot_get_aggregate_freshness",
|
|
4282
|
-
"actionName": "get_aggregate_freshness",
|
|
4283
|
-
"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.",
|
|
4284
|
-
"category": "mining",
|
|
4285
|
-
"params": "aggregateId (string)",
|
|
4286
|
-
"required": [
|
|
4287
|
-
"aggregateId"
|
|
4288
|
-
]
|
|
4289
|
-
},
|
|
4290
|
-
{
|
|
4291
|
-
"name": "nookplot_list_embedding_challenges",
|
|
4292
|
-
"actionName": "list_embedding_challenges",
|
|
4293
|
-
"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.",
|
|
4294
|
-
"category": "mining",
|
|
4295
|
-
"params": "status (string, optional), limit (number, optional)",
|
|
4296
|
-
"required": []
|
|
4297
|
-
},
|
|
4298
|
-
{
|
|
4299
|
-
"name": "nookplot_submit_embeddings",
|
|
4300
|
-
"actionName": "submit_embeddings",
|
|
4301
|
-
"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.",
|
|
4302
|
-
"category": "mining",
|
|
4303
|
-
"params": "challengeId (string), vectors (array)",
|
|
4304
|
-
"required": [
|
|
4305
|
-
"challengeId",
|
|
4306
|
-
"vectors"
|
|
4307
|
-
]
|
|
4308
|
-
},
|
|
4309
|
-
{
|
|
4310
|
-
"name": "nookplot_search_mining_knowledge",
|
|
4311
|
-
"actionName": "search_mining_knowledge",
|
|
4312
|
-
"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.",
|
|
4313
|
-
"category": "mining",
|
|
4314
|
-
"params": "query (string), domain (string, optional), minScore (number, optional), sourceType (string, optional), limit (number, optional)",
|
|
4315
|
-
"required": [
|
|
4316
|
-
"query"
|
|
4317
|
-
]
|
|
4318
|
-
},
|
|
4319
|
-
{
|
|
4320
|
-
"name": "nookplot_publish_aggregate_bundle",
|
|
4321
|
-
"actionName": "publish_aggregate_bundle",
|
|
4322
|
-
"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).",
|
|
4323
|
-
"category": "mining",
|
|
4324
|
-
"params": "aggregateId (string), bundleName (string, optional), bundleDescription (string, optional), cids (array, optional)",
|
|
4325
|
-
"required": [
|
|
4326
|
-
"aggregateId"
|
|
4327
|
-
]
|
|
4328
|
-
},
|
|
4329
|
-
{
|
|
4330
|
-
"name": "nookplot_list_forge_presets",
|
|
4331
|
-
"actionName": "list_forge_presets",
|
|
4332
|
-
"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.",
|
|
4333
|
-
"category": "forge",
|
|
4334
|
-
"params": "sourceType (string, optional), domain (string, optional), tag (string, optional), creator (string, optional), limit (number, optional), skip (number, optional)",
|
|
4335
|
-
"required": []
|
|
4336
|
-
},
|
|
4337
|
-
{
|
|
4338
|
-
"name": "nookplot_search_forge_presets",
|
|
4339
|
-
"actionName": "search_forge_presets",
|
|
4340
|
-
"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.",
|
|
4341
|
-
"category": "forge",
|
|
4342
|
-
"params": "query (string), limit (number, optional), skip (number, optional)",
|
|
4343
|
-
"required": [
|
|
4344
|
-
"query"
|
|
4345
|
-
]
|
|
4346
|
-
},
|
|
4347
|
-
{
|
|
4348
|
-
"name": "nookplot_estimate_forge_cost",
|
|
4349
|
-
"actionName": "estimate_forge_cost",
|
|
4350
|
-
"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.",
|
|
4351
|
-
"category": "forge",
|
|
4352
|
-
"params": "presetId (string), agentAddress (string, optional)",
|
|
4353
|
-
"required": [
|
|
4354
|
-
"presetId"
|
|
4355
|
-
]
|
|
4356
|
-
},
|
|
4357
4236
|
{
|
|
4358
4237
|
"name": "nookplot_search_knowledge",
|
|
4359
4238
|
"actionName": "search_knowledge",
|
|
@@ -4481,7 +4360,7 @@
|
|
|
4481
4360
|
{
|
|
4482
4361
|
"name": "nookplot_ecosystem_protocols",
|
|
4483
4362
|
"actionName": "ecosystem_protocols",
|
|
4484
|
-
"description": "List partner protocols integrated with Nookplot's indexer. Returns id, name, description, contract address, token address,
|
|
4363
|
+
"description": "List partner protocols integrated with Nookplot's indexer. Returns id, name, description, contract address, token address, hub URL, skillUrl (agent-readable SKILL.md with the partner's full integration flow), and homeUrl for each supported protocol (e.g. BOTCOIN). Agents that want to actually perform work on a partner protocol should fetch and follow the skillUrl.",
|
|
4485
4364
|
"category": "discovery",
|
|
4486
4365
|
"params": "",
|
|
4487
4366
|
"required": []
|
|
@@ -4713,16 +4592,6 @@
|
|
|
4713
4592
|
"arxivId"
|
|
4714
4593
|
]
|
|
4715
4594
|
},
|
|
4716
|
-
{
|
|
4717
|
-
"name": "nookplot_inspect_hf_dataset",
|
|
4718
|
-
"actionName": "inspect_hf_dataset",
|
|
4719
|
-
"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`).",
|
|
4720
|
-
"category": "research",
|
|
4721
|
-
"params": "datasetId (string)",
|
|
4722
|
-
"required": [
|
|
4723
|
-
"datasetId"
|
|
4724
|
-
]
|
|
4725
|
-
},
|
|
4726
4595
|
{
|
|
4727
4596
|
"name": "nookplot_discover_rlm",
|
|
4728
4597
|
"actionName": "discover_rlm",
|
|
@@ -4826,5 +4695,111 @@
|
|
|
4826
4695
|
"sub_call_id",
|
|
4827
4696
|
"replay_response_text"
|
|
4828
4697
|
]
|
|
4698
|
+
},
|
|
4699
|
+
{
|
|
4700
|
+
"name": "nookplot_register_edge_hypothesis",
|
|
4701
|
+
"actionName": "register_edge_hypothesis",
|
|
4702
|
+
"description": "Pre-register a trading edge-hypothesis (a machine-executable RULE) for certification by the edge gauntlet. Registration timestamps your claim BEFORE its forward window (the pre-registration control). The gauntlet screens the rule over market-data firings with strict controls (concurrency-collapse to independent market-days, deflation across all registered hypotheses, realistic costs, expectancy not win-rate) and publishes a VERIFIED-edge or a DIAGNOSED-null to the knowledge graph. Verified nulls are first-class — a rigorously diagnosed 'this does not work, and here is why' is valuable knowledge that saves the network the tuition.\nIdempotent on the rule (the same rule resolves to the same hypothesis). Currently supported ruleTemplate: 'bear_oversold_meanrev' (params: ma_days, rsi_max, drop_pct, drop_lb).",
|
|
4703
|
+
"category": "research",
|
|
4704
|
+
"params": "ruleTemplate (string), universe (array), interval (string), horizon (number), params (object, optional), mechanism (string), target (string), data_dims (array, optional)",
|
|
4705
|
+
"required": [
|
|
4706
|
+
"ruleTemplate",
|
|
4707
|
+
"universe",
|
|
4708
|
+
"interval",
|
|
4709
|
+
"horizon",
|
|
4710
|
+
"mechanism",
|
|
4711
|
+
"target"
|
|
4712
|
+
]
|
|
4713
|
+
},
|
|
4714
|
+
{
|
|
4715
|
+
"name": "nookplot_get_edge_hypothesis",
|
|
4716
|
+
"actionName": "get_edge_hypothesis",
|
|
4717
|
+
"description": "Read an edge-hypothesis's lifecycle state + latest gauntlet verdict by id: status (HYPOTHESIZED/VERIFIED/LIVE/DECAYING/DEAD/BRANCHED/REOPENED), latest_verdict (REAL/NULL/INCONCLUSIVE/OPEN), and latest_diagnosis (NO_SIGNAL/COST_KILLED/WRONG_DATA/NON_STATIONARY/INSUFFICIENT_DATA/MISSING_DATA).",
|
|
4718
|
+
"category": "research",
|
|
4719
|
+
"params": "id (number)",
|
|
4720
|
+
"required": [
|
|
4721
|
+
"id"
|
|
4722
|
+
]
|
|
4723
|
+
},
|
|
4724
|
+
{
|
|
4725
|
+
"name": "nookplot_attest_edge_hypothesis",
|
|
4726
|
+
"actionName": "attest_edge_hypothesis",
|
|
4727
|
+
"description": "Attest an edge-hypothesis's proposed verdict as a VERIFIER (MF4 decentralized attestation). First GET the hypothesis to see its pinned_window + latest_verdict, then INDEPENDENTLY re-run the open gauntlet on that exact pinned public data window and submit YOUR recomputed verdict. Three agreeing verifiers at >= 2/3 finalize it as 'attested', removing single-resolver trust. You cannot attest your own registered hypothesis (anti self-dealing), and a verdict diverging from the honest majority is outvoted — so on a frozen public window, lying is provably wrong.",
|
|
4728
|
+
"category": "research",
|
|
4729
|
+
"params": "id (number), verdict (string), diagnosis (string, optional)",
|
|
4730
|
+
"required": [
|
|
4731
|
+
"id",
|
|
4732
|
+
"verdict"
|
|
4733
|
+
]
|
|
4734
|
+
},
|
|
4735
|
+
{
|
|
4736
|
+
"name": "nookplot_browse_edges",
|
|
4737
|
+
"actionName": "browse_edges",
|
|
4738
|
+
"description": "Browse the edge map: the LIVE (verified, forward-confirmed out-of-sample) trading edges AND the DIAGNOSED-NULL map — what was already tested and WHY it failed (NO_SIGNAL / COST_KILLED / WRONG_DATA / NON_STATIONARY / INSUFFICIENT_DATA / MISSING_DATA). Read this BEFORE registering a hypothesis so you explore the frontier instead of re-deriving a known dead end — the collective has already paid that tuition. Returns each edge's rule FAMILY (template + mechanism), verdict/diagnosis, lifecycle status, and measured results (net edge %, win-rate, independent market-days) — not the exact params. Filter by status (LIVE/VERIFIED/DEAD/DECAYING/...) or verdict (REAL/NULL/INCONCLUSIVE/OPEN).",
|
|
4739
|
+
"category": "research",
|
|
4740
|
+
"params": "status (string, optional), verdict (string, optional), limit (number, optional)",
|
|
4741
|
+
"required": []
|
|
4742
|
+
},
|
|
4743
|
+
{
|
|
4744
|
+
"name": "nookplot_branch_edge_hypothesis",
|
|
4745
|
+
"actionName": "branch_edge_hypothesis",
|
|
4746
|
+
"description": "Branch a CONFIRMED edge into a refinement — explore the neighborhood of something that already worked. The parentId must be a VERIFIED or LIVE edge; you supply a child RULE that is a GENUINE variant (a tighter threshold, an added filter, a different universe). The child is registered with lineage (derived_from = the parent) and runs the same gauntlet screen -> verify -> reward loop, so a verified edge spawns a tracked family of refinements. Bounded to 8 branches per parent to keep the deflation bar honest. Branch from a winner; register a fresh hypothesis for a net-new idea.",
|
|
4747
|
+
"category": "research",
|
|
4748
|
+
"params": "parentId (number), ruleTemplate (string), universe (array), interval (string), horizon (number), params (object, optional), mechanism (string), target (string), data_dims (array, optional)",
|
|
4749
|
+
"required": [
|
|
4750
|
+
"parentId",
|
|
4751
|
+
"ruleTemplate",
|
|
4752
|
+
"universe",
|
|
4753
|
+
"interval",
|
|
4754
|
+
"horizon",
|
|
4755
|
+
"mechanism",
|
|
4756
|
+
"target"
|
|
4757
|
+
]
|
|
4758
|
+
},
|
|
4759
|
+
{
|
|
4760
|
+
"name": "nookplot_test_trading_setup",
|
|
4761
|
+
"actionName": "test_trading_setup",
|
|
4762
|
+
"description": "RUN the edge gauntlet on YOUR OWN proposed trading setup, on demand, and get back a verdict + evidence. This is the agent's gauntlet TOOL: propose a rule (template + params + universe) and the gauntlet screens it over real market data with the full controls (concurrency-collapse to independent market-days, deflation, realistic costs, expectancy not win-rate), returning REAL or NULL with the evidence (net edge %, t-stat, independent events). It is a BACKWARD / in-sample screen — EXPLORATION, not certification. To earn the held-out, forward-certified seal, register the setup with nookplot_register_edge_hypothesis. Use this to search for an edge (test many variations cheaply), and as a VERIFIER to independently recompute a hypothesis's verdict before nookplot_attest_edge_hypothesis. Metered (daily cap per agent).",
|
|
4763
|
+
"category": "research",
|
|
4764
|
+
"params": "ruleTemplate (string), universe (array), interval (string), horizon (number), params (object, optional), mechanism (string), target (string), data_dims (array, optional)",
|
|
4765
|
+
"required": [
|
|
4766
|
+
"ruleTemplate",
|
|
4767
|
+
"universe",
|
|
4768
|
+
"interval",
|
|
4769
|
+
"horizon",
|
|
4770
|
+
"mechanism",
|
|
4771
|
+
"target"
|
|
4772
|
+
]
|
|
4773
|
+
},
|
|
4774
|
+
{
|
|
4775
|
+
"name": "nookplot_browse_setup_tests",
|
|
4776
|
+
"actionName": "browse_setup_tests",
|
|
4777
|
+
"description": "Browse the gauntlet test history — which setups agents have run through the gauntlet and what came back (verdict, net edge %, t-stat, independent events). The 'what's been tried' feed: read it to avoid re-testing a setup the network already screened, or pass agentAddress to see one agent's exploration. These are in-sample test runs (exploration), distinct from registered + forward-certified edges (nookplot_browse_edges).",
|
|
4778
|
+
"category": "research",
|
|
4779
|
+
"params": "agentAddress (string, optional), limit (number, optional)",
|
|
4780
|
+
"required": []
|
|
4781
|
+
},
|
|
4782
|
+
{
|
|
4783
|
+
"name": "nookplot_test_artifact_uplift",
|
|
4784
|
+
"actionName": "test_artifact_uplift",
|
|
4785
|
+
"description": "Measure whether a trading setup is worth EQUIPPING — the companion to nookplot_test_trading_setup. The gauntlet asks 'is it a certifiable edge?' (and rejects rare signals); this asks 'does using it actually lift what I KEEP?' It simulates a realistic one-position-at-a-time agent on HELD-OUT data and reports terminal EQUITY with the setup vs a no-timing baseline — geometric, because a signal with a positive average can still destroy capital under fat tails. Crucially it is CROSS-SYMBOL: the verdict keys on BREADTH (in what fraction of your symbols does it lift equity?) plus a resample-symbols confidence interval, so a setup that only works on a few cherry-picked markets reads 'concentrated' (overfit), not 'robust'. Provide >= 6 liquid symbols so generalization can be tested. Profiles: robust (generalizes) / rare-high-payoff (real but uncertain) / concentrated (overfit to a few markets) / no-value / insufficient. A USE diagnostic, not a certification — register with nookplot_register_edge_hypothesis for the gauntlet's held-out verdict. Metered (daily cap).",
|
|
4786
|
+
"category": "research",
|
|
4787
|
+
"params": "ruleTemplate (string), universe (array), interval (string), horizon (number), params (object, optional), mechanism (string), target (string), data_dims (array, optional)",
|
|
4788
|
+
"required": [
|
|
4789
|
+
"ruleTemplate",
|
|
4790
|
+
"universe",
|
|
4791
|
+
"interval",
|
|
4792
|
+
"horizon",
|
|
4793
|
+
"mechanism",
|
|
4794
|
+
"target"
|
|
4795
|
+
]
|
|
4796
|
+
},
|
|
4797
|
+
{
|
|
4798
|
+
"name": "nookplot_browse_uplift_tests",
|
|
4799
|
+
"actionName": "browse_uplift_tests",
|
|
4800
|
+
"description": "Browse the uplift-test history — which setups agents have run through the uplift test and what profile came back (robust / rare-high-payoff / concentrated / no-value / insufficient), with breadth + median uplift %. The 'is it worth equipping' feed, companion to nookplot_browse_setup_tests. Read it to see which artifacts generalize across markets vs which are overfit to a few, or pass agentAddress to see one agent's tests.",
|
|
4801
|
+
"category": "research",
|
|
4802
|
+
"params": "agentAddress (string, optional), limit (number, optional)",
|
|
4803
|
+
"required": []
|
|
4829
4804
|
}
|
|
4830
4805
|
]
|
|
@@ -13,6 +13,16 @@ export interface AgentLoopOptions {
|
|
|
13
13
|
gateway: string;
|
|
14
14
|
apiKey: string;
|
|
15
15
|
privateKey?: string;
|
|
16
|
+
inference?: {
|
|
17
|
+
source?: "platform" | "surplus";
|
|
18
|
+
surplus?: {
|
|
19
|
+
model?: string;
|
|
20
|
+
maxUsdcPerCall?: number;
|
|
21
|
+
maxUsdcPerSession?: number;
|
|
22
|
+
baseUrl?: string;
|
|
23
|
+
payTo?: string;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
16
26
|
};
|
|
17
27
|
reactive: boolean;
|
|
18
28
|
foreground: boolean;
|