agent_context
Get a full context summary of your knowledge graph.
Returns entity counts, most-connected entities, and recent activity.
Call this at the start of every conversation to bootstrap your memory.
remember
Store a fact as subject -> predicate -> object in the knowledge graph.
Use for any relationship, preference, decision, or event worth keeping across sessions.
Examples:
remember("Alice", "works_at", "Orbit Labs")
remember("Project Atlas", "has_status", "in progress", "As of Q1 2026")
remember_many
Store multiple facts at once. More efficient than looping remember().
Each fact needs: subject, predicate, object. Optional: context.
recall
Get everything known about an entity — all relationships in and out.
Use for full context on a person, project, org, concept, or any entity.
search
Search for entities in the graph by name (partial match).
Use this to discover what's in the graph before calling recall().
Returns names, types, and connection counts.
ask
Ask a natural language question about your knowledge graph.
Returns a synthesized answer backed by cited graph facts — no hallucination.
Every claim traces to a real stored fact with a timestamp.