Skills Search (skills-search)
Say "find a skill for PDFs" and it searches, installs, and updates Claude Code skills from the CCPM registry for you.
UtilitiesBeginner★ 1,323⑂ 212AI score 8/10Last updated: Aug 8, 2026
What it does
- Maps natural-language requests to
ccpmCLI commands and runs them for you via Bash — no copy-pasting commands. - Covers the full lifecycle:
search,popular,recent,info,install,list,update,uninstall. - Auto-bootstraps with
npx @daymade/ccpm setupifccpmisn't on your PATH, and documents the equivalent MCP server for Claude Desktop. - Installs user-level by default (
~/.claude/skills/), with--projectfor project-scoped installs and--forcefor reinstalls. - Supports namespaced skills like
@org/skill-nameand always reminds you to restart Claude Code afterwards.
Who it's for
- Newcomers who don't yet know what skills exist in the ecosystem
- Power users juggling many installed skills that need updating
- Developers who want project-scoped skills kept separate from global ones
Examples
- "Find a skill for building Excel reports" → runs
ccpm search excel, summarizes hits, offers to install the best match - "Show me the top 10 most popular skills" → runs
ccpm popular --limit 10 - "Install @daymade/skill-creator and then list what I have" →
ccpm install @daymade/skill-creatorfollowed byccpm list
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the daymade-skill/skills-search folder from the GitHub repo daymade/claude-code-skills into my ~/.claude/skills/skills-search/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/daymade/claude-code-skills.git && mkdir -p ~/.claude/skills && cp -r claude-code-skills/daymade-skill/skills-search ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Confirm Node.js 18+ and npm are installed:
node -v - Clone the repository:
git clone https://github.com/daymade/claude-code-skills.git - Create the skills directory:
mkdir -p ~/.claude/skills - Copy the skill in:
cp -r claude-code-skills/daymade-skill/skills-search ~/.claude/skills/ - (Recommended) Install the CLI globally:
npm install -g @daymade/ccpm— otherwise the skill falls back tonpx @daymade/ccpm. - Restart Claude Code or start a new conversation.
- Test it by saying "find skills for PDF". If you hit permission errors, check write access to
~/.claude/skills/or install with--project.
View source on GitHub ↗License: MIT