Memory
Human-reviewed memory.
Updated on January 1, 1970
Privacy and analytics
We use necessary technical cookies and, only with your consent, analytics and marketing pixels to improve the website and measure campaigns.
Human-reviewed memory.
Updated on January 1, 1970
Searches reviewed brand memory: accepted facts, decisions and episode summaries of conversations and works. Hybrid keyword and semantic search; every hit carries its source.
| Field | Value |
|---|---|
| Kind | Read |
| HTTP method | POST /api/v1/memory.search |
| MCP tool | memory_search |
| Scope | memory.read |
| Minimum role | Viewer |
| Human confirmation | No |
| Doors | Nödo, Voice, MCP, API |
| Status | Planned |
| Widget | sources |
Input
{
query: string // ≤ 300
kinds?: Array<"fact" | "decision" | "episode">
asOf?: string // ISO date: return what was valid on that day.
limit?: integer // 1–20 · default 8
}Output
{
items: Array<{
id: string // uuid
kind: "fact" | "decision" | "episode"
text: string
section: string | null
validFrom: string | null
validUntil: string | null
source: {
conversationId?: string // uuid
messageSequence?: integer // -9007199254740991–9007199254740991
taskId?: string // uuid
assetId?: string // uuid
url?: string // uri
}
score: number
}>
}Proposes to remember an explicit decision or fact stated by a person, citing the message. It stays pending until someone accepts it in Genome. At most 3 per run; never from internal or private threads.
| Field | Value |
|---|---|
| Kind | Write |
| HTTP method | POST /api/v1/memory.propose |
| MCP tool | memory_propose |
| Scope | memory.write |
| Minimum role | Member |
| Human confirmation | No |
| Doors | Nödo, Voice |
| Status | Available |
Input
{
kind: "fact" | "decision"
section: string // ≤ 40
text: string // ≤ 1000
validFrom?: string
validUntil?: string
citation: {
conversationId?: string // uuid
messageSequence?: integer // -9007199254740991–9007199254740991
taskId?: string // uuid
assetId?: string // uuid
url?: string // uri
}
}Output
{
ok: true
id?: string
revision?: integer // -9007199254740991–9007199254740991
}