Claude Skill MartBrowse skillsWhat is a Skill?
Back to list

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.

UtilitiesBeginner1,323212AI score 8/10Last updated: Aug 8, 2026

What it does

  • Maps natural-language requests to ccpm CLI 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 setup if ccpm isn't on your PATH, and documents the equivalent MCP server for Claude Desktop.
  • Installs user-level by default (~/.claude/skills/), with --project for project-scoped installs and --force for reinstalls.
  • Supports namespaced skills like @org/skill-name and 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

  1. "Find a skill for building Excel reports" → runs ccpm search excel, summarizes hits, offers to install the best match
  2. "Show me the top 10 most popular skills" → runs ccpm popular --limit 10
  3. "Install @daymade/skill-creator and then list what I have" → ccpm install @daymade/skill-creator followed by ccpm list

· · · Install guide · · ·

Install in the Claude app (no terminal)
  1. Download the ZIP with the button below.
  2. In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
  3. Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Download 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.

  1. Confirm Node.js 18+ and npm are installed: node -v
  2. Clone the repository: git clone https://github.com/daymade/claude-code-skills.git
  3. Create the skills directory: mkdir -p ~/.claude/skills
  4. Copy the skill in: cp -r claude-code-skills/daymade-skill/skills-search ~/.claude/skills/
  5. (Recommended) Install the CLI globally: npm install -g @daymade/ccpm — otherwise the skill falls back to npx @daymade/ccpm.
  6. Restart Claude Code or start a new conversation.
  7. Test it by saying "find skills for PDF". If you hit permission errors, check write access to ~/.claude/skills/ or install with --project.