Overview
The Culture System provides a shared knowledge layer across agents. Knowledge is stored persistently and can be automatically injected into agent instructions, creating organizational memory that compounds over time.Quick Start
Manual Knowledge Management
Auto-Reflection
WhenautoUpdate is enabled, after each agent run the system:
- Sends the input/output pair to a cheap model
- Asks: “What universal principle can we learn from this?”
- If a meaningful insight is found, stores it automatically
- This is fire-and-forget — it never blocks the response
CulturalKnowledge Schema
| Field | Type | Description |
|---|---|---|
id | string | Unique identifier |
name | string | Knowledge name/title |
content | string | The actual knowledge content |
summary | string? | Optional short summary |
categories | string[]? | Categorization tags |
notes | string? | Additional notes |
metadata | Record? | Arbitrary metadata |
agentId | string? | Source agent identifier |