
skrills
by athola·★ 64·Score 48
A 36-tool MCP server that validates, analyzes, and syncs skills across Claude Code, Codex CLI, Copilot CLI, and Cursor.
Overview
Skrills is a comprehensive skill coordination tool that bridges the gap between different AI coding assistants. It validates skills against each platform's requirements, syncs skills and configurations between CLIs, and provides analytics for token optimization. The Rust-based implementation includes a built-in MCP server exposing 36 tools for validation, sync, intelligence operations, and research capabilities.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose Skrills when working across multiple AI coding assistants (Claude Code, Codex CLI, Copilot CLI, Cursor) and need to maintain skill consistency and validate compatibility across platforms.
When NOT to choose this
Don't choose Skrills if you only use a single AI coding assistant or if you need runtime skill injection into prompts, as Skrills only validates and syncs files without runtime capabilities.
Tools this server exposes
12 tools extracted from the READMEsync-allSyncs skills, commands, agents, MCP servers, hooks, rules, preferences, and plugin assets between all CLIs
validateValidate skills against different CLI requirements with optional autofix
analyzeAnalyze token usage and provide optimization suggestions
syncSync assets between specific CLI environments
serveStart MCP server with HTTP transport and browser dashboard
cold-windowLaunch real-time dashboard with continuous analysis of skills and plugins
tuiLaunch interactive terminal user interface dashboard
multi-cli-agentLaunch an agent with automatic backend routing between CLIs
skill-deprecateMark a skill as deprecated across all CLI environments
skill-rollbackRoll back a skill to a previous version
skill-importImport a skill from a marketplace or repository
skill-scoreScore and rank skills based on usage and performance metrics
Note: Tool names inferred from CLI command examples. The README mentions 36 MCP tools but only provides CLI examples. The actual MCP tool signatures and descriptions are not fully documented in this README excerpt.
Comparable tools
Installation
# macOS/Linux
curl -LsSf https://raw.githubusercontent.com/athola/skrills/HEAD/scripts/install.sh | sh
# Windows PowerShell
powershell -ExecutionPolicy Bypass -NoLogo -NoProfile -Command "
Remove-Item alias:curl -ErrorAction SilentlyContinue; iwr https://raw.githubusercontent.com/athola/skrills/HEAD/scripts/install.ps1 -UseBasicParsing | iex"
cargo install skrillsTo use as MCP server:
skrills serve --stdioFor Claude Desktop integration, add to claude_desktop_config.json:
{
"mcpServers": {
"skrills": {
"command": "skrills",
"args": ["serve", "--stdio"]
}
}
}FAQ
- What AI coding assistants does Skrills support?
- Skrills supports Claude Code, Codex CLI, GitHub Copilot CLI, and Cursor, syncing skills, commands, agents, MCP servers, hooks, rules, preferences, and plugin assets between them.
- Can Skrills validate skills automatically?
- Yes, Skrills can validate skills against each platform's requirements and automatically fix issues like missing frontmatter or incompatible fields with the --autofix flag.
Compare skrills with
Last updated · Auto-generated from public README + GitHub signals.