cortex-navigate-knowledge — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited cortex-navigate-knowledge (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
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
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.
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".
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.
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"
})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.
Understanding a new codebase:
Debugging with context:
Architecture review:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.