Skills Search (skills-search)
A conversational package manager for Claude Code skills — search, install, update and remove skills from the CCPM registry without typing CLI commands.
UtilitiesBeginner★ 1,323⑂ 212AI score 10/10Last updated: Aug 8, 2026
What it does
- Maps natural requests ("find skills for PDF", "install cloudflare-troubleshooting") to the right
ccpmcommand and runs it directly via Bash instead of asking you to copy-paste. - Covers the full skill lifecycle:
search,popular,recent,install,info,list,update,uninstall. - Auto-bootstraps the toolchain with
npx @daymade/ccpm setupwhenccpmisn't on your PATH, and falls back tonpxon failure. - Always reminds you to restart Claude Code so newly installed skills load.
- Supports namespaced skills (
@org/skill-name) plus user-level vs.--projectscoped installs, and ships an MCP server config for Claude Desktop users.
Who it's for
- Claude Code users who explore lots of community skills but don't want to memorize CLI flags.
- Developers juggling multiple repos who need per-project vs. global skill scopes.
- Team leads who want onboarding to be "just ask Claude to install it".
Examples
- "What skills help with Excel?" → runs
ccpm search excel, summarizes hits, offers to install the best match. - "Show me the top 10 most downloaded skills" →
ccpm popular --limit 10. - "Install @daymade/skill-creator for this repo only" →
ccpm install @daymade/skill-creator --project. - "Update everything I have installed" →
ccpm update --all, then the restart reminder.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/daymade/claude-code-skills/HEAD/daymade-skill/skills-search/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
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
npx @daymade/ccpm install skills-search # 또는: git clone https://github.com/daymade/claude-code-skills.git && 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 is installed (v18+ recommended): run
node -vin a terminal. - Easiest path: run
npx @daymade/ccpm setup. It installs the skills-search skill into~/.claude/skills/and configures the Claude Desktop MCP server if present. - Optional: install the CLI globally for faster runs with
npm install -g @daymade/ccpm. - Manual alternative — clone the repo and copy the folder:
git clone https://github.com/daymade/claude-code-skills.gitcp -r claude-code-skills/daymade-skill/skills-search ~/.claude/skills/ - Fully restart Claude Code or open a new conversation.
- Verify by asking "find skills for PDF" and checking that the skill triggers.
- If installs fail, check write permissions on
~/.claude/skills/or retry with the--projectflag.
View source on GitHub ↗License: MIT