🎯 Skill Hunter
Complete guide to finding, installing, and managing Claude Code skills
Quick Install Any Skill
npx skills add [skill-name]
Example: npx skills add playwright-skill
📍 Where Are Skills Located?
1. Official One Person Company Skills
Browse all 200+ curated skills at:
- Website: onepersoncompany.com/skills
- GitHub: github.com/onepersoncompany/skills
2. Local Skills Directory
Your installed skills are stored in:
~/.claude/skills/
Each skill has its own folder containing SKILL.md and related files.
3. Project-Specific Skills
Skills can also live in your project:
your-project/.claude/skills/
🔍 How to Find Skills
| Method | Command / Location |
|---|---|
| Browse Website | onepersoncompany.com/skills |
| Search by Category | Filter by: coding, seo, automation, agent, etc. |
| List Installed Skills | ls ~/.claude/skills/ |
| Search GitHub | Search "claude skill" or "SKILL.md" |
📦 Installing Skills
Method 1: NPX (Recommended)
# Install from One Person Company registry
npx skills add playwright-skill
# Install multiple skills
npx skills add hotfix debug review
Method 2: Manual Download
- Go to the skill page on onepersoncompany.com/skills
- Click "Download SKILL.md"
- Save to
~/.claude/skills/[skill-name]/SKILL.md
Method 3: Git Clone
# Clone entire skills repository
git clone https://github.com/onepersoncompany/skills.git
# Copy specific skill
cp -r skills/playwright-skill ~/.claude/skills/
📁 Skill File Structure
~/.claude/skills/
├── playwright-skill/
│ ├── SKILL.md # Main skill definition
│ ├── run.js # Optional: execution script
│ └── templates/ # Optional: templates
├── hotfix/
│ └── SKILL.md
└── debug/
└── SKILL.md
🏷️ Skill Categories
| Category | Description | Examples |
|---|---|---|
| Coding | Development & debugging | playwright-skill, debug, hotfix |
| SEO | Search optimization | seo-audit, programmatic-seo, ai-seo |
| Automation | Workflow automation | ai-blog-writer, review, ship |
| Agent | AI agent capabilities | agent-browser, mcp-builder |
✨ Creating Your Own Skills
Basic SKILL.md Template
---
name: my-skill
description: "What this skill does"
category: automation
---
# My Skill
Instructions for Claude Code when this skill is invoked.
## When to Use
- Scenario 1
- Scenario 2
## How It Works
1. Step one
2. Step two
3. Step three
Publish to One Person Company
- Create your SKILL.md file
- Test locally in
~/.claude/skills/ - Submit PR to github.com/onepersoncompany/skills
🔗 Quick Links
- Browse All Skills — 200+ curated skills
- GitHub Repository — Source code & contributions
- Playwright Skill — Browser automation
- Hotfix Skill — Emergency production fixes
- Debug Skill — Systematic debugging