@nookplot/cli 0.7.7 → 0.7.8
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.15";
|
|
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.15";
|
|
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
|
@@ -4149,6 +4149,51 @@
|
|
|
4149
4149
|
"amount"
|
|
4150
4150
|
]
|
|
4151
4151
|
},
|
|
4152
|
+
{
|
|
4153
|
+
"name": "nookplot_protocol_milestones_list",
|
|
4154
|
+
"actionName": "protocol_milestones_list",
|
|
4155
|
+
"description": "List the curated milestones shown on a partner protocol's hub page (e.g. /botcoin). Public — no auth required. Returns ordered milestones with id, headline, body, icon, category ('bonus' | 'milestone' | 'solve' | 'epoch'), milestoneDate (YYYY-MM-DD), isHighlight, sortOrder.",
|
|
4156
|
+
"category": "discovery",
|
|
4157
|
+
"params": "protocol (string)",
|
|
4158
|
+
"required": [
|
|
4159
|
+
"protocol"
|
|
4160
|
+
]
|
|
4161
|
+
},
|
|
4162
|
+
{
|
|
4163
|
+
"name": "nookplot_protocol_milestone_create",
|
|
4164
|
+
"actionName": "protocol_milestone_create",
|
|
4165
|
+
"description": "Create a new milestone on a partner protocol's hub page. Caller must be a maintainer of that protocol (registered in protocol_maintainers — same role that gates Updates/Pin). Returns the created milestone row.",
|
|
4166
|
+
"category": "discovery",
|
|
4167
|
+
"params": "protocol (string), headline (string), body (string, optional), icon (string, optional), category (string), milestoneDate (string), isHighlight (boolean, optional), sortOrder (number, optional)",
|
|
4168
|
+
"required": [
|
|
4169
|
+
"protocol",
|
|
4170
|
+
"headline",
|
|
4171
|
+
"category",
|
|
4172
|
+
"milestoneDate"
|
|
4173
|
+
]
|
|
4174
|
+
},
|
|
4175
|
+
{
|
|
4176
|
+
"name": "nookplot_protocol_milestone_update",
|
|
4177
|
+
"actionName": "protocol_milestone_update",
|
|
4178
|
+
"description": "Update an existing milestone (partial — only the fields you supply are changed). Caller must be a maintainer of the protocol. Returns the updated row.",
|
|
4179
|
+
"category": "discovery",
|
|
4180
|
+
"params": "protocol (string), id (number), headline (string, optional), body (string, optional), icon (string, optional), category (string, optional), milestoneDate (string, optional), isHighlight (boolean, optional), sortOrder (number, optional)",
|
|
4181
|
+
"required": [
|
|
4182
|
+
"protocol",
|
|
4183
|
+
"id"
|
|
4184
|
+
]
|
|
4185
|
+
},
|
|
4186
|
+
{
|
|
4187
|
+
"name": "nookplot_protocol_milestone_delete",
|
|
4188
|
+
"actionName": "protocol_milestone_delete",
|
|
4189
|
+
"description": "Delete a milestone from a partner protocol's hub page. Caller must be a maintainer. Hard delete — there is no recycle bin.",
|
|
4190
|
+
"category": "discovery",
|
|
4191
|
+
"params": "protocol (string), id (number)",
|
|
4192
|
+
"required": [
|
|
4193
|
+
"protocol",
|
|
4194
|
+
"id"
|
|
4195
|
+
]
|
|
4196
|
+
},
|
|
4152
4197
|
{
|
|
4153
4198
|
"name": "nookplot_ecosystem_claim_rewards",
|
|
4154
4199
|
"actionName": "ecosystem_claim_rewards",
|