cozo-memory 1.2.1 → 1.2.2
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 +21 -0
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -4436,6 +4436,18 @@ Notes: 'adaptive_retrieval' learns from usage and optimizes over time. 'dynamic_
|
|
|
4436
4436
|
zod_1.z.object({
|
|
4437
4437
|
action: zod_1.z.literal("hnsw_clusters"),
|
|
4438
4438
|
}),
|
|
4439
|
+
zod_1.z.object({
|
|
4440
|
+
action: zod_1.z.literal("discover_logical_edges"),
|
|
4441
|
+
entity_id: zod_1.z.string().describe("ID of the entity to discover logical edges for"),
|
|
4442
|
+
}),
|
|
4443
|
+
zod_1.z.object({
|
|
4444
|
+
action: zod_1.z.literal("materialize_logical_edges"),
|
|
4445
|
+
entity_id: zod_1.z.string().describe("ID of the entity to materialize logical edges for"),
|
|
4446
|
+
}),
|
|
4447
|
+
zod_1.z.object({
|
|
4448
|
+
action: zod_1.z.literal("detect_temporal_patterns"),
|
|
4449
|
+
entity_id: zod_1.z.string().describe("ID of the entity to detect temporal patterns for"),
|
|
4450
|
+
}),
|
|
4439
4451
|
]);
|
|
4440
4452
|
const AnalyzeGraphParameters = zod_1.z.object({
|
|
4441
4453
|
action: zod_1.z
|
|
@@ -4885,6 +4897,15 @@ Supported actions:
|
|
|
4885
4897
|
entity_id: zod_1.z.string().optional().describe("Entity ID to compact"),
|
|
4886
4898
|
model: zod_1.z.string().optional().default("demyagent-4b-i1:Q6_K"),
|
|
4887
4899
|
}),
|
|
4900
|
+
zod_1.z.object({
|
|
4901
|
+
action: zod_1.z.literal("compress_memory_levels"),
|
|
4902
|
+
entity_id: zod_1.z.string().describe("Entity ID to compress memory levels for"),
|
|
4903
|
+
level: zod_1.z.number().min(0).max(3).describe("Memory level to compress (0-3: L0_RAW, L1_SESSION, L2_WEEKLY, L3_MONTHLY)"),
|
|
4904
|
+
}),
|
|
4905
|
+
zod_1.z.object({
|
|
4906
|
+
action: zod_1.z.literal("analyze_memory_distribution"),
|
|
4907
|
+
entity_id: zod_1.z.string().describe("Entity ID to analyze memory distribution for"),
|
|
4908
|
+
}),
|
|
4888
4909
|
]);
|
|
4889
4910
|
const ManageSystemParameters = zod_1.z.object({
|
|
4890
4911
|
action: zod_1.z
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cozo-memory",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.2",
|
|
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",
|