exploring-knowledge-graph

Solid

Guidance for deep knowledge graph traversal across memories, entities, and relationships. Use when needing comprehensive context before planning, investigating connections between concepts, or answering "what do you know about X" questions.

AI & Automation 38 stars 13 forks Updated today MIT

Install

View on GitHub

Quality Score: 80/100

Stars 20%
53
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Exploring the Knowledge Graph Forgetful stores knowledge as an interconnected graph: memories link to other memories, entities link to memories, and entities relate to each other. Deep exploration reveals context that simple queries miss. ## Triggers | Trigger Phrase | Operation | |----------------|-----------| | `what do you know about X` | Full knowledge graph traversal | | `how do I explore the knowledge graph` | Graph exploration workflow | | `how are these concepts connected` | Entity relationship traversal | | `give me comprehensive context on X` | Deep multi-phase exploration | | `map out related knowledge for X` | Entity discovery and memory linking | --- ## When to Explore Explore the knowledge graph when: - Starting complex work that spans multiple topics - User asks "what do you know about X" - Planning requires understanding existing decisions/patterns - Investigating how concepts connect across projects - Need comprehensive context, not just top search results ## Exploration Phases Track visited IDs to prevent cycles. Execute phases sequentially. ### Phase 1: Semantic Entry Point ```javascript execute_forgetful_tool("query_memory", { "query": "<topic>", "query_context": "Exploring knowledge graph for comprehensive context", "k": 5, "include_links": true, "max_links_per_primary": 5 }) ``` Collect: `primary_memories` + `linked_memories` (1-hop connections). ### Phase 2: Expand Memory Details For key memories, get full details: ```javascri...

Details

Author
rjmurillo
Repository
rjmurillo/ai-agents
Created
7 months ago
Last Updated
today
Language
Markdown
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

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 caused X', 'drill down into', 'explore connections', or when you need to understand the web of relationships between concepts, entities, and memories.

68 Updated today
cdeust
AI & Automation Solid

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 gaps', 'what topics are weak', or when you need to understand the state of stored knowledge before a task.

68 Updated today
cdeust
AI & Automation Listed

recall-knowledge

Recall knowledge base entries by meaning, not just keywords — hybrid search (lexical ripgrep + local vector embeddings + see-link graph) over `.claude/knowledge/entries/`. Use when looking for prior knowledge, decisions, pitfalls, or context that may be worded differently from the query (e.g. a Japanese query vs English identifiers, or synonyms the entry does not literally contain). Falls back to ripgrep-only when the vector index or its dependencies are absent. On-demand only — it is NOT wired into the per-prompt hook (that stays ripgrep for instant, model-free injection).

3 Updated today
LevNas