67 Essential Claude Skills: Unlock 100% Potential and Build Your AI Development Team

@ClaudeCode_love
ЯПОНСЬКА17 квіт. 2026 р.
1.3M
2.1K
189
4
5.1K

Коротко

A comprehensive breakdown of 67 Claude Skills that enhance Claude Code's capabilities across design, development, and business tasks, including a step-by-step installation guide.

Everyone, there are so many Skills that you might be wondering which ones to add, right? 😱

Don't worry. This article will solve everything! I promise that by the end, your Claude will become 10 times smarter! 🔥

By the way, do you have these problems when using Claude or Claude Code?

Claude Code Studio - inline image

・Using Claude Code but repeating the same explanations every time

・Knowing the "Skills" feature exists but not knowing what to add

・Wanting to automate the flow from design → development → testing → documentation

・Wanting to use Claude Code as more than just "simple code completion"

Right now, the "67 Claude Skills" post by Mr. Buzzoni (@polydao), an influential figure in the overseas AI and crypto space, is going viral with 1.24 million views 😳

This time, I will break down and explain that content in an easy-to-understand way 👇

Original post here: https://x.com/polydao/status/2044317956893471081?s=20

■ What are 𝗖𝗹𝗮𝘂𝗱𝗲 𝗦𝗸𝗶𝗹𝗹𝘀 in the first place?

Claude Code Studio - inline image

Most people use Claude Code by "just giving normal instructions." You ask a question, get an answer, and that's it.

But Claude Code has a mechanism called "Skills," and by using this, Claude Code functions as a development team that combines the roles of designer, reviewer, debugger, and document writer.

A Skill is a folder containing a SKILL.md file. This file contains step-by-step instructions on "how to perform a specific task." It can also include constraints, examples, helper scripts, and templates.

Claude Code Studio - inline image

In other words, you no longer need to explain "do this, then do that" every session. Once installed as a Skill, it can be reused forever.

Installation is basically this command:

npx skills@latest add [repository/path]

Claude Code Studio - inline image

Major sources for Skills:

・Anthropic Official: github.com/anthropics/skills

・Matt Pocock (over 15,000 stars): github.com/mattpocock/skills

・Community Marketplace (over 66,000 Skills): skillsmp.com

■ 𝗠𝗲𝘁𝗮 𝗦𝗸𝗶𝗹𝗹𝘀 ── The "skills to make skills" you should add first

Claude Code Studio - inline image

Meta Skills are the foundation for all other Skills.

𝗦𝗸𝗶𝗹𝗹 𝗖𝗿𝗲𝗮𝘁𝗼𝗿 (Extremely useful)

Claude Code Studio - inline image

Benchmarks Claude on your tasks and helps create and improve new Skills based on actual execution results.

How to use: Explain the workflow in bullet points → Have it propose a SKILL.md draft → Test 3-5 times and analyze failures → Let it improve.

Link: github.com/anthropics/skills/tree/main/skills/skill-creator

𝗪𝗿𝗶𝘁𝗲 𝗮 𝗦𝗸𝗶𝗹𝗹

Guides you on how to write a Skill with proper structure, progressive disclosure, and bundled resources. Once you have a raw draft from Skill Creator, use this to organize the structure.

Install: npx skills@latest add mattpocock/skills/write-a-skill

Link: github.com/mattpocock/skills/tree/main/write-a-skill

𝗙𝗶𝗻𝗱 𝗦𝗸𝗶𝗹𝗹𝘀

Search for Skills that fit your use case from public marketplaces like SkillsMP. The golden rule is to look for existing ones and fork them before writing a new Skill.

Marketplace: skillsmp.com

■ 𝗣𝗹𝗮𝗻𝗻𝗶𝗻𝗴 & 𝗗𝗲𝘀𝗶𝗴𝗻 ── Skills to prevent "building the wrong thing"

This might be the most important part. Skills in the design phase prevent 80% of rework after development.

Claude Code Studio - inline image

