
Knowledge Ops
Ingest, sync, dedupe, and search knowledge across repos, MCP memory, vector stores, and archive folders without a shadow workspace.
Install
npx skills add https://github.com/affaan-m/everything-claude-code --skill knowledge-opsWhat is this skill?
- Live workspace model: code in real repos, context in GitHub/Linear/repo-local files
- Layer 1 active execution truth from GitHub, Linear, and operational sources
- Ingest documents and conversations into structured durable KB storage
- Sync and deduplicate across local files, MCP memory, Supabase, and Git
- Retrieval prompts for what do I know about X across layers
Adoption & trust: 3.1k installs on skills.sh; 210k GitHub stars; 2/3 security scanners passed (skills.sh audits).
Recommended Skills
Grill Memattpocock/skills
Grill With Docsmattpocock/skills
Brainstormingobra/superpowers
Lark Tasklarksuite/cli
Lark Workflow Standup Reportlarksuite/cli
Cavemanjuliusbrussee/blueprint
Journey fit
Common Questions / FAQ
Is Knowledge Ops safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.
SKILL.md
READMESKILL.md - Knowledge Ops
# Knowledge Operations Manage a multi-layered knowledge system for ingesting, organizing, syncing, and retrieving knowledge across multiple stores. Prefer the live workspace model: - code work lives in the real cloned repos - active execution context lives in GitHub, Linear, and repo-local working-context files - broader human-facing notes can live in a non-repo context/archive folder - durable cross-machine memory belongs in the knowledge base, not in a shadow repo workspace ## When to Activate - User wants to save information to their knowledge base - Ingesting documents, conversations, or data into structured storage - Syncing knowledge across systems (local files, MCP memory, Supabase, Git repos) - Deduplicating or organizing existing knowledge - User says "save this to KB", "sync knowledge", "what do I know about X", "ingest this", "update the knowledge base" - Any knowledge management task beyond simple memory recall ## Knowledge Architecture ### Layer 1: Active execution truth - **Sources:** GitHub issues, PRs, discussions, release notes, Linear issues/projects/docs - **Use for:** the current operational state of the work - **Rule:** if something affects an active engineering plan, roadmap, rollout, or release, prefer putting it here first ### Layer 2: Claude Code Memory (Quick Access) - **Path:** `~/.claude/projects/*/memory/` - **Format:** Markdown files with frontmatter - **Types:** user preferences, feedback, project context, reference - **Use for:** quick-access context that persists across conversations - **Automatically loaded at session start** ### Layer 3: MCP Memory Server (Structured Knowledge Graph) - **Access:** MCP memory tools (create_entities, create_relations, add_observations, search_nodes) - **Use for:** Semantic search across all stored memories, relationship mapping - **Cross-session persistence with queryable graph structure** ### Layer 4: Knowledge base repo / durable document store - **Use for:** curated durable notes, session exports, synthesized research, operator memory, long-form docs - **Rule:** this is the preferred durable store for cross-machine context when the content is not repo-owned code ### Layer 5: External Data Store (Supabase, PostgreSQL, etc.) - **Use for:** Structured data, large document storage, full-text search - **Good for:** Documents too large for memory files, data needing SQL queries ### Layer 6: Local context/archive folder - **Use for:** human-facing notes, archived gameplans, local media organization, temporary non-code docs - **Rule:** writable for information storage, but not a shadow code workspace - **Do not use for:** active code changes or repo truth that should live upstream ## Ingestion Workflow When new knowledge needs to be captured: ### 1. Classify What type of knowledge is it? - Business decision -> memory file (project type) + MCP memory - Active roadmap / release / implementation state -> GitHub + Linear first - Personal preference -> memory file (user/feedback type) - Reference info -> memory file (reference type) + MCP memory - Large document -> external data store + summary in memory - Conversation/session -> knowledge base repo + short summary in memory ### 2. Deduplicate Check if this knowledge already exists: - Search memory files for existing entries - Query MCP memory with relevant terms - Check whether the information already exists in GitHub or Linear before creating another local note - Do not create duplicates. Update existing entries instead. ### 3. Store Write to appropriate layer(s): - Always update Claude Code memory for quick access - Use MCP memory for semantic searchability and relationship mapping - Update GitHub / Linear f