/cortex-navigate-knowledge
Navigate the knowledge graph — trace entity relationships, explore causal chains, drill into memory clusters, and traverse co-access paths. Use when the user asks 'how are these related', 'what connects X to Y', 'show me the knowledge graph', 'trace the relationship', 'what
$ npx -y skills add cdeust/Cortex --skill cortex-navigate-knowledge --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/cortex-navigate-knowledge
Context preview
The summary Claude sees to decide when to auto-load this skill.
Navigate the knowledge graph — trace entity relationships, explore causal chains, drill into memory clusters, and traverse co-access paths. Use when the user asks 'how are these related', 'what connects X to Y', 'show me the knowledge graph', 'trace the relationship', 'what
SKILL.md
cortex-navigate-knowledge.SKILL.mdname: cortex-navigate-knowledge
description: "Navigate the knowledge graph — trace entity relationships, explore causal chains, drill into memory clusters, and traverse co-access paths. Use when the user asks 'how are these related', 'what connects X to Y', 'show me the knowledge graph', 'trace the relationship', 'what caused X', 'drill down into', 'explore connections', or when you need to understand the web of relationships between concepts, entities, and memories."
Navigate Knowledge — Graph Exploration and Causal Chains
Keywords
knowledge graph, relationships, connections, causal chain, how are these related, what connects, drill down, explore, navigate, entity graph, trace, cause and effect, related to, linked to, co-access, cluster
Overview
Cortex maintains a knowledge graph of entities (people, technologies, concepts, files) and their relationships extracted from memories. This skill lets you traverse that graph — follow causal chains, explore co-access patterns, drill into fractal memory clusters, and understand how different pieces of knowledge connect.
**Use this skill when:** You need to understand relationships between concepts, trace cause-and-effect chains, or explore a topic area systematically.
Workflow
Step 1: Trace Causal Chains
Follow entity relationships through the knowledge graph:
cortex:get_causal_chain({
"entity": "PostgreSQL",
"direction": "both",
"max_depth": 3
})Returns a chain of entities connected by typed relationships (causes, uses, depends_on, related_to, etc.). Direction can be `"forward"` (effects), `"backward"` (causes), or `"both"`.
Step 2: Navigate Co-Access Paths
Find memories frequently accessed together using Successor Representation:
cortex:navigate_memory({
"memory_id": <starting_memory_id>,
"depth": 2,
"max_nodes": 20
})Returns a graph of memories connected by co-access frequency — revealing implicit relationships that aren't in the explicit knowledge graph.
Step 3: Hierarchical Exploration
Browse memories through fractal clusters (L0 = broad, L1 = mid, L2 = specific):
cortex:recall_hierarchical({
"query": "authentication system",
"levels": 3
})Then drill into any interesting cluster:
cortex:drill_down({
"cluster_id": "<cluster from hierarchical recall>",
"level": "L1"
})Step 4: Detect Structural Gaps
Find disconnected or under-connected areas:
cortex:detect_gaps({
"domain": "<optional>"
})Returns isolated entities, sparse domains, and temporal drift — areas where your knowledge graph has holes.
Use Cases
**Understanding a new codebase:** 1. Recall hierarchical to get broad topic clusters 2. Drill down into the most relevant cluster 3. Navigate co-access paths from key memories 4. Trace causal chains for core entities
**Debugging with context:** 1. Recall memories about the error/module 2. Get causal chain for the affected entity 3. Navigate to co-accessed memories (past fixes, related patterns)
**Architecture review:** 1. Get causal chains for key components 2. Detect gaps in architectural documentation 3. Assess coverage for each module
Tips
- **Start broad, go narrow**: Use hierarchical recall first, then drill down and navigate from specific memories
- **Causal chains reveal architecture**: The knowledge graph captures how components depend on each other — useful for impact analysis
- **Co-access reveals workflow**: Memories accessed together often represent a workflow or related concern, even if they're not explicitly linked
Read more
name: cortex-navigate-knowledge description: "Navigate the knowledge graph — trace entity relationships, explore causal chains, drill into memory clusters, and traverse co-access paths. Use when the user asks 'how are these related', 'what connects X to Y', 'show me the knowledge graph', 'trace the relationship', 'what caused X', 'drill down into', 'explore connections', or when you need to understand the web of relationships between concepts, entities, and memories."
Navigate Knowledge — Graph Exploration and Causal Chains
Keywords
knowledge graph, relationships, connections, causal chain, how are these related, what connects, drill down, explore, navigate, entity graph, trace, cause and effect, related to, linked to, co-access, cluster
Overview
Cortex maintains a knowledge graph of entities (people, technologies, concepts, files) and their relationships extracted from memories. This skill lets you traverse that graph — follow causal chains, explore co-access patterns, drill into fractal memory clusters, and understand how different pieces of knowledge connect.
**Use this skill when:** You need to understand relationships between concepts, trace cause-and-effect chains, or explore a topic area systematically.
Workflow
Step 1: Trace Causal Chains
Follow entity relationships through the knowledge graph:
cortex:get_causal_chain({
"entity": "PostgreSQL",
"direction": "both",
"max_depth": 3
})Returns a chain of entities connected by typed relationships (causes, uses, depends_on, related_to, etc.). Direction can be `"forward"` (effects), `"backward"` (causes), or `"both"`.
Step 2: Navigate Co-Access Paths
Find memories frequently accessed together using Successor Representation:
cortex:navigate_memory({
"memory_id": <starting_memory_id>,
"depth": 2,
"max_nodes": 20
})Returns a graph of memories connected by co-access frequency — revealing implicit relationships that aren't in the explicit knowledge graph.
Step 3: Hierarchical Exploration
Browse memories through fractal clusters (L0 = broad, L1 = mid, L2 = specific):
cortex:recall_hierarchical({
"query": "authentication system",
"levels": 3
})Then drill into any interesting cluster:
cortex:drill_down({
"cluster_id": "<cluster from hierarchical recall>",
"level": "L1"
})Step 4: Detect Structural Gaps
Find disconnected or under-connected areas:
cortex:detect_gaps({
"domain": "<optional>"
})Returns isolated entities, sparse domains, and temporal drift — areas where your knowledge graph has holes.
Use Cases
**Understanding a new codebase:** 1. Recall hierarchical to get broad topic clusters 2. Drill down into the most relevant cluster 3. Navigate co-access paths from key memories 4. Trace causal chains for core entities
**Debugging with context:** 1. Recall memories about the error/module 2. Get causal chain for the affected entity 3. Navigate to co-accessed memories (past fixes, related patterns)
**Architecture review:** 1. Get causal chains for key components 2. Detect gaps in architectural documentation 3. Assess coverage for each module
Tips
- **Start broad, go narrow**: Use hierarchical recall first, then drill down and navigate from specific memories
- **Causal chains reveal architecture**: The knowledge graph captures how components depend on each other — useful for impact analysis
- **Co-access reveals workflow**: Memories accessed together often represent a workflow or related concern, even if they're not explicitly linked
Cross-platform persistent memory MCP for Codex, Gemini CLI, Claude Code, and other local MCP hosts. 36 cited neuroscience mechanisms, local-first SQLite/PostgreSQL, hybrid retrieval, decay-based consolidation, and reproducible benchmarks. Claude adds optional automatic lifecycle hooks.
Repo: cdeust/Cortex
Other skills on hypermnesia-mcp.
- /cortex-automate
Set up automation — prospective memory triggers, neuro-symbolic rules, and CLAUDE.md sync. Use when the user says 'remind me when', 'trigger when', 'create a rule', 'auto-remember', 'sync to CLAUDE.md', 'push insights', 'set up trigger', 'when I open this file', 'when this
Open skill - /cortex-consolidate
Run memory maintenance — decay old memories, compress stale content, consolidate episodic memories into semantic knowledge, and run sleep-like replay. Use when the user says 'clean up memories', 'consolidate', 'run maintenance', 'compress old memories', 'memory cleanup', or
Open skill - /cortex-debug-memory
Debug and fix memory system issues — validate memories, rate quality, manage protection, forget bad memories, and restore from checkpoints. Use when the user says 'fix memory', 'bad memory', 'wrong memory', 'delete this', 'protect this', 'this memory is wrong', 'memory quality',
Open skill - /cortex-explore-memory
Explore the memory system's state, find gaps in knowledge, assess coverage, and get diagnostic information. Use when the user asks 'what does my memory look like', 'show me memory stats', 'what am I missing', 'how good is my knowledge', 'memory health', 'show coverage', 'find
Open skill - /cortex-import
Import memories from other AI memory systems into Cortex. Supports claude-mem (SQLite), Claude Desktop sessions, ChatGPT web export (JSON), Gemini Takeout (JSON), Cursor conversations, and Claude Code JSONL. Use when the user says 'import from claude-mem', 'migrate memories',
Open skill - /cortex-profile
View and manage your cognitive profile — how you think, work patterns, blind spots, and cross-domain connections. Use when the user says 'show my profile', 'how do I work', 'what are my patterns', 'cognitive style', 'blind spots', 'methodology', or at the start of a session to
Open skill

