knowledge-ops

Manages ingestion, deduplication, sync, and retrieval across layered knowledge storage systems.

Updated Jan 28, 2026
One-click install
npx skills add https://github.com/scanady/nexus-skills --skill knowledge-ops-scanady
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: knowledge-ops
Source: https://github.com/scanady/nexus-skills/tree/main/skills/knowledge-ops
Command: npx skills add https://github.com/scanady/nexus-skills --skill knowledge-ops-scanady

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Knowledge scattered across chat sessions, local notes, GitHub issues, and memory files becomes impossible to find and maintain. This Skill provides a structured workflow for classifying, deduplicating, storing, and syncing knowledge across multiple storage layers so information lands in the right place every time. ## Core Features & Use Cases - Multi-layer storage routing: Classifies incoming knowledge and routes it to the right layer — Claude Code memory files, MCP memory knowledge graph, GitHub/Linear, a knowledge base repo, or external data stores like Supabase. - Deduplication-first ingestion: Searches existing memory files and MCP memory nodes before writing, updating existing entries instead of creating duplicates. - Sync operations: Syncs conversation sessions, workspace state, and cross-source exports (Claude, ChatGPT, bookmarks, GitHub activity) into a durable knowledge base repo with indexes and redacted secrets. - Use Case: After a long planning session, ask the agent to save the key decisions — it will classify each item, check for existing entries, write memory files with YAML frontmatter, create MCP memory entities and relations, and commit durable notes to the knowledge base repo. ## Quick Start Ask the agent to save this conversation's key decisions to the knowledge base and sync them across memory layers.

Frequently Asked Questions about knowledge-ops

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I save information to a persistent knowledge base from an AI session?▼

Classify the content type first, then search existing memory files and MCP memory for duplicates. Write concise Markdown files with YAML frontmatter for quick-access memory, create MCP memory entities for semantic search, and commit durable long-form notes to the knowledge base repo.

How do I sync conversation history into a knowledge base?▼

Export sessions from Claude, Codex, or other agent tools, then write them into the knowledge base repo with a generated session index for browsing. Redact sensitive values like API keys before committing and pushing.

What is the difference between Claude Code memory files and MCP memory?▼

Claude Code memory files are Markdown notes with frontmatter stored under ~/.claude/projects/*/memory/ and loaded automatically at session start. MCP memory is a structured knowledge graph supporting entities, relations, and semantic search across sessions.

When should knowledge go to GitHub or Linear instead of local notes?▼

Route information to GitHub issues, PRs, or Linear docs whenever it affects active engineering plans, roadmaps, rollouts, or releases. Local notes and the knowledge base repo are for durable synthesized context, not live execution truth.

How do I avoid duplicate entries when ingesting new knowledge?▼

Search before writing: grep memory files, query MCP memory with relevant terms, and check GitHub or Linear for existing records. Update the existing entry with new observations instead of creating a parallel copy.