SkillMesh: MCP-Friendly Router for Large Tool Catalogs Reduces Context Size by 70%

SkillMesh is an MCP-friendly router designed to handle large tool and skill catalogs for AI agents. The creator identified that loading entire tool catalogs into every prompt hurts tool selection accuracy and inflates token costs as catalogs grow.
How SkillMesh Works
The approach focuses on selective context injection:
- Retrieves top-K relevant expert cards for the current query
- Injects only those cards into the agent's context
- Keeps the rest of the catalog out of the prompt
This reduces context size by approximately 70% in many cases and enables agents to scale across multiple domains without prompt bloat.
Current Features
SkillMesh currently supports:
- Claude integration via MCP server (
skillmesh-mcp) - Codex skill bundle integration
- OpenAI-style function schema in tool invocation metadata
Tools and capabilities can be installed by role, adding relevant functionality based on the task.
Example Use Case
For a query like "clean sales data, train a baseline model, and generate charts," SkillMesh would route to only relevant data processing, machine learning, and visualization expert cards instead of loading the entire catalog.
Installation and Feedback
The project is available on GitHub at SkillMesh. The creator is seeking feedback on:
- Retrieval quality (whether it picks the right tools)
- Registry format (ease of adding new tools)
- MCP integration ergonomics
📖 Read the full source: r/LocalLLaMA
👀 See Also

Open-source Specialist Dispatch adapter delegates complex tasks to Claude Code
expert-dispatch is a ~500-line bash script that lets a cheap AI assistant delegate complex coding tasks to Claude Code CLI. It uses commands like dispatch-cc run to send tasks and maintains per-project directories with CLAUDE.md for persistent context.

PeaDB: Redis-Compatible Database Coded with AI Assistants in C++20
A developer created PeaDB, a Redis 7.2.5 drop-in replacement written in C++20 using Codex, Copilot, and Claude, implementing ~147 commands with persistence, replication, and cluster support. Benchmarks show performance close to Redis.

iknowkungfu Skill Analyzes OpenClaw Usage to Recommend Missing Skills
iknowkungfu is a new OpenClaw skill that scans your agent's workspace, memory files, and conversation logs to identify what skills you're missing based on your actual usage patterns. It provides specific recommendations with trust scores and reasons tied to your workflow.
Claude Code Skill Tax: 2,596 Installed Skills, 40 Used, $91/Month Wasted
Every installed Claude Code skill loads into every session's system prompt. One user measured 102,651 tokens loaded per session with 98.6% never used, costing ~$91/month. An open-source tool, skill-tax, audits usage and cost.