Here are the skills to prevent "building the wrong thing" 👇

Claude Code Studio - inline image

𝗚𝗿𝗶𝗹𝗹 𝗠𝗲

Claude asks relentless questions until all branches of the decision tree are resolved. Use this for new features, refactoring, or high-risk migrations.

Install: npx skills@latest add mattpocock/skills/grill-me

You'll be asked about data models, edge cases, failure modes, and relations to existing systems. Answering patiently once prevents firefighting later.

𝗪𝗿𝗶𝘁𝗲 𝗮 𝗣𝗥𝗗

Creates a PRD (Product Requirements Document) through interactive interviews, codebase exploration, and modular design, then registers it as a GitHub issue.

Install: npx skills@latest add mattpocock/skills/write-a-prd

𝗣𝗥𝗗 𝘁𝗼 𝗣𝗹𝗮𝗻

Claude Code Studio - inline image

Converts a PRD into a multi-stage implementation plan using the tracer bullet method of vertical slices. It provides an order that actually lowers integration risk, not just task decomposition.

Install: npx skills@latest add mattpocock/skills/prd-to-plan

𝗣𝗥𝗗 𝘁𝗼 𝗜𝘀𝘀𝘂𝗲𝘀

Decomposes a PRD into independent GitHub issues with vertical slices and blocking relationships.

Install: npx skills@latest add mattpocock/skills/prd-to-issues

𝗗𝗲𝘀𝗶𝗴𝗻 𝗮𝗻 𝗜𝗻𝘁𝗲𝗿𝗳𝗮𝗰𝗲

Uses parallel sub-agents to generate 3-5 radically different interface designs for a single module. You get multiple options with different trade-offs instead of just one.

Install: npx skills@latest add mattpocock/skills/design-an-interface

𝗥𝗲𝗾𝘂𝗲𝘀𝘁 𝗥𝗲𝗳𝗮𝗰𝘁𝗼𝗿 𝗣𝗹𝗮𝗻

Creates a detailed refactor plan in small commit units through user interviews and registers them as GitHub issues.

Install: npx skills@latest add mattpocock/skills/request-refactor-plan

■ 𝗖𝗼𝗱𝗲 𝗗𝗲𝘃𝗲𝗹𝗼𝗽𝗺𝗲𝗻𝘁 ── Turning Claude Code into a "disciplined development partner"

Claude Code Studio - inline image

𝗧𝗗𝗗

Enforces a strict test-first red-green-refactor loop. First a failing test → minimal code to pass it → refactor while maintaining tests.

Install: npx skills@latest add mattpocock/skills/tdd

𝗧𝗿𝗶𝗮𝗴𝗲 𝗜𝘀𝘀𝘂𝗲

A skill for when you have "no idea why it's broken." Explores the codebase to identify the root cause and registers a TDD-based fix plan as a GitHub issue.

Install: npx skills@latest add mattpocock/skills/triage-issue

𝗤𝗔

Executes a full QA pass on features. Performs issue decomposition with blocking relationships. Use before every PR to identify edge cases and ship without regressions.

Install: npx skills@latest add mattpocock/skills/qa

𝗜𝗺𝗽𝗿𝗼𝘃𝗲 𝗖𝗼𝗱𝗲𝗯𝗮𝘀𝗲 𝗔𝗿𝗰𝗵𝗶𝘁𝗲𝗰𝘁𝘂𝗿𝗲

Explores architecture improvement points in the codebase. Identifies hotspots, proposes 2-3 refactoring strategies, and provides details on risk, effort, and impact for each.

Install: npx skills@latest add mattpocock/skills/improve-codebase-architecture

𝗦𝘆𝘀𝘁𝗲𝗺𝗮𝘁𝗶𝗰 𝗗𝗲𝗯𝘂𝗴𝗴𝗶𝗻𝗴

A 4-stage debugging methodology that forbids "just changing things." Reproduce → create minimal failing test → narrow down root cause → single fix → test verification.

