# Find Skills

> Find reusable skills from the vercel-labs/skills registry (especially by task keywords), evaluate fit, and suggest how to install/adapt them for DrugClaw.

- Skill: `drugclaw/find-skills` (Agent Skill)
- Install (CLI): `npx skillmds@latest add drugclaw/find-skills`
- Raw SKILL.md: https://api.skillmd.com/api/skills/drugclaw/find-skills/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Productivity
- License: Proprietary. LICENSE.txt has complete terms
- Author: drugclaw (https://skillmd.com/u/drugclaw)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/drugclaw/find-skills

---


# Find Skills (vercel-labs/skills)

Use this skill when users ask:
- "Do we already have a skill for X?"
- "Find skills for <task>"
- "What existing skill can I reuse instead of writing from scratch?"

Primary source:
- https://github.com/vercel-labs/skills

## Discovery workflow

1. Clarify the target task in one sentence.
2. Search the registry by keywords (task, toolchain, framework, platform).
3. For each candidate skill, extract:
   - Skill name/path
   - What problem it solves
   - Required tools/dependencies
   - Any platform assumptions
4. Recommend one best-fit skill and one fallback.
5. If none fit exactly, propose adaptation steps for DrugClaw.

## Useful commands

Search repo metadata quickly:

```bash
curl -s "https://api.github.com/repos/vercel-labs/skills/contents" 
```

Search issues/paths by keyword (example):

```bash
curl -s "https://api.github.com/search/code?q=repo:vercel-labs/skills+keyword"
```

Fetch raw README/skill docs when needed:

```bash
curl -sL "https://raw.githubusercontent.com/vercel-labs/skills/main/README.md"
```

## Output format

When returning results, use this structure:

1. Best match
2. Why it fits
3. Requirements
4. Install/adapt steps for DrugClaw
5. Alternative options

## DrugClaw adaptation hints

- Convert upstream skill metadata to local `SKILL.md` frontmatter (`name`, `description`, optional `platforms`/`deps`).
- Keep instructions actionable with `bash`, file tools, and existing MCP tools.
- If upstream skill assumes another runtime, add a short "DrugClaw notes" section describing equivalent commands.

