cozo-memory 1.2.4 → 1.2.6

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/README.md CHANGED
@@ -333,7 +333,7 @@ graph TB
333
333
 
334
334
  ## MCP Tools Overview
335
335
 
336
- The interface is reduced to **4 consolidated tools**:
336
+ The interface is reduced to **5 consolidated tools**:
337
337
 
338
338
  | Tool | Purpose | Key Actions |
339
339
  |------|---------|-------------|
@@ -341,6 +341,7 @@ The interface is reduced to **4 consolidated tools**:
341
341
  | `query_memory` | Read operations | search, advancedSearch, context, graph_rag, graph_walking, agentic_search, adaptive_retrieval |
342
342
  | `analyze_graph` | Graph analysis | explore, communities, pagerank, betweenness, hits, shortest_path, semantic_walk |
343
343
  | `manage_system` | Maintenance | health, metrics, export, import, cleanup, defrag, reflect, snapshots |
344
+ | `edit_user_profile` | User preferences | Edit global user profile with preferences and work style |
344
345
 
345
346
  > **See [docs/API.md](docs/API.md) for complete API reference with all parameters and examples**
346
347
 
package/dist/index.js CHANGED
@@ -2190,7 +2190,7 @@ ids[id] <- $ids
2190
2190
  if (missingHeaders.length > 0) {
2191
2191
  return {
2192
2192
  error: `Invalid Datalog result set. Missing columns: ${missingHeaders.join(", ")}. Expected: ${expectedHeaders.join(", ")}`,
2193
- hint: "Ensure all variables in the rule head are bound in the rule body. See cozo-memory-guide for examples."
2193
+ hint: "Ensure all variables in the rule head are bound in the rule body. See docs/USAGE-GUIDE.md for examples."
2194
2194
  };
2195
2195
  }
2196
2196
  }
@@ -2205,7 +2205,7 @@ ids[id] <- $ids
2205
2205
  }
2206
2206
  return {
2207
2207
  error: `Datalog syntax error: ${errorMsg}`,
2208
- hint: hint || "See cozo-memory-guide for correct Datalog syntax and examples."
2208
+ hint: hint || "See docs/USAGE-GUIDE.md for correct Datalog syntax and examples."
2209
2209
  };
2210
2210
  }
2211
2211
  const id = (0, uuid_1.v4)();
@@ -3442,7 +3442,7 @@ Advanced: run_transaction, add_inference_rule, ingest_file, session/task managem
3442
3442
 
3443
3443
  Use entity_id='global_user_profile' for storing persistent user preferences (automatically boosted in searches).
3444
3444
 
3445
- For detailed action descriptions, parameters, and examples, see the cozo-memory-guide steering file.
3445
+ For detailed action descriptions, parameters, and examples, see docs/USAGE-GUIDE.md.
3446
3446
 
3447
3447
  Note: Inference rules must return exactly 5 columns: [from_id, to_id, relation_type, confidence, reason]. Invalid syntax will result in errors.`,
3448
3448
  parameters: MutateMemoryParameters,
@@ -3802,7 +3802,7 @@ Available actions:
3802
3802
  - suggest_connections: Connection suggestions with entity_id (required)
3803
3803
  - get_zettelkasten_stats, get_activation_stats, get_salience_stats: Statistics (no params required)
3804
3804
 
3805
- Note: User profile observations (entity_id='global_user_profile') are automatically boosted in searches. For detailed action descriptions and parameters, see the cozo-memory-guide steering file.`,
3805
+ Note: User profile observations (entity_id='global_user_profile') are automatically boosted in searches. For detailed action descriptions and parameters, see docs/USAGE-GUIDE.md.`,
3806
3806
  parameters: QueryMemoryParameters,
3807
3807
  execute: async (args) => {
3808
3808
  await this.initPromise;
@@ -4458,7 +4458,7 @@ Advanced: semantic_walk, infer_relations, bridge_discovery, hnsw_clusters, tempo
4458
4458
 
4459
4459
  Use 'explore' without end_entity for neighborhood, with end_entity for shortest path.
4460
4460
 
4461
- For detailed action descriptions and parameters, see the cozo-memory-guide steering file.`,
4461
+ For detailed action descriptions and parameters, see docs/USAGE-GUIDE.md.`,
4462
4462
  parameters: AnalyzeGraphParameters,
4463
4463
  execute: async (args) => {
4464
4464
  await this.initPromise;
@@ -4925,7 +4925,7 @@ Important: Use confirm=false for dry-run before cleanup/defrag. clear_memory req
4925
4925
 
4926
4926
  Note: For statistics (get_salience_stats, get_activation_stats, get_zettelkasten_stats), use query_memory tool instead.
4927
4927
 
4928
- For detailed action descriptions and parameters, see the cozo-memory-guide steering file.`,
4928
+ For detailed action descriptions and parameters, see docs/USAGE-GUIDE.md.`,
4929
4929
  parameters: ManageSystemParameters,
4930
4930
  execute: async (args) => {
4931
4931
  await this.initPromise;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cozo-memory",
3
- "version": "1.2.4",
3
+ "version": "1.2.6",
4
4
  "mcpName": "io.github.tobs-code/cozo-memory",
5
5
  "description": "Local-first persistent memory system for AI agents with hybrid search, graph reasoning, and MCP integration",
6
6
  "main": "dist/index.js",