Claude SkillSeek

Discover the perfect Claude Code skill for any workflow

View the Project on GitHub wience/claude-skillseek

Contributing

We welcome contributions! Here are some ways to help.

Add Skills to the Curated List

Know a great Claude Code skill that isn’t showing up in searches? Add it to our curated list:

  1. Fork this repo
  2. Edit src/utils/github.ts
  3. Add the repo to the KNOWN_SKILL_REPOS array:
    const KNOWN_SKILL_REPOS = [
      'anthropics/claude-code-skills',
      'obra/superpowers',
      // Add your skill repo here:
      'your-username/your-skill-repo',
    ];
    
  4. Submit a PR

Add Skills to Categories

Help organize skills into categories:

  1. Fork this repo
  2. Edit src/data/categories.json
  3. Add repos to the appropriate category:
    {
      "productivity": {
        "skills": [
          "existing/repo",
          "your-username/your-skill-repo"
        ]
      }
    }
    
  4. Submit a PR

Improve Search Discovery

Help us find more skill repos by adding search queries:

  1. Edit src/utils/github.ts
  2. Add queries to the SEARCH_QUERIES array
  3. Submit a PR

Report Bugs

Open an issue if something isn’t working:

Open an Issue

Suggest Features

Have ideas for improving skill discovery? Open an issue with the enhancement label.

Development Setup

# Clone the repo
git clone https://github.com/wience/claude-skillseek.git
cd claude-skillseek

# Install dependencies
npm install

# Build
npm run build

# Run locally
node dist/cli.js

# Run tests
npm test

# Lint
npm run lint

Back to Home