Link: github.com/obra/superpowers/tree/main/skills/systematic-debugging

𝗔𝘂𝘁𝗼-𝗖𝗼𝗺𝗺𝗶𝘁 𝗠𝗲𝘀𝘀𝗮𝗴𝗲𝘀

Reads staged diffs and automatically generates Conventional Commit messages including type, scope, and body. No more writing "fix stuff" at 2 AM.

Link: github.com/anthropics/skills/tree/main/skills/auto-commit

𝗖𝗼𝗱𝗲 𝗥𝗲𝘃𝗶𝗲𝘄

Systematic review of security, performance, error handling, and architecture. You can specify focus areas like "security-focused review."

Link: github.com/anthropics/skills

𝗦𝘂𝗽𝗲𝗿𝗽𝗼𝘄𝗲𝗿𝘀

A set of battle-tested Skills for TDD, debugging, refactoring, and execution. Can be used as a default "engineering brain" layer.

Link: github.com/obra/superpowers

■ 𝗧𝗼𝗼𝗹𝗶𝗻𝗴 & 𝗦𝗲𝘁𝘂𝗽 ── "Set it and forget it" skills

Claude Code Studio - inline image

𝗦𝗲𝘁𝘂𝗽 𝗣𝗿𝗲-𝗖𝗼𝗺𝗺𝗶𝘁

Sets up Husky pre-commit hooks + lint-staged + Prettier + type checking + tests. Should be run for every new repository.

Install: npx skills@latest add mattpocock/skills/setup-pre-commit

𝗚𝗶𝘁 𝗚𝘂𝗮𝗿𝗱𝗿𝗮𝗶𝗹𝘀 𝗳𝗼𝗿 𝗖𝗹𝗮𝘂𝗱𝗲 𝗖𝗼𝗱𝗲

Sets up hooks to block dangerous git commands like push, reset --hard, and clean before execution. An essential safety net if you use Claude Code on production repositories 🚨

Install: npx skills@latest add mattpocock/skills/git-guardrails-claude-code

𝗗𝗲𝗽𝗲𝗻𝗱𝗲𝗻𝗰𝘆 𝗔𝘂𝗱𝗶𝘁𝗼𝗿

Scans package.json for old, vulnerable, or abandoned packages and outputs a prioritized fix list.

Link: github.com/ComposioHQ/awesome-claude-skills

■ 𝗪𝗿𝗶𝘁𝗶𝗻𝗴 & 𝗞𝗻𝗼𝘄𝗹𝗲𝗱𝗴𝗲 ── Documentation, articles, and terminology

Claude Code Studio - inline image

𝗘𝗱𝗶𝘁 𝗔𝗿𝘁𝗶𝗰𝗹𝗲

Performs editing at the level of restructuring arguments, cutting unnecessary parts, and sharpening points, rather than just "grammar correction."

Install: npx skills@latest add mattpocock/skills/edit-article

𝗨𝗯𝗶𝗾𝘂𝗶𝘁𝗼𝘂𝘀 𝗟𝗮𝗻𝗴𝘂𝗮𝗴𝗲

Extracts a DDD (Domain-Driven Design) style ubiquitous language glossary from conversations. Solves the problem of "event," "order," and "user" being used with different meanings within a team. By defining and unifying domain language before writing code, the codebase, documentation, and conversations share the same vocabulary.

Install: npx skills@latest add mattpocock/skills/ubiquitous-language

𝗔𝗣𝗜 𝗗𝗼𝗰𝘂𝗺𝗲𝗻𝘁𝗮𝘁𝗶𝗼𝗻 𝗚𝗲𝗻𝗲𝗿𝗮𝘁𝗼𝗿

Reads routes and generates OpenAPI/Swagger documentation with examples, error codes, and auth requirements. For when you've shipped an API but haven't written docs. Done in 30 seconds.

Link: github.com/ComposioHQ/awesome-claude-skills

𝗢𝗯𝘀𝗶𝗱𝗶𝗮𝗻 𝗩𝗮𝘂𝗹𝘁

