You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Spread activation follows strongest association links, with activation decaying per hop. Every accessed memory gets strengthened (access_count++, last_accessed updated).
161
+
Ranking considers multiple signals:
162
+
-**Activation score** from spread activation traversal
163
+
-**Recency bonus** (exponential decay from last access)
-**Feedback adjustment** (memories rated helpful get boosted, irrelevant get penalized)
166
+
-**Pattern evidence boost** (+0.1 for memories supporting matched patterns, +0.05 for abstraction sources)
167
+
-**Significance multiplier** (critical/important memories from structured concept extraction)
168
+
169
+
Suppressed memories (accumulated negative feedback) are filtered out by default. Every accessed memory gets strengthened (access_count++, last_accessed updated).
170
+
171
+
The `recall` tool supports `explain: true` to surface score breakdowns, `include_associations: true` to show the knowledge graph, and `format: "json"` for structured output.
-**Level 2 — Principles**: Generalizations across patterns
196
212
-**Level 3 — Axioms**: Fundamental truths with high confidence
197
213
198
-
Abstractions are grounded in evidence. Those that lose supporting evidence are demoted or archived.
214
+
Abstractions are grounded in evidence via `verifyGrounding()`. Young abstractions (< 7 days) have a confidence floor of 0.5 to prevent premature demotion. Frequently accessed abstractions (> 5 recalls) resist decay. Demotion is graduated: 0.9x for moderate evidence loss, 0.7x for significant, 0.5x for near-total (softened from 0.3x).
199
215
200
216
### Layer 9 — Reactor (Event-Driven Rules)
201
217
@@ -236,6 +252,7 @@ GET /abstractions Hierarchical abstractions
236
252
GET /projects Project summaries
237
253
238
254
GET /llm/usage LLM token usage by agent
255
+
GET /tool/usage MCP tool call analytics
239
256
240
257
GET /graph Association graph for D3.js visualization
241
258
@@ -265,6 +282,7 @@ Served at `http://localhost:9999/`. Features:
265
282
- Query tester with score explanations
266
283
- System health (LLM status, store health, watcher status)
267
284
- LLM usage monitoring (per-agent token consumption and cost)
0 commit comments