cozo-memory 1.2.4 → 1.2.5
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/index.js +6 -6
- package/package.json +1 -1
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
3
|
+
"version": "1.2.5",
|
|
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",
|