claude-skillseek

Skill from wience/claude-skillseek

Claude SkillSeek

npm version License: MIT

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.

Documentation | npm

Demo

Try It Now

BASH
npx claude-skillseek

Installation

BASH
npm install -g claude-skillseek

Quick Start

BASH
# 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/pluginseek
Interactive browserNoYes - browse, preview, install in one flow
Works outside Claude CodeNoYes - use from any terminal
Search all of GitHubMarketplace onlyYes - finds any public skill repo
AI-powered searchNoYes - describe what you need
Filter by stars, language, dateNoYes - powerful filters
See trending skillsNoYes - 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.

BASH
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.

BASH
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.

BASH
seek category productivity
seek cat devops  # alias

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).

BASH
seek popular
seek popular --limit 10
BASH
seek trending                    # This week
seek trending --period month     # This month
BASH
seek search debugging
seek search react --min-stars 50
seek search devops --updated-within 7
seek search python --language python

Filter Options:

OptionDescription
-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

BASH
seek install obra/superpowers
seek install https://github.com/owner/repo
seek install owner/repo --force

seek list - Installed Skills

BASH
seek list
seek ls

seek config - Configure AI

BASH
seek config

Configuration

AI Provider Setup

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
ProviderModelGet Key
AnthropicClaude 3 Haikuconsole.anthropic.com
OpenAIGPT-4o-miniplatform.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:

  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

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