Install
Quick Start
Configuration
Methods
Memory
| Method | Returns | Description |
|---|---|---|
store(content, opts?) | { id } | Store a memory |
search(query, opts?) | SearchResult | Semantic search |
list(opts?) | ListResult | Paginated list |
get(id) | Memory | Get by ID |
update(id, updates) | { updated } | Update content or tags |
delete(id) | { deleted } | Delete |
Knowledge Graph
| Method | Returns | Description |
|---|---|---|
graphTraverse(entity, opts?) | TraverseResult | Walk relationships |
graphSearch(query, opts?) | { entities } | Search entities |
graphEntities(opts?) | { entities } | List all entities |
Cognitive
| Method | Returns | Description |
|---|---|---|
getIdentity(opts?) | IdentityProfile | User profile |
overview() | OverviewResult | Knowledge graph stats |
contradictions() | { contradictions } | Conflicting facts |
Integration
| Method | Returns | Description |
|---|---|---|
webhook(eventType, content, opts?) | WebhookResult | CI/CD event |
exportMemories(opts?) | ExportResult | Export as JSON/Markdown |
importMemories(data, opts?) | { imported, failed } | Bulk import |
health() | object | Health check |
TypeScript
Full type definitions included. Key types:Memory, SearchResult, GraphEntity, GraphRelation, TraverseResult, IdentityProfile.