Skills.sh Search CLI
Search skills from skills.sh registry directly from your terminal.
Install (ThinkFleetBot)
bash
thinkfleet-hub install skills-search
Usage
bash
# Search for skills by name skills-search "postgres" skills-search "web design" skills-search "twitter" # Show most popular skills skills-search --popular skills-search --popular --limit 10 # Search with install command skills-search "web design" --show-install
Examples
code
❯ skills-search "web design" 🔍 Searching skills.sh for "web design"... ✅ web-design-guidelines (16,922 installs) Source: vercel-labs/agent-skills Install: npx skills add vercel-labs/agent-skills ✅ frontend-design (566 installs) Source: anthropics/skills Install: npx skills add anthropics/skills
Popular Skills
code
❯ skills-search --popular --limit 5 📈 Top 5 most popular skills: ✅ vercel-react-best-practices (22,475 installs) Source: vercel-labs/agent-skills ✅ web-design-guidelines (17,135 installs) Source: vercel-labs/agent-skills ✅ upgrading-expo (1,192 installs) Source: expo/skills ...
Automation (ThinkFleetBot)
Step 1: Search for a skill
bash
npx @thesethrose/skills-search "react"
Step 2: Install found skill via skills CLI
After finding a skill, install it using the skills CLI:
bash
npx skills add vercel-labs/agent-skills
TUI Navigation Guidance:
The skills CLI uses an interactive menu. Watch for prompts and navigate accordingly:
- •Select skills → Toggle skills you want with
space, confirm withenter - •Select agents → Navigate with
up/down, selectThinkFleetBotwithspace, confirm withenter - •Installation scope → Choose Project (recommended) with
enter - •Confirm → Press
enterto proceed
Important: The TUI may change. Pay attention to the menu options and select ThinkFleetBot when prompted for agents. If unsure about any selection, ask the user for guidance.
Step 3: Verify installation
bash
ls ~/.thinkfleetbot/workspace/.agents/skills/
Adding Your Own Skill
Skills.sh automatically indexes GitHub repos containing SKILL.md files. To add your skill:
- •Create a skill folder with
SKILL.mdin your GitHub repo - •Publish to ThinkFleet Hub for ThinkFleetBot-specific discovery:
bash
thinkfleet-hub publish ./your-skill/ --slug your-skill --name "Your Skill" --version 1.0.0
- •Install in ThinkFleetBot:
bash
thinkfleet-hub install your-skill
Notes
- •Queries https://skills.sh/api/skills (official skills.sh API)
- •Results sorted by install count (most popular first)
- •ThinkFleetBot-only: Install via
thinkfleet-hub install skills-search - •Skills.sh leaderboard requires GitHub repo (not needed for ThinkFleet Hub-only skills)