Search, create, and manage an Obsidian Vault with wikilinks and index notes. Automatically navigates the Vault, creates new notes, and maintains link consistency.

Install: npx skills@latest add mattpocock/skills/obsidian-vault

■ 𝗨𝗜 / 𝗗𝗲𝘀𝗶𝗴𝗻 / 𝗙𝗿𝗼𝗻𝘁𝗲𝗻𝗱 ── Design skills

Claude Code Studio - inline image

𝗙𝗿𝗼𝗻𝘁𝗲𝗻𝗱 𝗗𝗲𝘀𝗶𝗴𝗻

Guides the generation of modern, clean UI.

Link: github.com/anthropics/skills/tree/main/skills/frontend-design

𝗧𝗵𝗲𝗺𝗲 𝗙𝗮𝗰𝘁𝗼𝗿y

Generates a complete color palette and theme from a single text prompt. "Calm fintech, trust, dark accents" → palette with tokens → apply to Tailwind/CSS variables.

Link: github.com/anthropics/skills/tree/main/skills/theme-factory

𝗪𝗲𝗯 𝗔𝗿𝘁𝗶𝗳𝗮𝗰𝘁𝘀 𝗕𝘂𝗶𝗹𝗱𝗲𝗿

Builds interactive dashboards, calculators, and tools from natural language.

Link: github.com/anthropics/skills/tree/main/skills/web-artifacts-builder

𝗕𝗿𝗮𝗻𝗱 𝗚𝘂𝗶𝗱𝗲𝗹𝗶𝗻𝗲𝘀

Enforces brand systems on all new components.

Link: github.com/anthropics/skills/tree/main/skills/brand-guidelines

■ 𝗕𝘂𝘀𝗶𝗻𝗲𝘀𝘀 / 𝗦𝗮𝗹𝗲𝘀 / 𝗠𝗮𝗿𝗸𝗲𝘁𝗶𝗻𝗴 ── Business skills

Claude Code Studio - inline image

𝗦𝘁𝗿𝗶𝗽𝗲 𝗜𝗻𝘁𝗲𝗴𝗿𝗮𝘁𝗶𝗼𝗻

Sets up secure payment flows, webhooks, and subscriptions. Prevents basic API mistakes.

Link: github.com/wshobson/agents/tree/main/plugins/payment-processing/skills/stripe-integration

𝗠𝗮𝗿𝗸𝗲𝘁𝗶𝗻𝗴 𝗦𝗸𝗶𝗹𝗹𝘀

A collection of over 20 skills including CRO, copywriting, and email flows.

Link: github.com/coreyhaines31/marketingskills

𝗖𝗹𝗮𝘂𝗱𝗲 𝗦𝗘𝗢

Full version of technical SEO audits, schema, and on-page optimization.

Link: github.com/AgriciDaniel/claude-seo

𝗗𝗼𝗺𝗮𝗶𝗻 𝗡𝗮𝗺𝗲 𝗕𝗿𝗮𝗶𝗻𝘀𝘁𝗼𝗿𝗺𝗲𝗿

Generates product names and checks domain availability. For launching new apps or micro-brands.

Link: github.com/Microck/ordinary-claude-skills/tree/main/skills_all/domain-name-brainstormer

■ 𝗢𝗳𝗳𝗶𝗰𝗲 & 𝗗𝗼𝗰𝘂𝗺𝗲𝗻𝘁𝘀 ── Office skills

Claude Code Studio - inline image

𝗣𝗗𝗙 / 𝗗𝗢𝗖𝗫 / 𝗣𝗣𝗧𝗫 / 𝗫𝗟𝗦𝗫

Table extraction, form filling, PDF merging, Word editing with track changes, slide deck creation/editing, and creating formulas, pivot tables, and charts from plain text. All provided by Anthropic official.

Link: github.com/anthropics/skills/tree/main/skills/

