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

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

  1. Go to the skill page on onepersoncompany.com/skills
  2. Click "Download SKILL.md"
  3. 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

  1. Create your SKILL.md file
  2. Test locally in ~/.claude/skills/
  3. Submit PR to github.com/onepersoncompany/skills

Ready to Start?

Browse 200+ skills and supercharge your Claude Code

Browse All Skills →

🔗 Quick Links