External Skills Catalog
Curated directory of community and official Claude Code skills. Use this when the user needs a capability that vibecosystem doesn't cover natively, or when recommending external tools.
When to Use
- User asks for a skill/capability that doesn't exist in vibecosystem
- User wants to discover what else is available for Claude Code
- Recommending complementary skills for a specific workflow
- Fallback when internal skills can't fully handle a request
Quality Ranking
Skills are ranked by reliability and maintenance:
| Tier |
Label |
Criteria |
| 1 |
Official |
Made by Anthropic or verified partners |
| 2 |
Well-starred |
50+ GitHub stars, active maintenance, good docs |
| 3 |
Community |
Open source, functional, may lack polish |
Always prefer higher-tier skills. Mention tier when recommending.
Catalog by Category
Document & Content
| Skill |
Source |
Description |
Tier |
| PDF extraction |
Various MCP servers |
Parse, extract, summarize PDF content |
2 |
| Markdown linting |
markdownlint |
Enforce consistent markdown style |
2 |
| Technical writing |
Community |
Style guides, API docs, changelogs |
3 |
| Content generation |
Community |
Blog posts, social media, copywriting |
3 |
Development & Code
| Skill |
Source |
Description |
Tier |
| GitHub integration |
Official MCP |
Issues, PRs, code search, reviews |
1 |
| Linear integration |
Community MCP |
Issue tracking, sprint management |
2 |
| Sentry integration |
Community MCP |
Error tracking, issue resolution |
2 |
| Database clients |
Various MCP |
PostgreSQL, MySQL, SQLite direct access |
2 |
| Docker management |
Community |
Container lifecycle, compose orchestration |
3 |
| Regex builder |
Community |
Visual regex construction and testing |
3 |
Security & Compliance
| Skill |
Source |
Description |
Tier |
| Secret scanning |
Community |
Detect leaked credentials in repos |
2 |
| Dependency audit |
npm audit / snyk |
CVE scanning, vulnerability assessment |
2 |
| SBOM generation |
Community |
Software bill of materials |
3 |
| License checker |
Community |
Dependency license compliance |
3 |
Data & Analytics
| Skill |
Source |
Description |
Tier |
| BigQuery client |
Community MCP |
Query, analyze, visualize data |
2 |
| Jupyter integration |
Community |
Notebook creation and execution |
3 |
| CSV/Excel processing |
Community |
Data transformation, analysis |
3 |
| Chart generation |
Community |
Data visualization, dashboards |
3 |
Marketing & Growth
| Skill |
Source |
Description |
Tier |
| SEO analysis |
Community |
Site audit, keyword research |
3 |
| Social media |
Community |
Post scheduling, analytics |
3 |
| Email templates |
Community |
Marketing emails, newsletters |
3 |
| A/B test design |
Community |
Experiment design, analysis |
3 |
Creative & Design
| Skill |
Source |
Description |
Tier |
| Figma integration |
Community MCP |
Design token extraction, component mapping |
2 |
| Image generation |
Various APIs |
AI image creation via MCP |
2 |
| SVG manipulation |
Community |
Icon creation, optimization |
3 |
| Color palette |
Community |
Color scheme generation, contrast checking |
3 |
Project Management
| Skill |
Source |
Description |
Tier |
| Notion integration |
Official MCP |
Pages, databases, project tracking |
1 |
| Slack integration |
Official MCP |
Messaging, channel management |
1 |
| Jira integration |
Community MCP |
Issue tracking, sprint boards |
2 |
| Calendar management |
Community MCP |
Scheduling, reminders |
3 |
Platform & Infrastructure
| Skill |
Source |
Description |
Tier |
| Cloudflare |
Community MCP |
Workers, DNS, CDN management |
2 |
| Vercel |
Community MCP |
Deployment, serverless functions |
2 |
| Supabase |
Community MCP |
Database, auth, storage |
2 |
| AWS CDK |
Community |
Infrastructure as code patterns |
3 |
Install Instructions
Claude Code (CLI)
# MCP-based skills: add to ~/.claude/mcp.json or project .mcp.json
{
"mcpServers": {
"skill-name": {
"command": "npx",
"args": ["-y", "@package/mcp-server"]
}
}
}
# Prompt-based skills: add to ~/.claude/commands/ or project .claude/commands/
mkdir -p .claude/commands
echo "skill content here" > .claude/commands/skill-name.md
Claude.ai (Web)
MCP skills can be added via Settings > Integrations > MCP Servers.
Fallback Strategy
When the needed skill doesn't exist:
Step 1: WORKAROUND
→ Can an existing vibecosystem skill handle it partially?
→ Example: No "email" skill? Use copywriter agent + manual send
Step 2: COMBO
→ Can 2+ existing skills combine to solve it?
→ Example: No "API mock" skill? Use mocksmith + backend-dev
Step 3: CREATE
→ Is it worth creating a new internal skill?
→ Use /skill-create to generate from session patterns
Step 4: EXTERNAL
→ Search this catalog for a community skill
→ Check: https://github.com/topics/claude-code
→ Check: https://github.com/topics/mcp-server
→ Web search: "claude code [capability] skill 2026"
Discovering New Skills
The external ecosystem grows fast. When this catalog doesn't have what you need:
- Search GitHub:
claude code skill [keyword] or mcp server [keyword]
- Check MCP server directories for new integrations
- Look at Claude Code community discussions
- Consider building and contributing your own
Tips
- Always verify external skills before recommending (check repo activity, stars, last commit)
- Prefer MCP-based skills for deeper integration
- Prompt-based skills are easier to install but less powerful
- When recommending, include the install command so the user can act immediately
- If a skill has known issues, mention them upfront
1---2name: external-skills-catalog3description: Curated catalog of 60+ external Claude Code skills across 8 categories with quality rankings, install instructions, and fallback strategies4---56# External Skills Catalog78Curated directory of community and official Claude Code skills. Use this when the user needs a capability that vibecosystem doesn't cover natively, or when recommending external tools.910## When to Use1112- User asks for a skill/capability that doesn't exist in vibecosystem13- User wants to discover what else is available for Claude Code14- Recommending complementary skills for a specific workflow15- Fallback when internal skills can't fully handle a request1617## Quality Ranking1819Skills are ranked by reliability and maintenance:2021| Tier | Label | Criteria |22|------|-------|----------|23| 1 | Official | Made by Anthropic or verified partners |24| 2 | Well-starred | 50+ GitHub stars, active maintenance, good docs |25| 3 | Community | Open source, functional, may lack polish |2627Always prefer higher-tier skills. Mention tier when recommending.2829## Catalog by Category3031### Document & Content32| Skill | Source | Description | Tier |33|-------|--------|-------------|------|34| PDF extraction | Various MCP servers | Parse, extract, summarize PDF content | 2 |35| Markdown linting | markdownlint | Enforce consistent markdown style | 2 |36| Technical writing | Community | Style guides, API docs, changelogs | 3 |37| Content generation | Community | Blog posts, social media, copywriting | 3 |3839### Development & Code40| Skill | Source | Description | Tier |41|-------|--------|-------------|------|42| GitHub integration | Official MCP | Issues, PRs, code search, reviews | 1 |43| Linear integration | Community MCP | Issue tracking, sprint management | 2 |44| Sentry integration | Community MCP | Error tracking, issue resolution | 2 |45| Database clients | Various MCP | PostgreSQL, MySQL, SQLite direct access | 2 |46| Docker management | Community | Container lifecycle, compose orchestration | 3 |47| Regex builder | Community | Visual regex construction and testing | 3 |4849### Security & Compliance50| Skill | Source | Description | Tier |51|-------|--------|-------------|------|52| Secret scanning | Community | Detect leaked credentials in repos | 2 |53| Dependency audit | npm audit / snyk | CVE scanning, vulnerability assessment | 2 |54| SBOM generation | Community | Software bill of materials | 3 |55| License checker | Community | Dependency license compliance | 3 |5657### Data & Analytics58| Skill | Source | Description | Tier |59|-------|--------|-------------|------|60| BigQuery client | Community MCP | Query, analyze, visualize data | 2 |61| Jupyter integration | Community | Notebook creation and execution | 3 |62| CSV/Excel processing | Community | Data transformation, analysis | 3 |63| Chart generation | Community | Data visualization, dashboards | 3 |6465### Marketing & Growth66| Skill | Source | Description | Tier |67|-------|--------|-------------|------|68| SEO analysis | Community | Site audit, keyword research | 3 |69| Social media | Community | Post scheduling, analytics | 3 |70| Email templates | Community | Marketing emails, newsletters | 3 |71| A/B test design | Community | Experiment design, analysis | 3 |7273### Creative & Design74| Skill | Source | Description | Tier |75|-------|--------|-------------|------|76| Figma integration | Community MCP | Design token extraction, component mapping | 2 |77| Image generation | Various APIs | AI image creation via MCP | 2 |78| SVG manipulation | Community | Icon creation, optimization | 3 |79| Color palette | Community | Color scheme generation, contrast checking | 3 |8081### Project Management82| Skill | Source | Description | Tier |83|-------|--------|-------------|------|84| Notion integration | Official MCP | Pages, databases, project tracking | 1 |85| Slack integration | Official MCP | Messaging, channel management | 1 |86| Jira integration | Community MCP | Issue tracking, sprint boards | 2 |87| Calendar management | Community MCP | Scheduling, reminders | 3 |8889### Platform & Infrastructure90| Skill | Source | Description | Tier |91|-------|--------|-------------|------|92| Cloudflare | Community MCP | Workers, DNS, CDN management | 2 |93| Vercel | Community MCP | Deployment, serverless functions | 2 |94| Supabase | Community MCP | Database, auth, storage | 2 |95| AWS CDK | Community | Infrastructure as code patterns | 3 |9697## Install Instructions9899### Claude Code (CLI)100```bash101# MCP-based skills: add to ~/.claude/mcp.json or project .mcp.json102{103 "mcpServers": {104 "skill-name": {105 "command": "npx",106 "args": ["-y", "@package/mcp-server"]107 }108 }109}110111# Prompt-based skills: add to ~/.claude/commands/ or project .claude/commands/112mkdir -p .claude/commands113echo "skill content here" > .claude/commands/skill-name.md114```115116### Claude.ai (Web)117MCP skills can be added via Settings > Integrations > MCP Servers.118119## Fallback Strategy120121When the needed skill doesn't exist:122123```124Step 1: WORKAROUND125 → Can an existing vibecosystem skill handle it partially?126 → Example: No "email" skill? Use copywriter agent + manual send127128Step 2: COMBO129 → Can 2+ existing skills combine to solve it?130 → Example: No "API mock" skill? Use mocksmith + backend-dev131132Step 3: CREATE133 → Is it worth creating a new internal skill?134 → Use /skill-create to generate from session patterns135136Step 4: EXTERNAL137 → Search this catalog for a community skill138 → Check: https://github.com/topics/claude-code139 → Check: https://github.com/topics/mcp-server140 → Web search: "claude code [capability] skill 2026"141```142143## Discovering New Skills144145The external ecosystem grows fast. When this catalog doesn't have what you need:1461471. Search GitHub: `claude code skill [keyword]` or `mcp server [keyword]`1482. Check MCP server directories for new integrations1493. Look at Claude Code community discussions1504. Consider building and contributing your own151152## Tips153154- Always verify external skills before recommending (check repo activity, stars, last commit)155- Prefer MCP-based skills for deeper integration156- Prompt-based skills are easier to install but less powerful157- When recommending, include the install command so the user can act immediately158- If a skill has known issues, mention them upfront