Skip to content

Commit 55ad26a

Browse files
committed
readme correction
1 parent fe055dd commit 55ad26a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ Five process types. Each does one job.
8383

8484
**The Compactor** is a programmatic monitor (not an LLM) that watches context size per channel and triggers compaction before the channel fills up. Compaction workers run alongside without blocking.
8585

86-
**The Cortex** sees across all channels, workers, and branches simultaneously. It generates the memory bulletin, a periodically refreshed briefing of the agent's knowledge injected into every conversation. It supervises processes, maintains the memory graph, detects patterns, and provides an admin chat with full tool access.
86+
**The Cortex** sees across all channels, workers, and branches simultaneously. It maintains the agent's working memory a layered context assembly system that gives every conversation structured awareness of what's happening across the agent. Events are recorded as they happen; intra-day synthesis compresses them into narrative; daily summaries roll up at midnight; knowledge synthesis regenerates when the memory graph changes. The cortex supervises processes and maintains the memory graph.
8787

8888
```
8989
User sends message
@@ -123,13 +123,13 @@ State lives in tasks. Progress notes go on the task itself. After a crash, the n
123123

124124
### Memory
125125

126-
Spacebot's memory is a typed, graph-connected knowledge system in SQLite and LanceDB. Every memory has a type, an importance score, and graph edges to related memories. The agent distinguishes facts from decisions, preferences from goals. That structure lets the cortex synthesize a useful briefing rather than dumping raw search results into context.
126+
Spacebot's memory is a typed, graph-connected knowledge system in SQLite and LanceDB. Every memory has a type, an importance score, and graph edges to related memories. The agent distinguishes facts from decisions, preferences from goals.
127127

128128
- **Eight memory types** — Fact, Preference, Decision, Identity, Event, Observation, Goal, Todo
129129
- **Graph edges** — RelatedTo, Updates, Contradicts, CausedBy, PartOf
130130
- **Hybrid recall** — vector similarity + full-text search merged via Reciprocal Rank Fusion
131131
- **Memory import** — drop files into `ingest/` and Spacebot extracts structured memories automatically. Supports text, markdown, and PDF.
132-
- **Memory bulletin**the cortex generates a periodic knowledge briefing injected into every conversation
132+
- **Working memory**a five-layer context assembly system. Identity context, a structured event log, cross-channel activity map, participant awareness, and change-driven knowledge synthesis. Most layers are programmatic — no LLM calls to stay current
133133

134134
### Skills
135135

0 commit comments

Comments
 (0)