@riligar/agents-memories 1.2.0 → 1.3.0
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 +7 -7
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
# RiLiGar Agents Memories
|
|
2
2
|
|
|
3
|
-
A high-performance, persistent memory system for AI agents, built on the **Model Context Protocol (MCP)**. RiLiGar transforms flat data into a **Relational Knowledge Graph** featuring **Resonance Intelligence** and **
|
|
3
|
+
A high-performance, persistent memory system for AI agents, built on the **Model Context Protocol (MCP)**. RiLiGar transforms flat data into a **Relational Knowledge Graph** featuring **Resonance Intelligence** and the **Self-Improvement Protocol (SIP)**.
|
|
4
4
|
|
|
5
|
-
Now evolved into a **
|
|
5
|
+
Now evolved into a **Self-improving System**, RiLiGar can be used both as a standalone MCP server and as a core library for cognitive applications.
|
|
6
6
|
|
|
7
|
-
## 🧠 Philosophy: The Cognitive Self
|
|
7
|
+
## 🧠 Philosophy: The Cognitive Self & SIP
|
|
8
8
|
|
|
9
|
-
RiLiGar focuses on **Relational Intelligence**. Memory is not just retrieval; it is an extension of the agent's identity.
|
|
9
|
+
RiLiGar focuses on **Relational Intelligence**. Memory is not just retrieval; it is an extension of the agent's identity. With the **Self-Improvement Protocol (SIP)**, the system transitions from passive storage to active learning. By capturing the **Rationale** of every decision, the agent can mine past patterns, audit its own architecture, and evolve its skills autonomously.
|
|
10
10
|
|
|
11
11
|
---
|
|
12
12
|
|
|
@@ -84,10 +84,10 @@ console.log(results)
|
|
|
84
84
|
|
|
85
85
|
## 🛠️ MCP Tools Reference
|
|
86
86
|
|
|
87
|
-
- `save`: Stores content with automatic priority inference
|
|
88
|
-
- `search`: Relational semantic search
|
|
87
|
+
- `save`: Stores content with automatic priority inference. **REQUIRED**: Include **Rationale** to enable **Pattern Mining**.
|
|
88
|
+
- `search`: Relational semantic search. Essential for **Pattern Mining** and avoiding past errors (SIP).
|
|
89
89
|
- `bridge`: Manually links two memory paths (e.g., `Architecture` -> `Security`).
|
|
90
|
-
- `inspect`: Generates a **Mermaid.js** graph
|
|
90
|
+
- `inspect`: Generates a **Mermaid.js** graph. Use for **Architecture Audit (SIP)**.
|
|
91
91
|
- `list`: Shows all unique memory paths.
|
|
92
92
|
|
|
93
93
|
---
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@riligar/agents-memories",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "RiLiGar Agents Memories - A self-improving relational memory system for AI agents.",
|
|
5
5
|
"module": "src/index.js",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
"scripts": {
|
|
26
26
|
"dev": "bun --watch src/server/index.js",
|
|
27
27
|
"start": "bun src/server/index.js",
|
|
28
|
-
"test": "bun src/test.js"
|
|
28
|
+
"test": "bun src/test.js",
|
|
29
|
+
"build:pdf": "bun scripts/generate-pdf.js"
|
|
29
30
|
},
|
|
30
31
|
"dependencies": {
|
|
31
32
|
"@huggingface/transformers": "^4.0.1",
|
|
@@ -39,6 +40,7 @@
|
|
|
39
40
|
"@semantic-release/github": "^12.0.6",
|
|
40
41
|
"@semantic-release/npm": "^13.1.5",
|
|
41
42
|
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
43
|
+
"md-to-pdf": "^5.2.5",
|
|
42
44
|
"semantic-release": "^25.0.3"
|
|
43
45
|
}
|
|
44
46
|
}
|