Top 67 Claude Skills That Turn a $20 Subscription Into a Full Dev Team - (Full Links)
Wednesday, April 15, 2026 AI
Scraped Article
Most people use Claude like a $20 autocomplete
They type. They get an answer. They move on
> They have no idea Claude can run an entire dev team - architect, reviewer, debugger, docs writer - all at once
They just don't know skills exist
> The difference? Skills.
67 of them. With full install commands. Sorted by use case.
What Claude skills actually are
A skill is a folder with a SKILL.md file that tells Claude exactly how to do a specific type of work: step-by-step process, constraints, examples, and any helper scripts or templates
Instead of re-explaining your process every session, you install that process once as a skill and reuse it forever
Install commands use this format:
Key repos:
Official Anthropic skills: github.com/anthropics/skills
Matt Pocock personal skills (15k stars): github.com/mattpocock/skills
Community marketplace (66k+ skills): skillsmp.com
Meta skills - managing your AI workspace
These skills help you build, test, and organize every other skill
Skill Creator
What it does: Benchmarks Claude on your task, then helps you draft and iterate new skills based on real runs.
Use it when: You want to turn a messy workflow into one clean SKILL.md.
Link: github.com/anthropics/skills/tree/main/skills/skill-creator
How to use:
Describe your workflow in bullet points
Ask Skill Creator to propose a first SKILL.md
Run 3-5 test prompts, inspect failures, and let it refine the instructions
Write a Skill
What it does: Guides Claude to write new skills with proper structure, progressive disclosure, and bundled resources
This is the right way to create skills that don't break over time
Link: github.com/mattpocock/skills/tree/main/write-a-skill
Install:
Use it when Skill Creator gives you a raw draft and you need to clean up the structure
Find Skills
What it does: Searches public marketplaces like SkillsMP for skills that match your use case.
Example marketplace: skillsmp.com
Tip: Treat "finding skills" like package management. Before you write a new skill, search for existing ones and fork them
Planning and design skills
These skills stop you from building the wrong thing.
Grill Me
Purpose: Forces Claude to ask relentless clarifying questions about your feature, one question at a time, until every branch of the decision tree is resolved.
Use it for: New features, refactors, risky migrations.
Install: npx skills@latest add mattpocock/skills/grill-me
Link: github.com/mattpocock/skills/tree/main/grill-me
You will get questions about data models, edge cases, failure modes, existing systems. Answer patiently once instead of firefighting later
Write a PRD
Purpose: Creates a PRD through an interactive interview, codebase exploration, and module design. Files it as a GitHub issue.
Install: npx skills@latest add mattpocock/skills/write-a-prd
Link: github.com/mattpocock/skills/tree/main/write-a-prd
Ask it to:
Capture goals, non-goals, user stories
Enumerate success metrics and constraints
Link to existing systems you'll touch
PRD to Plan
Purpose: Turns a PRD into a multi-phase implementation plan using tracer-bullet vertical slices. This is not just task breakdown - it gives you the sequence that actually reduces integration risk.
Install: npx skills@latest add mattpocock/skills/prd-to-plan
Link: github.com/mattpocock/skills/tree/main/prd-to-plan
The difference from PRD to Issues: a plan is ordered and staged, issues are independent. Use both
PRD to Issues
Purpose: Breaks a PRD into independently-grabbable GitHub issues with vertical slices and blocking relationships.
Install: npx skills@latest add mattpocock/skills/prd-to-issues
Link: github.com/mattpocock/skills/tree/main/prd-to-issues
Tell it:
"Use PRD to Issues on the PRD above. Output GitHub issues grouped by epic with blockers stated explicitly"
Design an Interface
Purpose: Generates multiple radically different interface designs for a module using parallel sub-agents.
Install: npx skills@latest add mattpocock/skills/design-an-interface
Link: github.com/mattpocock/skills/tree/main/design-an-interface
Not just one design - you get 3-5 competing options with different tradeoffs. Pick the one that makes sense for your constraints
Request Refactor Plan
Purpose: Creates a detailed refactor plan with tiny commits via user interview, then files it as a GitHub issue.
Install: npx skills@latest add mattpocock/skills/request-refactor-plan
Link: github.com/mattpocock/skills/tree/main/request-refactor-plan
Code development skills
These skills turn Claude into a disciplined engineering partner, not a code autocomplete toy.
TDD
Purpose: Forces a strict test-first, red-green-refactor loop. Builds features or fixes bugs one vertical slice at a time.
Install: npx skills@latest add mattpocock/skills/tdd
Link: github.com/mattpocock/skills/tree/main/tdd
You get:
Failing tests first
Then minimal code to pass them
Then a refactor pass, still under tests
Triage Issue
Purpose: Investigates a bug by exploring the codebase, identifies the root