superskill
One-entry orchestrator for coding agents: jailed vault, FTS knowledge graph, 18-axis review, in-harness Chrome QA. Curated packs — not a 90k-skill dump.
Install / Use
claude mcp add permanu -- npx -y github:permanu/superskillIf the server publishes to npm under a different name, use that package instead — check the repo README.
MCP Server
Model Context Protocol server
Quality Score
Category
Development & EngineeringSupported Platforms
Our assessment of superskill
superskill scores 81/100 on our quality scale, 232nd of 1,283 Development & Engineering skills we index (top 19%).
Its MCP Server is 7.2 KB long, well organised into 18 sections with 5 code examples: a thorough specification that gives an agent plenty to work with.
It has 3 GitHub stars, so there is little community track record yet; judge it on its content.
Maintenance, license and trust
- The repository was last updated 2 days ago, so superskill is actively maintained.
- No license is declared. By default that means all rights are reserved: you can read it, but reusing or redistributing it is not clearly permitted. Ask the author before building on it commercially.
- Its trust signals score 80/100, with 2 cautions from licensing, adoption, age or documentation. These come from repository metadata, not a code audit — read the skill file before letting an agent act on it.
superskill compared with similar skills
All 4 of these similar skills score higher than superskill; compare them before choosing.
| Skill | Score | Stars | Updated | Format |
|---|---|---|---|---|
| superskill (this skill)by permanu | 81 | 3 | 2d ago | MCP Server |
| Agent-Reachby Panniantong | 100 | 85.0k | 8d ago | CLAUDE.md |
| headroomby headroomlabs-ai | 100 | 73.6k | today | CLAUDE.md |
| rufloby ruvnet | 100 | 73.1k | today | CLAUDE.md |
| career-opsby career-ops-hq | 100 | 72.5k | today | CLAUDE.md |
Frequently asked questions
- How do I install superskill?
- Run
claude mcp add permanu -- npx -y github:permanu/superskill. The install tabs above show the steps for each supported agent. - Which AI agents does superskill work with?
- It is written for Claude Code, Claude Desktop, Cursor and OpenAI Codex, as a MCP Server file. Other agents that read the same format can often use it too.
- Is superskill safe to use?
- It declares no license and scores 80/100 on trust signals. Skills are instructions an agent will follow, so read the file before installing it and do not approve commands you do not understand.
- Is superskill still maintained?
- The repository was last updated 2 days ago, so superskill is actively maintained.
Skill content
View source on GitHubSuperSkill
The runtime intelligence layer for AI agent skills.
The Problem
skills.sh solved skill discovery and installation — 90,000+ skills, 40+ agents, one standard. But installation is static. You browse, pick, install, and hope you chose right.
When you have 15 skills installed and say "write tests for my Go API" — which one loads? What about the three competing TDD skills? What if the model's context window can't fit them all?
skills.sh is where you find skills. SuperSkill is what loads the right one at the right time.
How It Works
- Install skills however you want —
npx skills add, manual download, or use the 87 built-in skills - Describe your task — "write tests for my Go API"
- SuperSkill scores, resolves, and loads — trigger-based matching picks the best skill, resolves collisions, respects your context budget
SuperSkill scans your installed skills (from ~/.claude/skills/, ~/.cursor/skills/, etc.), merges them with its built-in catalog, and routes tasks to the best match at runtime.
What SuperSkill Adds
| Layer | What it does | Why you need it | |-------|-------------|----------------| | Router | Task description → best matching skill | No manual browsing or memorizing skill names | | Arbiter | 3 TDD skills installed? Profile picks the winner | Prevents collision chaos and token waste | | Scanner | Discovers installed skills from any source | Works with skills.sh, manual installs, or built-in | | Memory | Remembers activations within a session | No redundant fetches for similar tasks | | Vault | ADRs, learnings, sessions, project context | Persistent knowledge that survives across sessions |
Quick Start
Claude Code Plugin (recommended)
/plugin marketplace add permanu/superskill
/plugin install superskill
Any MCP-compatible tool
npm install -g superskill
Then add as an MCP server:
# Claude Code
claude mcp add superskill -e VAULT_PATH=~/Vaults/ai -- npx -y superskill
# Cursor, Claude Desktop, Codex, Gemini CLI — add to MCP config:
{
"mcpServers": {
"superskill": {
"command": "npx",
"args": ["-y", "superskill"],
"env": { "VAULT_PATH": "~/Vaults/ai" }
}
}
}
Works with skills.sh
Install skills from the ecosystem, SuperSkill routes to them automatically:
npx skills add anthropics/skills # Anthropic's official skills
npx skills add affaan-m/everything-claude-code # ECC skill suite
# SuperSkill discovers and scores these on next activation
Supported AI Tools
| Tool | Setup | Status | |------|-------|--------| | Claude Code | Plugin or MCP | Verified | | Claude Desktop | MCP config | Verified | | Cursor | MCP config | Verified | | Codex CLI | MCP config | Verified | | Gemini CLI | MCP config | Verified | | OpenCode | MCP config | Community | | Crush CLI | MCP config | Community | | Droid | MCP config | Community | | Windsurf | MCP config | Community | | Aider | MCP config | Community | | Continue | MCP config | Community |
Built-in Skill Catalog
<details> <summary>87 skills across 28 domains from 9 repos (click to expand)</summary>Core Workflow — loaded for every project:
| Domain | Skills | Description | |--------|--------|-------------| | TDD | 8 | Red-green-refactor, Go/Python/Django/Spring/C++ testing, E2E | | Planning | 3 | Implementation planning, CEO/eng review, execution | | Code Review | 4 | PR review, Go review, Python review, feedback workflow | | Debugging | 2 | Systematic debugging, investigation | | Verification | 4 | Build/lint/type gates, Django/Spring verification | | Brainstorming | 2 | Structured ideation, office hours | | Agent Orchestration | 5 | Autonomous loops, RFC pipelines, subagents, parallel dispatch | | Security | 5 | OWASP review, AgentShield scanning, Django/Spring security | | Shipping | 2 | CI/CD, deployment patterns | | Frontend Design | 5 | Anthropic official, Design Taste, Bencium UX, FDP, UI/UX Pro Max | | Git Workflow | 2 | Worktrees, branch management |
Language & Framework — loaded when your stack matches:
| Domain | Skills | Description | |--------|--------|-------------| | Go | 2 | Idiomatic patterns, conventions | | Python | 2 | Pythonic idioms, PEP 8 | | Django | 3 | Architecture, DRF, ORM, security, TDD | | Spring Boot | 4 | Architecture, security, TDD, verification | | Swift | 4 | SwiftUI, concurrency, actors, protocol DI | | C++ | 2 | Core Guidelines, GoogleTest | | Java | 2 | Standards, JPA/Hibernate | | Database | 3 | PostgreSQL, migrations, ClickHouse | | Docker | 1 | Compose, container security |
Infrastructure & Patterns:
| Domain | Skills | Description | |--------|--------|-------------| | API Design | 1 | REST patterns, pagination, versioning | | Frontend Patterns | 1 | React/Next.js state and performance | | Backend Patterns | 1 | Node/Express server patterns | | Coding Standards | 1 | Universal TS/JS/React standards |
Specialized:
| Domain | Skills | Description | |--------|--------|-------------| | Content & Business | 6 | Articles, investor materials, outreach, market research | | 3D Animation | 5 | Three.js, GSAP, React Three Fiber, Framer Motion, Babylon.js | | Agent Engineering | 4 | Agent harness, eval, cost optimization | | Meta/Tooling | 5 | Skill management, compaction, learning, browsing |
</details>MCP Tools
| Tool | Description |
|------|-------------|
| superskill | Route to the best skill by task description, domain, or skill ID |
| vault_skill | Skill catalog, collisions, resolution, generation |
| vault_project_context | Auto-detected project context from CWD |
| vault_init | Generate draft context.md from a git repo |
| vault_task | Task management (add/list/update/board) |
| vault_decide | Log architecture decisions |
| vault_learn | Capture and list learnings |
| vault_resume | Resume context — recent sessions, interrupted work, next steps |
| vault_session | Multi-agent session coordination |
| vault_read | Read file or directory from vault |
| vault_write | Write/append/prepend content |
| vault_search | Full-text search across vault |
| vault_prune | Archive stale content |
| vault_stats | Vault content statistics |
| vault_deprecate | Mark items as deprecated |
Configuration
| Variable | Default | Description |
|----------|---------|-------------|
| VAULT_PATH | ~/Vaults/ai | Path to knowledge vault |
| MAX_INJECT_TOKENS | 1500 | Max tokens for context injection |
| SESSION_TTL_HOURS | 2 | Session heartbeat TTL |
Roadmap
See GitHub Milestones for planned work.
Contributing
See CONTRIBUTING.md.
License
AGPL-3.0-or-later — See LICENSE
Copyright 2026 Permanu (Atharva Pandey)
Related Skills
Agent-Reach
85.0kGive your AI agent eyes to see the entire internet. Read & search Twitter, Reddit, YouTube, GitHub, Bilibili, XiaoHongShu — one CLI, zero API fees.
headroom
73.6kCompress tool outputs, logs, files, and RAG chunks before they reach the LLM. 20% fewer tokens for coding agents, 60-95% fewer tokens for JSON, same answers. Library, proxy, MCP server.
ruflo
73.1k🌊 The original agent harness. Deploy intelligent multi-player swarms, coordinate autonomous workflows, and build conversational AI systems. Features adaptive memory, self-learning intelligence, federation, vector RAG integration, and native Claude Code / Codex / Hermes and many more Integrated
career-ops
72.5kOpen-source AI job search: scan job portals, evaluate listings into a structured A-H report with a global 1-5 score, tailor your CV, track applications — runs locally in your AI coding CLI (Claude Code, Codex, OpenCode, Antigravity…)
Languages
Trust signals
From repository metadata: license, adoption, age and documentation. Not a code audit — see the Safety scan above for what the skill file itself contains.
