Discover and install Claude Code skills - browse trending, search with AI, install with one click
npm install 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.
``bash`
npm install -g claude-skillseek
`bashLaunch interactive browser
seek
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
$3
Launch with no arguments to browse interactively.
$3
Describe what you need in plain English.
`bash
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).
$3
`bash
seek popular
seek popular --limit 10
`$3
`bash
seek trending # This week
seek trending --period month # This month
`$3
`bash
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 | Minimum star count |
| -u, --updated-within | Recently updated only |
| -l, --language | Filter by language |
| --sort | Sort by: stars, updated, created |
| --limit | Max results (1-100) |$3
`bash
seek install obra/superpowers
seek install https://github.com/owner/repo
seek install owner/repo --force
`$3
`bash
seek list
seek ls
`$3
`bash
seek config
`Configuration
$3
For
seek ask, configure an API key:Environment Variables:
`bash
export ANTHROPIC_API_KEY="sk-ant-..."
or
export OPENAI_API_KEY="sk-..."
`Or interactive setup:
`bash
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:
$3
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:
`typescript
const KNOWN_SKILL_REPOS = [
'anthropics/claude-code-skills',
'obra/superpowers',
// Add your skill repo here:
'your-username/your-skill-repo',
];
`
4. Submit a PR$3
- 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`MIT