
Skills Search
- 896 installs
- 1.3k repo stars
- Updated August 4, 2026
- daymade/claude-code-skills
skills-search is a Claude Code skill that searches the CCPM registry, installs skills, and lists installed skills for developers who need to discover and manage Claude Code capabilities without leaving the agent session.
About
skills-search is a Claude Code skill from daymade/claude-code-skills that auto-bootstraps agents to search, discover, install, and manage skills from the CCPM registry. Triggers include requests to find skills for PDF, code review, or cloud troubleshooting, install named skills like cloudflare-troubleshooting, or list what is already installed locally. The skill uses Bash and Read tools with behavioral directives so agents query the registry and perform installs in-session. Developers reach for skills-search when expanding agent capabilities mid-task instead of manually cloning skill repositories or guessing available packages.
- Auto-bootstraps with `ccpm setup` or `npx @daymade/ccpm` when the CLI is missing
- Maps natural-language intents (find, install, list, explain) to concrete `ccpm` subcommands
- Runs Bash itself instead of handing copy-paste commands to the user
- Covers registry search, installs, and installed-skill inventory in one workflow
- Uses Read for local skill metadata when users ask what a skill does
Skills Search by the numbers
- 896 all-time installs (skills.sh)
- +52 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Ranked #80 of 782 Skill Development skills by installs in the Skillselion catalog
- Security screen: MEDIUM risk (skills.sh audit)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/daymade/claude-code-skills --skill skills-searchAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 896 |
|---|---|
| repo stars | ★ 1.3k |
| Security audit | 2 / 3 scanners passed |
| Last updated | August 4, 2026 |
| Repository | daymade/claude-code-skills ↗ |
How do you search and install Claude Code skills?
Search the CCPM registry, install skills, and list what is already on your machine without leaving the agent session.
Who is it for?
Developers using Claude Code who want in-session CCPM registry search and skill installation without manual repo hunting.
Skip if: Teams building custom application features unrelated to discovering or managing Claude Code skill packages.
When should I use this skill?
The user asks to find, search, install, list, or manage Claude Code skills or plugins from a registry.
What you get
Installed skill packages, registry search results, and local installed-skill inventory lists
- Registry search results
- Installed skill packages
- Local skill inventory
Files
Skills Search — Agent Behavioral Directives
Auto-Bootstrap (Run First)
Before doing anything else, check if ccpm is available. If not, bootstrap the entire ecosystem with one command:
# Check availability
which ccpm || npx @daymade/ccpm setupccpm setup installs this skill + configures Claude Desktop MCP server (if installed). After bootstrap, all commands below work directly.
Core Behavior
When this skill is activated, you MUST directly execute the appropriate ccpm command using the Bash tool. Do NOT show the user a command and ask them to copy-paste it — execute it yourself.
If ccpm is not globally installed, use npx @daymade/ccpm as a drop-in replacement for all commands below.
Intent Mapping
Match the user's intent to the correct action:
| User Intent | Action |
|---|---|
| "find skills for X" / "search X skills" | ccpm search <query> |
| "what skills are popular" / "top skills" | ccpm popular |
| "what's new" / "latest skills" | ccpm recent |
| "install X" / "add X skill" | ccpm install <skill-name> |
| "what does X do" / "tell me about X" | ccpm info <skill-name> |
| "what skills do I have" / "list skills" | ccpm list |
| "remove X" / "uninstall X" | ccpm uninstall <skill-name> |
| "update X" / "update all skills" | ccpm update [name] [--all] |
| "I need help with PDF/Excel/..." | ccpm search <topic>, then offer to install the best match |
Execution Rules
1. Always execute directly — run ccpm commands via the Bash tool, never ask the user to run them manually. 2. Summarize results — after executing, present the output in a clear, readable format. 3. Suggest next steps — after search results, offer to install. After install, remind the user to restart Claude Code. 4. Handle errors gracefully — if ccpm is not found, fall back to npx @daymade/ccpm. If the registry is unreachable, say so clearly. 5. Namespaced skills — support @org/skill-name format (e.g., ccpm install @daymade/skill-creator).
Command Reference
Search
ccpm search <query> [--limit <n>] [--tags <t1,t2>] [--author <name>] [--smart]Discovery
ccpm popular [--limit <n>] # Most downloaded
ccpm recent [--limit <n>] # Recently published/updatedInstall & Manage
ccpm install <skill-name> # Install (user-level, default)
ccpm install <name> --project # Install to current project only
ccpm install <name> --force # Force reinstall
ccpm list # List installed skills
ccpm info <skill-name> # Detailed skill information
ccpm update [name] # Update a skill
ccpm update --all # Update all skills
ccpm uninstall <skill-name> # Remove a skillPost-Install Reminder
After any successful install, always tell the user:
Skill installed successfully. Please restart Claude Code (or start a new conversation) for the skill to become available.
MCP Server Alternative
For Claude Desktop users who want native tool integration (no Bash needed), the same functionality is available as an MCP server:
{
"mcpServers": {
"skill-search": {
"command": "npx",
"args": ["-y", "skills-search-mcp"]
}
}
}Both this skill and the MCP server wrap the same ccpm CLI — they are complementary, not conflicting.
Troubleshooting
"ccpm: command not found"
Use npx @daymade/ccpm instead, or install globally: npm install -g @daymade/ccpm.
Skill not available after install
Restart Claude Code — skills are loaded at startup.
Permission errors
Check write permissions to ~/.claude/skills/. Try installing with --project for project-level scope.
Security scan passed
Scanned at: 2025-11-30T03:26:12.206682
Tool: gitleaks + pattern-based validation
Content hash: 493826cb21eefb61a82bf0a81dbccec44888e7b68b21bfdd02a2dd301805a695
Related skills
How it compares
Use skills-search for CCPM registry operations instead of manually cloning individual skill repositories.
FAQ
What registry does skills-search query for Claude Code skills?
skills-search searches and installs from the CCPM registry during Claude Code sessions. Agents can discover skills by topic, install named packages, and list what is already on the local machine.
Can skills-search install skills without leaving the agent session?
skills-search installs Claude Code skills directly from registry search results inside the active agent workflow. Triggers include find, install, and list requests for Claude Code skills or plugins.
Is Skills Search safe to install?
skills.sh reports 2 of 3 security scanners passed. Review the Security Audits panel on this page before installing in production.