Claude SkillSeek
Discover the perfect Claude Code skill for any workflow.
An interactive CLI to browse, search, and install Claude Code skills. Find what's trending, explore the most popular, search with AI, or just describe what you need.

Try It Now
npx claude-skillseek
Installation
npm install -g claude-skillseek
Quick Start
# Launch interactive browser
seek
# Or use commands directly
seek popular # Most starred skills
seek trending # Hot this week
seek categories # Browse by category
seek preview owner/repo # Preview skills before install
seek ask "..." # AI-powered search
seek search react # Keyword search
Interactive Browser
Just type seek to launch the interactive browser:
╔═══════════════════════════════════════╗
║ SkillSeek ║
╚═══════════════════════════════════════╝
? What would you like to explore?
★ Popular skills
🔥 Trending this week
🔍 Search for skills
Features:
- Browse popular or trending skills
- Search by keyword
- View full skill details (stars, description, topics, URL)
- One-click install - select a skill and choose "Install"
Why Claude SkillSeek?
Claude Code has a built-in /plugin command, so why use this?
| Feature | /plugin | seek |
|---|---|---|
| Interactive browser | No | Yes - browse, preview, install in one flow |
| Works outside Claude Code | No | Yes - use from any terminal |
| Search all of GitHub | Marketplace only | Yes - finds any public skill repo |
| AI-powered search | No | Yes - describe what you need |
| Filter by stars, language, date | No | Yes - powerful filters |
| See trending skills | No | Yes - what's hot this week |
Commands
seek - Interactive Browser
Launch with no arguments to browse interactively.
seek preview <repo> - Preview Skills
See what skills a repository contains before installing.
seek preview obra/superpowers
Shows the repo info and lists all skills with their names, descriptions, and file paths.
seek categories - Browse by Category
List all skill categories organized by purpose.
seek categories
seek cats # alias
Categories: productivity, devops, testing, documentation, security, frameworks, ai-tools, git
seek category <name> - Show Category Skills
Show all skills in a specific category.
seek category productivity
seek cat devops # alias
seek ask "<query>" - AI-Powered Search
Describe what you need in plain English.
seek ask "help me find skills for mobile app testing"
seek ask "I need something for React deployment"
seek ask "debugging tools for Python"
Setup: On first run, you'll be prompted to configure an API key (Anthropic or OpenAI).
seek popular - Most Starred
seek popular
seek popular --limit 10
seek trending - What's Hot
seek trending # This week
seek trending --period month # This month
seek search <query> - Filtered Search
seek search debugging
seek search react --min-stars 50
seek search devops --updated-within 7
seek search python --language python
Filter Options:
| Option | Description |
|---|---|
-s, --min-stars <n> | Minimum star count |
-u, --updated-within <days> | Recently updated only |
-l, --language <lang> | Filter by language |
--sort <field> | Sort by: stars, updated, created |
--limit <n> | Max results (1-100) |
seek install <repo> - Install Skills
seek install obra/superpowers
seek install https://github.com/owner/repo
seek install owner/repo --force
seek list - Installed Skills
seek list
seek ls
seek config - Configure AI
seek config
Configuration
AI Provider Setup
For seek ask, configure an API key:
Environment Variables:
export ANTHROPIC_API_KEY="sk-ant-..."
# or
export OPENAI_API_KEY="sk-..."
Or interactive setup:
seek config
| Provider | Model | Get Key |
|---|---|---|
| Anthropic | Claude 3 Haiku | console.anthropic.com |
| OpenAI | GPT-4o-mini | platform.openai.com |
Requirements
- Node.js 18+
- Git (for installing skills)
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:
- Fork this repo
- Edit
src/utils/github.ts - Add the repo to the
KNOWN_SKILL_REPOSarray:TYPESCRIPTconst KNOWN_SKILL_REPOS = [ 'anthropics/claude-code-skills', 'obra/superpowers', // Add your skill repo here: 'your-username/your-skill-repo', ]; - Submit a PR
Other Contributions
- Report bugs - Open an issue if something isn't working
- Suggest features - Ideas for improving skill discovery
- Improve search - Help us find more skill repos by adding search queries to
SEARCH_QUERIES
Roadmap
In Progress
- Demo GIF for README
- Submit to awesome-claude-code list
- Product Hunt launch
Planned Features
- Skill ratings - Community ratings and reviews
- Skill updates - Check for and update installed skills
- Skill uninstall - Remove installed skills
- Offline cache - Cache search results for offline browsing
- Custom registries - Support private/enterprise skill registries
- Skill templates - Create new skills from templates
- Dependency management - Handle skills that depend on other skills
- Version pinning - Install specific versions of skills
Future Ideas
- Skill analytics - Track which skills are most used
- Skill bundles - Install curated collections of skills
- Integration with Claude Code - Native integration for discovery
- Skill testing - Validate skills before publishing
- Skill marketplace - Web-based skill discovery
Have an idea? Open an issue with the enhancement label!
License
MIT