Install
openclaw skills install @space-cadet/graph-memoryQuery the agent's knowledge graph for entities, relationships, and statistics. Enables natural language exploration of accumulated session memory without shell commands.
openclaw skills install @space-cadet/graph-memoryQuery the agent's persistent knowledge graph — entities extracted from sessions, their relationships, and graph-wide statistics.
The graph is built from session history and contains people, projects, tools, concepts, files, errors, and more. Use this skill when the user asks about "what do you know about X", "how is X connected to Y", or when you need context about past work.
graph_search(query, options)Search the graph for entities matching a text query.
Parameters:
query (string, required) — Text to search for in entity names and canonical namesoptions (object, optional):
type (string) — Filter by entity type (e.g. person, project, tool, concept, file)deep (boolean) — Include relationship neighbors for each result (default: false)limit (number) — Max results to return (default: 20)Returns: Markdown string with matching entities, their types, mention counts, and optional neighbor lists.
Example:
graph_search("chimera", { type: "project", deep: true })
Error cases:
"Graph memory database not found at <path>""No entities matching '<query>' found in graph memory.""Graph query error: <message>"graph_stats()Return high-level statistics about the graph.
Parameters: None
Returns: Markdown string with:
Example:
graph_stats()
Error cases:
"Graph memory database not found at <path>""Graph query error: <message>"graph_related(entity, depth)Traverse the graph from a starting entity, showing connected entities up to N hops away.
Parameters:
entity (string, required) — Exact or approximate entity name to start fromdepth (number, optional) — Max traversal depth (default: 2, max: 5)Returns: Markdown relationship tree showing paths from the starting entity to connected entities, with relationship types and entity details.
Example:
graph_related("deepak", 2)
Error cases:
"Graph memory database not found at <path>""Entity '<entity>' not found in graph memory.""No relationships found for this entity in graph memory.""Graph query error: <message>"Common types in the graph:
| Type | Description |
|---|---|
person | People mentioned in sessions |
project | Projects, repositories, systems |
tool | Software tools, libraries, CLIs |
concept | Ideas, theories, patterns |
file | Specific files referenced |
error | Error types or failure modes |
topic | Broad subject areas |
institution | Organizations, universities |
research_paper | Academic papers |
~/.openclaw/workspace/.openclaw_memory/graph.dbgraph_search with deep: true to see immediate neighbors without full traversal