Knowledge base management, ingestion, sync, and retrieval across multiple storage layers (local files, MCP memory, vector stores, Git repos). Use when the user wants to save, organize, sync, deduplicate, or search across their knowledge systems.
Manage a multi-layered knowledge system for ingesting, organizing, syncing, and retrieving knowledge across multiple stores.
Prefer the live workspace model:
~/.claude/projects/*/memory/When new knowledge needs to be captured:
What type of knowledge is it?
Check if this knowledge already exists:
Write to appropriate layer(s):
Update any relevant indexes or summary files.
Periodically sync conversation history into the knowledge base:
Mirror important workspace configuration and scripts to the knowledge base:
When the information affects active execution:
Pull knowledge from multiple sources into one place:
# Short-term: current session context
Use TodoWrite for in-session task tracking
# Medium-term: project memory files
Write to ~/.claude/projects/*/memory/ for cross-session recall
# Long-term: GitHub / Linear / KB
Put active execution truth in GitHub + Linear
Put durable synthesized context in the knowledge base repo
# Semantic layer: MCP knowledge graph
Use mcp__memory__create_entities for permanent structured data
Use mcp__memory__create_relations for relationship mapping
Use mcp__memory__add_observations for new facts about known entities
Use mcp__memory__search_nodes to find existing knowledge
Before completing any knowledge operation: