skills$openclaw/skills-search
thesethrose7.6kā˜…

by thesethrose

skills-search – OpenClaw Skill

skills-search is an OpenClaw Skills integration for coding workflows. Search skills.sh registry from CLI. Find and discover agent skills from the skills.sh ecosystem.

7.6k stars226 forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameskills-search
descriptionSearch skills.sh registry from CLI. Find and discover agent skills from the skills.sh ecosystem. OpenClaw Skills integration.
ownerthesethrose
repositorythesethrose/skills-search
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @thesethrose/skills-search
last updatedFeb 7, 2026

Maintainer

thesethrose

thesethrose

Maintains skills-search in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
_meta.json
286 B
cli.js
2.7 KB
package.json
422 B
SKILL.md
3.1 KB
SKILL.md

name: skills-search description: Search skills.sh registry from CLI. Find and discover agent skills from the skills.sh ecosystem. metadata: version: 1.0.4 tags: ["search", "skills.sh", "cli"] clawdbot: requires: bins: ["node"] install: - id: "skill-install" kind: "skill" source: "clawdhub" slug: "skills-search" label: "Install skills-search skill"

Skills.sh Search CLI

Search skills from skills.sh registry directly from your terminal.

Install (Clawdbot)

clawdhub install skills-search

Usage

# 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
āÆ 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

āÆ 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 (Clawdbot)

Step 1: Search for a skill

npx @thesethrose/skills-search "react"

Step 2: Install found skill via skills CLI

After finding a skill, install it using the skills CLI:

npx skills add vercel-labs/agent-skills

TUI Navigation Guidance:

The skills CLI uses an interactive menu. Watch for prompts and navigate accordingly:

  1. Select skills → Toggle skills you want with space, confirm with enter
  2. Select agents → Navigate with up/down, select Clawdbot with space, confirm with enter
  3. Installation scope → Choose Project (recommended) with enter
  4. Confirm → Press enter to proceed

Important: The TUI may change. Pay attention to the menu options and select Clawdbot when prompted for agents. If unsure about any selection, ask the user for guidance.

Step 3: Verify installation

ls ~/.clawdbot/workspace/.agents/skills/

Adding Your Own Skill

Skills.sh automatically indexes GitHub repos containing SKILL.md files. To add your skill:

  1. Create a skill folder with SKILL.md in your GitHub repo
  2. Publish to ClawdHub for Clawdbot-specific discovery:
    clawdhub publish ./your-skill/ --slug your-skill --name "Your Skill" --version 1.0.0
    
  3. Install in Clawdbot:
    clawdhub install your-skill
    

Notes

  • Queries https://skills.sh/api/skills (official skills.sh API)
  • Results sorted by install count (most popular first)
  • Clawdbot-only: Install via clawdhub install skills-search
  • Skills.sh leaderboard requires GitHub repo (not needed for ClawdHub-only skills)
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install skills-search?

Run openclaw add @thesethrose/skills-search in your terminal. This installs skills-search into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/thesethrose/skills-search. Review commits and README documentation before installing.