AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Find Skills

skill-costa-marcello-skillkit-find-skills · by costa-marcello

Discovers and installs agent skills from the open ecosystem and CCPM registries. Use when users ask 'how do I do X', 'find a skill for X', 'is there a skill that can...', 'ccpm', 'claude code skill', 'installed skills', or want to extend capabilities.

No reviews yet
0 installs
22 views
0.0% view→install

Install

$ agentstack add skill-costa-marcello-skillkit-find-skills

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-costa-marcello-skillkit-find-skills)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
3mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Find Skills? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Find Skills

Search query: $ARGUMENTS

If $ARGUMENTS is empty, ask the user what skill they need.

Step 1: Pick the Registry

| User Request | Registry | CLI | |--------------|----------|-----| | General coding (React, testing, DevOps, linting) | Open Ecosystem | npx skills | | Claude Code features, document processing (PDF, DOCX, XLSX, PPTX) | CCPM | ccpm | | "installed skills", "my skills", "what do I have" | Both | ccpm list + npx skills check |

Tiebreaker: When the request could match either registry, run both searches and present combined results. Let the user pick.

Step 2: Search

Open Ecosystem:

npx skills find $ARGUMENTS

CCPM:

ccpm search $ARGUMENTS

If one registry returns no results, search the other before reporting "not found".

Step 3: Present Results

Show matching skills with name, description, and install command. When both registries return results, group them by registry with clear labels.

Step 4: Install

Open Ecosystem:

npx skills add  -g -y

CCPM:

ccpm install 

Step 5: Verify Installation

Open Ecosystem:

npx skills check

Confirm the skill appears in the installed list.

CCPM:

ccpm list

Confirm the skill appears. Remind the user to restart Claude Code -- CCPM skills load at startup.

If verification fails:

  1. Check the error message from the install command output.
  2. Run the install command again with verbose output.
  3. Check write permissions: ls -la ~/.claude/skills/
  4. If the skill still does not appear, consult the Troubleshooting section below.

When No Skills Are Found

  1. Tell the user no matching skill exists in either registry.
  2. Attempt the task directly using built-in capabilities.
  3. If the user wants a reusable solution, offer to create a custom skill:
  • Open Ecosystem: npx skills init my-skill
  • CCPM: invoke /create-skill

User asks: "how do I make my React app faster?"

  1. Registry: Open Ecosystem (general coding topic).
  2. Search: npx skills find react performance
  3. Results show vercel-labs/agent-skills@vercel-react-best-practices.
  4. Install: npx skills add vercel-labs/agent-skills@vercel-react-best-practices -g -y
  5. Verify: npx skills check -- confirm skill appears in list.
  6. Run the installed skill to help with the React performance task.

User asks: "is there a skill for PDF processing?"

  1. Registry: CCPM (document processing topic).
  2. Search: ccpm search pdf
  3. Check details: ccpm info pdf
  4. Install: ccpm install pdf
  5. Verify: ccpm list -- confirm pdf appears.
  6. Remind user to restart Claude Code for CCPM skills to load.

User asks: "what skills do I have installed?"

  1. Run both: ccpm list and npx skills check
  2. Combine results into a single list grouped by registry.
  3. Report total count and highlight any skills with available updates.

User asks: "find me a skill for testing" (ambiguous -- exists in both registries)

  1. Registry unclear -- run both searches.
  2. Search: npx skills find testing and ccpm search testing
  3. Present combined results:
  • Open Ecosystem: playwright-testing, jest-helpers, vitest-runner
  • CCPM: (no results)
  1. Recommend the best match based on the user's project context.
  2. Install the chosen skill from the matching registry.

User asks: "find a skill for Kubernetes autoscaling" (no results)

  1. Registry: Open Ecosystem (DevOps topic).
  2. Search: npx skills find kubernetes autoscaling -- no results.
  3. Broaden search: npx skills find kubernetes -- still no results.
  4. Search CCPM as fallback: ccpm search kubernetes -- no results.
  5. Tell the user: "No matching skill found in either registry."
  6. Offer to help directly with Kubernetes autoscaling using built-in knowledge.
  7. Offer to create a custom skill: npx skills init kubernetes-autoscaling

Troubleshooting

| Problem | Fix | |---------|-----| | ccpm: command not found | Run npm install -g @daymade/ccpm | | npx skills hangs or fails | Check Node.js version is 18+: node --version | | Skill not available after CCPM install | Restart Claude Code -- skills load at startup | | Permission errors on install | Check write permissions: ls -la ~/.claude/skills/ and fix with chmod -R u+rw ~/.claude/skills/ | | Install succeeds but skill not in list | Run npx skills check or ccpm list again. If still missing, reinstall with --force flag | | Search returns too many results | Add more specific keywords to narrow the query |

References

| File | Purpose | |------|---------| | references/registry-commands.md | Full CLI command reference for both registries and common search categories |

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.