𝗗𝗼𝗰 𝗖𝗼-𝗔𝘂𝘁𝗵𝗼𝗿𝗶𝗻𝗴

Real-time co-authoring between you and Claude.

Link: github.com/anthropics/skills/tree/main/skills/doc-coauthoring

■ 𝗠𝘂𝗹𝘁𝗶-𝗔𝗴𝗲𝗻𝘁 ── Multi-agent skills

𝗦𝘁𝗼𝗰𝗵𝗮𝘀𝘁𝗶𝗰 𝗠𝘂𝗹𝘁𝗶-𝗔𝗴𝗲𝗻𝘁 𝗖𝗼𝗻𝘀𝗲𝗻𝘀𝘂𝘀

Generates many sub-agents to solve the same problem and aggregates the answers. For strategic decisions, architecture choices, and risk analysis.

Link: github.com/hungv47/meta-skills

𝗠𝗼𝗱𝗲𝗹-𝗰𝗵𝗮𝘁(𝗗𝗲𝗯𝗮𝘁𝗲)

Stress-tests ideas by having multiple Claude instances debate. For when you're torn between 2-3 big bets.

Link: github.com/tommasinigiovanni/conclave

𝗙𝗶𝗿𝗲𝗰𝗿𝗮𝘄𝗹 𝗦𝗸𝗶𝗹𝗹

Extracts structured data from complex sites that block common scrapers.

Link: github.com/mendableai/firecrawl

■ Recommended Installation Order

Claude Code Studio - inline image

The installation order proposed in the original article is quite practical, so I'll introduce it as is:

  1. Start with Meta Skills ── Install Write a Skill and Skill Creator to be able to create and modify Skills.
  1. Add Planning systems ── Grill Me, Write a PRD, PRD to Plan, PRD to Issues, Design an Interface. This prevents 80% of rework.
  1. Code safety devices ── Git Guardrails, Setup Pre-Commit, TDD, Systematic Debugging, Triage Issue. Add to all repositories.
  1. Add Superpowers as a base layer ── github.com/obra/superpowers
  1. Layer Business skills on top ── Marketing Skills, Claude SEO, Lead Research, Content Researcher.
  1. Fill gaps with SkillsMP ── Search skillsmp.com first when you hit a new challenge before making one.
Claude Code Studio - inline image

The important thing is that Skills are not something to "add all of," but to "select and add what you need." Pick one from each section and install it today. In a week, you'll feel like you can't work without them! 🔥

For those who found this article even slightly helpful.

Claude Code Studio - inline image

𝗖𝗹𝗮𝘂𝗱𝗲 𝗖𝗼𝗱𝗲 𝗦𝘁𝘂𝗱𝗶𝗼 @ 𝗝𝗮𝗽𝗮𝗻(@ClaudeCode_love)is

an account run by three Claude Code enthusiasts.

We post daily about practical CLI usage and automation.

Currently co-developing an AI agent with a listed company.

Our usual content 👇

・Real product development cases using Claude Code and Claude

・Claude Code usage / Vibe Coding / Organizing development trends

・Latest information on Claude Code from overseas

From development philosophy to design, implementation, and improvement,

we summarize overseas and primary information to get working products out into the world, not just "finishing the build."

If you're interested, please follow and check us out! 👀 I think it'll be useful!

Збереження в один клік

Використовуйте YouMind для AI-глибокого читання віральних статей

Зберігайте джерела, ставте цілеспрямовані запитання, підсумовуйте аргументи та перетворюйте віральні статті на корисні нотатки в одному AI-робочому просторі.

Дослідити YouMind
Для авторів

Перетворіть свій Markdown на охайну статтю для 𝕏

Коли ви публікуєте власні лонгріди, зображення, таблиці та блоки коду роблять форматування в 𝕏 складним. YouMind перетворює повну чернетку в Markdown на чисту статтю для 𝕏, готову до публікації.

Спробувати Markdown для 𝕏

Більше патернів для аналізу

Останні віральні статті

Переглянути більше віральних статей