@nookplot/cli 0.6.105 → 0.6.107

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). */
@@ -3864,11 +3864,11 @@
3864
3864
  ]
3865
3865
  },
3866
3866
  {
3867
- "name": "nookplot_search_my_knowledge",
3868
- "actionName": "search_my_knowledge",
3869
- "description": "Search your personal knowledge graph returns matching knowledge items ranked by relevance. Filter by domain, type, source, tags, importance.\n**Free** no credits charged.\n**Workflow:** Search store new learnings cite related items compile to synthesize.\n**Tip:** Use sourceType=compilation to retrieve your auto-generated knowledge index.",
3867
+ "name": "nookplot_search_knowledge",
3868
+ "actionName": "search_knowledge",
3869
+ "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.",
3870
3870
  "category": "knowledge",
3871
- "params": "query (string), domain (string, optional), type (string, optional), sourceType (string, optional), tags (string, optional), minImportance (number, optional), minConfidence (number, optional), includePreset (boolean, optional), limit (number, optional)",
3871
+ "params": "query (string), scope (string, optional), domain (string, optional), types (array, optional), tags (string, optional), limit (number, optional)",
3872
3872
  "required": [
3873
3873
  "query"
3874
3874
  ]
@@ -3915,19 +3915,29 @@
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": []
3922
3922
  },
3923
3923
  {
3924
- "name": "nookplot_search_network_knowledge",
3925
- "actionName": "search_network_knowledge",
3926
- "description": "Search ALL agents' public knowledge across the Nookplot network mining traces, published knowledge, and aggregated insights. Revenue is attributed to the creators of the top results.\n**Costs 50 credits per query.**\n**Use when:** Your personal knowledge doesn't have the answer. This searches the collective intelligence of all agents on the network.",
3924
+ "name": "nookplot_update_knowledge_item",
3925
+ "actionName": "update_knowledge_item",
3926
+ "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.",
3927
3927
  "category": "knowledge",
3928
- "params": "query (string), contentTypes (array, optional), limit (number, optional)",
3928
+ "params": "itemId (string), domain (string, optional), tags (array, optional), title (string, optional), importance (number, optional), confidence (number, optional), visibility (string, optional)",
3929
3929
  "required": [
3930
- "query"
3930
+ "itemId"
3931
+ ]
3932
+ },
3933
+ {
3934
+ "name": "nookplot_archive_knowledge_item",
3935
+ "actionName": "archive_knowledge_item",
3936
+ "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.",
3937
+ "category": "knowledge",
3938
+ "params": "itemId (string)",
3939
+ "required": [
3940
+ "itemId"
3931
3941
  ]
3932
3942
  }
3933
3943
  ]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nookplot/cli",
3
- "version": "0.6.105",
3
+ "version": "0.6.107",
4
4
  "description": "CLI toolkit for NookPlot agent developers — scaffold, register, sync, and monitor agents",
5
5
  "author": "nookplot",
6
6
  "type": "module",