pi-hermes-memory 0.6.2 → 0.6.3

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.
Files changed (2) hide show
  1. package/README.md +2 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -14,6 +14,8 @@ Your Pi agent normally forgets everything when you close a session. **This exten
14
14
 
15
15
  - 🔍 **Search every conversation** — "what did we discuss about auth?" finds it instantly
16
16
  - 🧠 **Persistent memory** — facts, preferences, corrections survive across sessions
17
+ - ⚠️ **Learns from failures** — remembers what didn't work so you don't repeat mistakes
18
+ - 🏷️ **Categorized memories** — failures, corrections, insights, conventions, and tool quirks organized for fast retrieval
17
19
  - 🛡️ **Secret scanning** — API keys and tokens are blocked from being saved
18
20
  - 📚 **Procedural skills** — the agent saves *how* it solved problems, not just what
19
21
  - ⚡ **Background learning** — reviews every 10 turns, saves what matters
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-hermes-memory",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "description": "🧠 Persistent memory + 🔍 session search + 🛡️ secret scanning for Pi. SQLite FTS5 search across every conversation, auto-consolidation, memory aging, procedural skills. 272 tests. Ported from Hermes agent.",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",