home / skills / daymade / claude-code-skills / skills-search

skills-search skill

/skills-search

This skill helps you search discover and manage Claude Code skills from the CCPM registry via simple CLI commands.

npx playbooks add skill daymade/claude-code-skills --skill skills-search

Review the files below or copy the command above to add this skill to your agents.

Files (2)
SKILL.md
4.1 KB
---
name: skills-search
description: This skill should be used when users want to search, discover, install, or manage Claude Code skills from the CCPM registry. Triggers include requests like "find skills for PDF", "search for code review skills", "install cloudflare-troubleshooting", "list my installed skills", "what does skill-creator do", or any mention of finding/installing/managing Claude Code skills or plugins.
allowed-tools: Bash, Read
---

# 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:

```bash
# Check availability
which ccpm || npx @daymade/ccpm setup
```

`ccpm 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
```bash
ccpm search <query> [--limit <n>] [--tags <t1,t2>] [--author <name>] [--smart]
```

### Discovery
```bash
ccpm popular [--limit <n>]       # Most downloaded
ccpm recent [--limit <n>]        # Recently published/updated
```

### Install & Manage
```bash
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 skill
```

## Post-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:

```json
{
  "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.

Overview

This skill helps you search, discover, install, and manage Claude Code skills from the CCPM registry. It wraps the ccpm CLI so you can find relevant skills, view details, install or uninstall them, and list installed skills. Use it to streamline adding production-ready capabilities to your Claude Code environment.

How this skill works

The skill issues ccpm commands to query the registry, fetch metadata, and perform install/uninstall operations. It supports searching with limits, retrieving detailed skill info, listing installed skills, and installing either user- or project-scoped packages. After installation, Claude Code must be restarted for new skills to load.

When to use it

  • You need a specific capability (PDF processing, Cloudflare tools, prompt optimization) and want an existing skill.
  • You want to discover skills by keyword or tag (e.g., "code review", "react").
  • You need to install or uninstall a skill for your user or current project.
  • You want to inspect a skill's metadata, dependencies, or download counts before installing.
  • You need to list currently installed skills and their scopes or paths.

Best practices

  • Search first, then run ccpm info on promising results to review description, tags, and downloads.
  • Use --limit to control results and --json for machine-readable output when automating.
  • Install project-scoped when you want reproducible local setups; use user-scoped for global availability.
  • Restart Claude Code after installing or uninstalling so skills are loaded or removed.
  • If a skill fails to install, verify permissions or install CCPM globally (npm install -g @daymade/ccpm).

Example use cases

  • Find PDF-related skills: ccpm search pdf, then install pdf-processor for document analysis.
  • Discover code-review tooling: ccpm search "code review" and inspect candidates with ccpm info.
  • Install a namespaced skill for a single project: ccpm install @daymade/skill-creator --project.
  • List installed skills to audit your environment: ccpm list (use --json for scripting).
  • Remove an unwanted skill: ccpm uninstall cloudflare-troubleshooting --project or --global.

FAQ

What if ccpm command is not found?

Install CCPM globally with npm install -g @daymade/ccpm or ensure your PATH includes the installed binary.

Why don't new skills appear after installation?

Restart Claude Code; skills are loaded at startup and won't be available until the app restarts.