skills-search

daymade/claude-code-skills · updated Apr 8, 2026

$npx skills add https://github.com/daymade/claude-code-skills --skill skills-search
0 commentsdiscussion
summary

Before doing anything else, check if ccpm is available. If not, bootstrap the entire ecosystem with one command:

skill.md

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

ccpm search <query> [--limit <n>] [--tags <t1,t2>] [--author <name>] [--smart]

Discovery

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

Install & 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 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:

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

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.764 reviews
  • Kwame Harris· Dec 28, 2024

    Registry listing for skills-search matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Olivia Gonzalez· Dec 24, 2024

    Registry listing for skills-search matched our evaluation — installs cleanly and behaves as described in the markdown.

  • Advait Flores· Dec 16, 2024

    Keeps context tight: skills-search is the kind of skill you can hand to a new teammate without a long onboarding doc.

  • Kwame Martin· Dec 12, 2024

    skills-search reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Meera Kapoor· Dec 12, 2024

    skills-search is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Isabella Singh· Dec 8, 2024

    Useful defaults in skills-search — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.

  • Naina Smith· Dec 4, 2024

    skills-search fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Kiara Khanna· Nov 27, 2024

    skills-search has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Kwame Sharma· Nov 23, 2024

    skills-search is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Advait Dixit· Nov 7, 2024

    We added skills-search from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.

showing 1-10 of 64

1 / 7