Vibecosystem external-skills-catalog

Curated catalog of 60+ external Claude Code skills across 8 categories with quality rankings, install instructions, and fallback strategies

install
source · Clone the upstream repo
git clone https://github.com/vibeeval/vibecosystem
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/vibeeval/vibecosystem "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/external-skills-catalog" ~/.claude/skills/vibeeval-vibecosystem-external-skills-catalog && rm -rf "$T"
manifest: skills/external-skills-catalog/SKILL.md
source content

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:

TierLabelCriteria
1OfficialMade by Anthropic or verified partners
2Well-starred50+ GitHub stars, active maintenance, good docs
3CommunityOpen source, functional, may lack polish

Always prefer higher-tier skills. Mention tier when recommending.

Catalog by Category

Document & Content

SkillSourceDescriptionTier
PDF extractionVarious MCP serversParse, extract, summarize PDF content2
Markdown lintingmarkdownlintEnforce consistent markdown style2
Technical writingCommunityStyle guides, API docs, changelogs3
Content generationCommunityBlog posts, social media, copywriting3

Development & Code

SkillSourceDescriptionTier
GitHub integrationOfficial MCPIssues, PRs, code search, reviews1
Linear integrationCommunity MCPIssue tracking, sprint management2
Sentry integrationCommunity MCPError tracking, issue resolution2
Database clientsVarious MCPPostgreSQL, MySQL, SQLite direct access2
Docker managementCommunityContainer lifecycle, compose orchestration3
Regex builderCommunityVisual regex construction and testing3

Security & Compliance

SkillSourceDescriptionTier
Secret scanningCommunityDetect leaked credentials in repos2
Dependency auditnpm audit / snykCVE scanning, vulnerability assessment2
SBOM generationCommunitySoftware bill of materials3
License checkerCommunityDependency license compliance3

Data & Analytics

SkillSourceDescriptionTier
BigQuery clientCommunity MCPQuery, analyze, visualize data2
Jupyter integrationCommunityNotebook creation and execution3
CSV/Excel processingCommunityData transformation, analysis3
Chart generationCommunityData visualization, dashboards3

Marketing & Growth

SkillSourceDescriptionTier
SEO analysisCommunitySite audit, keyword research3
Social mediaCommunityPost scheduling, analytics3
Email templatesCommunityMarketing emails, newsletters3
A/B test designCommunityExperiment design, analysis3

Creative & Design

SkillSourceDescriptionTier
Figma integrationCommunity MCPDesign token extraction, component mapping2
Image generationVarious APIsAI image creation via MCP2
SVG manipulationCommunityIcon creation, optimization3
Color paletteCommunityColor scheme generation, contrast checking3

Project Management

SkillSourceDescriptionTier
Notion integrationOfficial MCPPages, databases, project tracking1
Slack integrationOfficial MCPMessaging, channel management1
Jira integrationCommunity MCPIssue tracking, sprint boards2
Calendar managementCommunity MCPScheduling, reminders3

Platform & Infrastructure

SkillSourceDescriptionTier
CloudflareCommunity MCPWorkers, DNS, CDN management2
VercelCommunity MCPDeployment, serverless functions2
SupabaseCommunity MCPDatabase, auth, storage2
AWS CDKCommunityInfrastructure as code patterns3

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:

  1. Search GitHub:
    claude code skill [keyword]
    or
    mcp server [keyword]
  2. Check MCP server directories for new integrations
  3. Look at Claude Code community discussions
  4. 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