A curated collection of skills, commands, and MCP servers for Claude Code.
# Install the CLI globally or use npx
npx claude-skills-vault@latest list # Browse all available skills (always up to date)
npx claude-skills-vault install brainstorm # Install a specific skill
npx claude-skills-vault search react # Search by keyword
npx claude-skills-vault info owasp-security # View skill detailsTip: append
@latestto any command (e.g.npx claude-skills-vault@latest list) to bypass the npx cache and always run the newest version of the CLI and skill catalog.
# Install multiple skills at once
npx claude-skills-vault install brainstorm owasp-security github-cli
# Install all skills and commands
npx claude-skills-vault install --all
# Install only skills or only commands
npx claude-skills-vault install --skills
npx claude-skills-vault install --commands
# Preview without installing
npx claude-skills-vault install brainstorm --dry-run
# Overwrite existing skills
npx claude-skills-vault install brainstorm --forceSkills are downloaded directly from this repository into your project's .claude/skills/ directory. No git clone required.
Skills are downloaded snapshots β they don't auto-update. To pull the newest version, re-install with --force, using @latest so npx also fetches the newest CLI and catalog.
# Update a single skill to the latest version
npx claude-skills-vault@latest install brainstorm --force
# Update several skills at once
npx claude-skills-vault@latest install brainstorm owasp-security github-cli --force
# Update every installed skill and command
npx claude-skills-vault@latest install --all --force
# Update only skills, or only commands
npx claude-skills-vault@latest install --skills --force
npx claude-skills-vault@latest install --commands --force
# Preview what would change first
npx claude-skills-vault@latest install --all --force --dry-run--force overwrites the existing files in .claude/skills/, so any local edits to a skill are replaced. Use --dry-run first if you want to review changes before applying them.
The CLI fetches the catalog from the manifest matching the version of the CLI you're currently running, not automatically the newest one. If npx (or a global install) is serving a cached, older copy of the CLI, it resolves an older manifest β one that can predate skills, commands, or MCP servers added since.
Fix, in order:
- Always append
@latestβ this is the #1 fix:npx claude-skills-vault@latest list. It bypasses npx's local cache and forces resolution of the newest published CLI + catalog. - Confirm what version you're actually running:
npx claude-skills-vault@latest --versionβ compare it against the latest release. If your everydaynpx claude-skills-vault ...(no@latest) reports an older version, that's the stale copy npx keeps reusing. - If you installed globally, update the global copy:
npm install -g claude-skills-vault@latest(ornpm update -g claude-skills-vault). - If npx still resolves stale after step 1, clear its cache:
npx clear-npx-cache(npm β₯ 7) or manuallyrm -rf ~/.npm/_npx. - No internet / GitHub unreachable: the CLI falls back to the manifest bundled in the installed npm package, which is only as current as that install β same fix as above, update the package.
Same root cause as above β re-run with npx claude-skills-vault@latest install <name> before assuming the item doesn't exist. Then double check the exact name in SKILLS.md, COMMANDS.md, or MCP-SERVERS.md (names are case-insensitive but must match exactly, e.g. owasp-security, not owasp).
| Category | Count | Browse the full list |
|---|---|---|
| π Skills | 59 | SKILLS.md β dev, security, testing, frontend, backend, mobile, AI, databases, automation, SEO |
| β¨οΈ Commands | 12 | COMMANDS.md β git workflow, PR & release, feature planning, DevOps |
| π MCP Servers | 34 configs + 100+ catalog | MCP-SERVERS.md β databases, cloud, observability, payments, AI & more |
Jump straight to what you need β no searching required.
π Skills β SKILLS.md
59 installable skills, each with a description and a copy-paste install command.
npx claude-skills-vault@latest list # browse all (always latest)
npx claude-skills-vault search <keyword> # find by topic
npx claude-skills-vault install <name> # install oneβ¨οΈ Commands β COMMANDS.md
12 slash commands β each row lists its /invocation and a per-command install command.
π MCP Servers β MCP-SERVERS.md
How to connect Claude to external tools, plus a source-linked catalog of 100+ servers (official vendors + maintained GitHub projects), each with an exact install command.
Setup: Three ways to add a server Β· Official plugin marketplace Β· Reference servers Β· Build your own (SDKs) Β· Command cheatsheet
Browse servers by category: Databases & data Β· Search & vector Β· Cloud & deployment Β· DevOps, CI/CD & IaC Β· Observability & monitoring Β· Payments & fintech Β· CRM, support & sales Β· E-commerce & CMS Β· Productivity, docs & storage Β· Communication & automation Β· Web search & scraping Β· AI, browser & dev tools
git clone https://github.com/georgekhananaev/claude-skills-vault.git
cp -r claude-skills-vault/.claude your-project/- Commands Tutorial - Creating slash commands
- Skills Tutorial - Creating and using skills
- MCP Servers Tutorial - Building MCP servers
Contributions are welcome! Feel free to submit pull requests with new skills, commands, or MCP servers.
Created by George Khananaev
Skills sourced from ComposioHQ: document-skills (xlsx, docx, pptx, pdf), project-change-log, skill-creator, mcp-builder
Skills contributed by garesuta (PR #4, PR #5): react-best-practices, next-cache-components, next-upgrade, senior-backend, multi-agent-patterns, parallel-agents, vercel-react-native-skills
Skills contributed by palakorn-moonholidays (PR #6): owasp-security, color-accessibility-audit
See CHANGELOG.md for version history and release notes.
MIT License - See NOTICE for attribution guidelines.
