@korrlabs/mnemospi 4.1.0 → 4.2.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 +10 -1
- package/README.ru.md +9 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -114,7 +114,7 @@ One local server — and a connected agent harness gets the full memory stack.
|
|
|
114
114
|
| **Lifecycle hooks** | `pre_llm_call` context injection, `on_session_start`, `post_tool_call` auto-compression of tool outputs |
|
|
115
115
|
| **Publication v3.0.0** | Entries visible immediately after save, background refinement with seamless swap, quarantine with neutral retraction |
|
|
116
116
|
| **Self-protection** | Injection / secret detectors on input and publication, every output scanned, full per-entry audit |
|
|
117
|
-
| **Auto-pipeline** | Background processor: clustering, deduplication, quality gate, publication |
|
|
117
|
+
| **Auto-pipeline** | Background processor: clustering, deduplication, quality gate, publication. Entries awaiting refinement sit at `pipeline_state=pending` until the processor runs — in CLI-only deployments (no daemon) start it with `mnemos processor start`; `mnemos doctor` reports the pending-queue depth |
|
|
118
118
|
|
|
119
119
|
Autonomy for an arbitrary harness and LLM-driven enrichment are partial — the
|
|
120
120
|
full, honest map lives in [docs/en/features.md](docs/en/features.md).
|
|
@@ -142,6 +142,15 @@ control surfaces, and a storage layer you can read with your own eyes.
|
|
|
142
142
|
SQLite for metadata, a local numpy + SQLite vector index for recall, and an Obsidian-compatible vault
|
|
143
143
|
for the humans in the loop.
|
|
144
144
|
|
|
145
|
+
**Where this is going.** The shipped, measured rung is *stores and finds*. The next rungs —
|
|
146
|
+
*collapse with checks* (session → project → cross-project synthesis: automatic by default, but never
|
|
147
|
+
unconditional in authority — every derivative traces back to its sources, nothing pins without an
|
|
148
|
+
operator) and, later, *builds understanding* — open only as pre-registered experiments prove them
|
|
149
|
+
([ADR-0025](docs/project/adr/0025-memory-meta-level-lanes.md)). The invariant on that road is
|
|
150
|
+
**zero silent losses**: a fact is either retained, or its loss is visible. And the shape of the
|
|
151
|
+
ambition is a *nervous system, not a conductor* — memory that surfaces the right thing at the right
|
|
152
|
+
moment, never one that conducts the agent.
|
|
153
|
+
|
|
145
154
|
---
|
|
146
155
|
|
|
147
156
|
## 🤝 Connect any harness
|
package/README.ru.md
CHANGED
|
@@ -142,6 +142,15 @@ mnemos search "помнит между сессиями"
|
|
|
142
142
|
SQLite для метаданных, локальный векторный индекс на numpy + SQLite для recall и Obsidian-совместимый
|
|
143
143
|
vault для людей в контуре.
|
|
144
144
|
|
|
145
|
+
**Куда это движется.** Отгруженная и измеренная ступень — *хранит и находит*. Следующие ступени —
|
|
146
|
+
*свёртка с чеками* (синтез сессия → проект → кросс-проект: автоматическая по умолчанию, но никогда
|
|
147
|
+
безусловная по авторитету — каждый итог возводим к исходникам, ничто не пиннится без оператора) и
|
|
148
|
+
позже *строит понимание* — открываются только по мере подтверждения предрегистрированными
|
|
149
|
+
экспериментами ([ADR-0025](docs/project/adr/0025-memory-meta-level-lanes.md)). Инвариант этого
|
|
150
|
+
пути — **ноль тихих потерь**: факт либо сохранён, либо потеря видна. А форма амбиции — *нервная
|
|
151
|
+
система, а не дирижёр*: память, которая поднимает нужное в нужный момент, но никогда не дирижирует
|
|
152
|
+
агентом.
|
|
153
|
+
|
|
145
154
|
---
|
|
146
155
|
|
|
147
156
|
## 🤝 Подключение любого харнеса
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@korrlabs/mnemospi",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.2.0",
|
|
4
4
|
"description": "Mnemos memory & knowledge server — Pi extension. Spawns `mnemos mcp-server` over stdio and exposes every mnemos_* tool as a native Pi tool, plus the mnemos skill pack.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|