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?

ใป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?

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.

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]

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

Meta Skills are the foundation for all other Skills.
๐ฆ๐ธ๐ถ๐น๐น ๐๐ฟ๐ฒ๐ฎ๐๐ผ๐ฟ (Extremely useful)

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.

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

๐๐ฟ๐ถ๐น๐น ๐ ๐ฒ
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
๐ฃ๐ฅ๐ ๐๐ผ ๐ฃ๐น๐ฎ๐ป

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"

๐ง๐๐
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

๐ฆ๐ฒ๐๐๐ฝ ๐ฃ๐ฟ๐ฒ-๐๐ผ๐บ๐บ๐ถ๐
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

๐๐ฑ๐ถ๐ ๐๐ฟ๐๐ถ๐ฐ๐น๐ฒ
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

๐๐ฟ๐ผ๐ป๐๐ฒ๐ป๐ฑ ๐๐ฒ๐๐ถ๐ด๐ป
Guides the generation of modern, clean UI.
Link: github.com/anthropics/skills/tree/main/skills/frontend-design
๐ง๐ต๐ฒ๐บ๐ฒ ๐๐ฎ๐ฐ๐๐ผ๐ฟ๏ฝ
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

๐ฆ๐๐ฟ๐ถ๐ฝ๐ฒ ๐๐ป๐๐ฒ๐ด๐ฟ๐ฎ๐๐ถ๐ผ๐ป
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

๐ฃ๐๐ / ๐๐ข๐๐ซ / ๐ฃ๐ฃ๐ง๐ซ / ๐ซ๐๐ฆ๐ซ
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

The installation order proposed in the original article is quite practical, so I'll introduce it as is:
- Start with Meta Skills โโ Install Write a Skill and Skill Creator to be able to create and modify Skills.
- Add Planning systems โโ Grill Me, Write a PRD, PRD to Plan, PRD to Issues, Design an Interface. This prevents 80% of rework.
- Code safety devices โโ Git Guardrails, Setup Pre-Commit, TDD, Systematic Debugging, Triage Issue. Add to all repositories.
- Add Superpowers as a base layer โโ github.com/obra/superpowers
- Layer Business skills on top โโ Marketing Skills, Claude SEO, Lead Research, Content Researcher.
- Fill gaps with SkillsMP โโ Search skillsmp.com first when you hit a new challenge before making one.

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.

๐๐น๐ฎ๐๐ฑ๐ฒ ๐๐ผ๐ฑ๐ฒ ๐ฆ๐๐๐ฑ๐ถ๐ผ @ ๐๐ฎ๐ฝ๐ฎ๐ป๏ผ@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!





