skill-depot: A Local-First Memory and Skill System for MCP-Compatible AI Agents

What skill-depot Does
skill-depot addresses the problem of AI agent skills and knowledge piling up across scattered directories. Instead of loading everything into context (wasting tokens) or loading nothing (forgetting learned material), it provides a retrieval system that stores agent knowledge as Markdown files and uses vector embeddings to semantically search and selectively load only what's relevant.
How It Works
Agents interact with skill-depot through three levels of detail:
skill_search("query")returns search results with name, score, and snippetskill_preview("skill-name")returns a structured overview with headings and first sentence per sectionskill_read("skill-name")returns the full Markdown content
The skill_learn tool allows agents to create or append knowledge on the fly, returning actions like "created" or "appended" with tags merged.
Technical Implementation
- Embeddings: Uses local transformer model all-MiniLM-L6-v2 via ONNX (384-dim vectors, ~80MB one-time download)
- Storage: SQLite + sqlite-vec for vector search
- Fallback: BM25 term-frequency search when the model isn't available
- Protocol: MCP with 9 tools (search, preview, read, learn, save, update, delete, reindex, list)
- Format: Standard Markdown + YAML frontmatter (same format Claude Code and Codex use)
Setup and Use Case
Setup is simple: npx skill-depot init. The tool is designed for local-first, zero-config, MCP-native use with no API keys to manage, no server to run, and no framework lock-in. The tradeoff is a narrower scope—it doesn't do session management or automatic memory extraction (yet).
Comparison with Other Tools
- mem0: Good for managed memory layer with polished API, but has cloud dependency
- OpenViking: Full context database with session management, multi-type memory, and automatic extraction from conversations
- LangChain/LlamaIndex memory modules: Solid if already in those ecosystems
Future Considerations
The developer is considering adding:
- Memory types (distinguishing between skills, memories, and resources)
- Deduplication to detect near-duplicate entries
- TTL/expiration for temporary knowledge auto-cleanup
- Confidence scoring where memories reinforced across multiple sessions rank higher
📖 Read the full source: r/openclaw
👀 See Also

Claude Code Skill Delegates Coding to Mistral/DeepSeek: 57M Tokens Saved, 90-100% Cost Reduction
A Claude Code skill called vibe-skill delegates low-level coding to cheap models like Mistral or DeepSeek while keeping Claude's planning. After 254 runs over 10 days, it saved 57M tokens and achieved 90-100% cost savings with 98% success rate.

Approval Boundary Tool for Claude Code Repository Work
A developer built an approval boundary tool that adds a review step before local execution when using Claude Code for repository work. The tool follows a loop: see the plan first, approve once, let the run happen locally, and keep proof afterward.

ClawHost Open-Source OpenClaw One-Click Deploy Hits 200+ GitHub Stars
ClawHost, an open-source tool for one-click OpenClaw installation with full server access and control, has reached 200+ GitHub stars. The project addresses issues with unstable commercial wrappers by providing a free, self-hostable solution.
LTM: A JSON Protocol for Portable Agent Memory Across Models and Machines
LTM is a JSON protocol (Core Memory Packet) plus CLI/server for persisting agent context—dead ends, constraints, next steps—across models, editors, and machines. Packets are 2-5 KB, redact secrets, and support MCP.