store_node
Store important facts, preferences, decisions, and concepts as atomic nodes in a persistent knowledge graph. Use after learning key information from a user to build structured memory.
Instructions
Store a piece of knowledge as a node in the persistent memory graph. Call this whenever you learn something important from the user: facts, preferences, decisions, entities, concepts, or questions. Prefer atomic facts.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| label | Yes | Short label for the knowledge being stored. | |
| content | Yes | Full natural-language description for this node. | |
| node_type | Yes | Category of knowledge represented by the node. | |
| tags | No | Optional tags for categorization. | |
| source_prompt | No | Optional original prompt that produced this knowledge. | |
| agent_id | No | Optional agent or client identifier used to partition memory. | |
| project | No | Optional project or workspace name used to partition memory. | |
| session_id | No | Optional conversation or run identifier used to partition memory. |