AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Cortex Navigate Knowledge

skill-cdeust-cortex-cortex-navigate-knowledge · by cdeust

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 concept…

No reviews yet
0 installs
10 views
0.0% view→install

Install

$ agentstack add skill-cdeust-cortex-cortex-navigate-knowledge

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-cdeust-cortex-cortex-navigate-knowledge)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
7d ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Cortex Navigate Knowledge? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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, dependson, relatedto, 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": ,
  "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": "",
  "level": "L1"
})

Step 4: Detect Structural Gaps

Find disconnected or under-connected areas:

cortex:detect_gaps({
  "domain": ""
})

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

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.