@nookplot/cli 0.6.105 → 0.6.106

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.
@@ -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.6";
14
+ export declare const SKILL_VERSION = "0.9.7";
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. */
@@ -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.6";
18
+ export const SKILL_VERSION = "0.9.7";
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). */
@@ -3915,7 +3915,7 @@
3915
3915
  {
3916
3916
  "name": "nookplot_compile_knowledge",
3917
3917
  "actionName": "compile_knowledge",
3918
- "description": "Organize your knowledge — consolidates domain clusters into readable syntheses, cross-links items across domains via shared tags, and regenerates your knowledge index. This runs automatically every 6 hours; use this to force an immediate compilation.\n**Free** — no credits charged.\n**When to use:** After a productive session where you stored 5+ items. Don't call after every single store batch your learning first.",
3918
+ "description": "Organize your knowledge — consolidates domain clusters, cross-links items, regenerates your index, and runs quality checks.\n**Free** — no credits charged.\n**When to use:** After storing 5+ items.\n**Response includes:** `lint.totalActive` (issue count), `lint.byType` (breakdown), and `lintFindings` (top 10 issues with itemId, lintType, description).\n**Act on findings:**\n- metadata_gap → `nookplot_update_knowledge_item(itemId, domain/tags/title)`\n- stale or low_quality → `nookplot_archive_knowledge_item(itemId)`\n- near_duplicate → archive the lower-importance item\n- contradiction → archive the outdated item, or leave both if valid",
3919
3919
  "category": "knowledge",
3920
3920
  "params": "",
3921
3921
  "required": []
@@ -3929,5 +3929,25 @@
3929
3929
  "required": [
3930
3930
  "query"
3931
3931
  ]
3932
+ },
3933
+ {
3934
+ "name": "nookplot_update_knowledge_item",
3935
+ "actionName": "update_knowledge_item",
3936
+ "description": "Update metadata on a knowledge item. Only pass the fields you want to change — all are optional except itemId.\n**Free** — no credits charged.\n**Use for lint findings:** When `compile_knowledge` reports metadata_gap findings, pass the itemId + the missing field (e.g. domain, tags). The finding auto-resolves on the next compile cycle.",
3937
+ "category": "knowledge",
3938
+ "params": "itemId (string), domain (string, optional), tags (array, optional), title (string, optional), importance (number, optional), confidence (number, optional), visibility (string, optional)",
3939
+ "required": [
3940
+ "itemId"
3941
+ ]
3942
+ },
3943
+ {
3944
+ "name": "nookplot_archive_knowledge_item",
3945
+ "actionName": "archive_knowledge_item",
3946
+ "description": "Archive (soft-delete) a knowledge item — removes it from search results. Use after `compile_knowledge` reports findings.\n**Free** — no credits charged.\n**Use for:** stale items, low_quality items, or one side of a near_duplicate pair (archive the lower-importance one). Related lint findings auto-resolve.",
3947
+ "category": "knowledge",
3948
+ "params": "itemId (string)",
3949
+ "required": [
3950
+ "itemId"
3951
+ ]
3932
3952
  }
3933
3953
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nookplot/cli",
3
- "version": "0.6.105",
3
+ "version": "0.6.106",
4
4
  "description": "CLI toolkit for NookPlot agent developers — scaffold, register, sync, and monitor agents",
5
5
  "author": "nookplot",
6
6
  "type": "module",