SAVE THIS

Five Claude Skills That Ship Real Work

Claude ships with over 100,000 skills. You need five. Here is what each one does and the exact command to install it, in the order that compounds.

Claude ships with over 100,000 skills. You need five. This guide gives you each one, what it does for your business, and the exact command to install it. Setup takes an afternoon.

Most people run Claude the same way every day. Open it, explain the project again, watch it write something you did not ask for, then close the tab and lose everything it learned. Next session it starts over, with the same re-explaining and the same generic output.

The people who get real work out of it are not smarter with prompts. They installed a handful of skills once and stopped fighting the defaults.

Here is the whole method before you scroll. One skill finds and installs other skills for you. One gives Claude memory across sessions. One makes it plan before it touches your code. One gives it design taste. One watches how you work and upgrades the rest in the background. Install them in the order below and your sessions stop starting from scratch.

What Is a Claude Skill?

A skill is a small set of instructions Claude loads when it needs them. It teaches Claude one repeatable way to do one job well, so you are not re-explaining the method every time. Most people never install a single one, which is exactly why they get generic answers and a blank slate at the start of every conversation. Skills are the difference between a chatbot and something that ships work you can send to a client.

All five below are free and open source. Run the install commands from your project folder, inside your terminal or inside Claude Code.

Skill 1. Find Skills: The One That Installs the Rest

Tell it what you are building. It finds the right skills and installs them for you.

Find Skills is a package manager for the skill ecosystem. You describe the job in plain words, it searches the open library, checks install counts and source reputation so you get options other people have already tested, and it installs the winners for you. It stops you rebuilding things that already exist, and it is how you install the other four in this guide without hunting for anything.

Copy the install command:

Copy this.

npx -y skills add vercel-labs/skills --skill find-skills --agent claude-code

Source: github.com/vercel-labs/skills

Your first real run: ask it for something you actually need this week. "Find me a skill for writing tests." "Find a skill for deploying to Vercel." "Find a skill that drafts follow-up emails." It does the searching and the installing while you keep working.

The mistake that makes it fail: installing whatever comes back first. A skill with a handful of installs and no track record is a stranger's code running in your project. Read the install count. Anything with a thin history, you skip or you read before you trust it. Find Skills surfaces the numbers so you can make that call. Making the call is still on you.

Skill 2. Claude Mem: Memory Across Sessions

By default Claude forgets everything when a session ends. Claude Mem fixes the single most expensive habit in your whole setup: re-explaining your project every morning.

It captures what happened during each session, compresses it, and feeds the relevant pieces back in next time. It remembers your project, your files, and the decisions you already made. You stop paying the re-explain tax at the start of every conversation, which for an operator running client work across a dozen threads is real time back every day.

Copy the install command:

Copy this.

npx claude-mem install

Source: github.com/thedotmack/claude-mem

Your first real run: install it, work a normal session, then close it and open a fresh one. Ask Claude what you were doing yesterday. If it answers with your actual project instead of a shrug, memory is on.

Good to know: there is a live memory viewer at http://localhost:37777 where you can see what it kept. Anything sensitive, wrap in <private> tags and it stays out of stored memory. Client names, contract numbers, anything you would not want sitting in a memory store. The control is yours, so use it.

The mistake that makes it fail: treating the memory as a filing cabinet you never check. It remembers your decisions, including the wrong ones. If you changed direction halfway through a build, say so out loud so the memory updates. If you want memory that lives outside the session too, in a system you own and can read, pair it with a second brain in Obsidian.

Skill 3. Superpowers: It Plans Before It Touches Your Code

Left alone, Claude jumps straight to writing code. Superpowers puts a real method in front of that.

It clarifies what you are actually trying to build. It shows you the spec in small pieces so you can catch a wrong assumption before any code exists. It turns the approved design into a plan of small tasks, then works through them with review built in. The result is fewer half-finished changes and fewer surprises buried in your project.

Copy the two install lines and run them inside Claude Code:

Copy this.

/plugin marketplace add obra/superpowers-marketplace
/plugin install superpowers@superpowers-marketplace

Source: github.com/obra/superpowers

Your first real run: give it a task you would normally rush. A new report, a small automation, a change to an existing flow. Watch it stop and ask what you mean before it builds. That pause is the point.

The mistake that makes it fail: skipping the plan because you are in a hurry. The whole value is the ten minutes it spends confirming the spec so it does not spend an hour building the wrong thing. If you approve a plan without reading it, you have turned the method back off. Read the spec while it is small. That is when a wrong assumption costs you a sentence to fix instead of a full rebuild.

Skill 4. Impeccable: Design Taste, Built In

AI-built interfaces have a look, and it is not a good one. Impeccable installs a shared design vocabulary between you and the model so your front end stops looking generated.

Single words carry the direction. Polish. Audit. Bolder. Quieter. Each word is backed by references for typography, color, motion, and spacing, so when you say "bolder" the model knows what bolder actually means instead of guessing. Your UI starts to look designed.

Copy the install command:

Copy this.

npx impeccable install

Then, inside your AI coding tool, initialize it once:

Copy this.

/impeccable init

Source: github.com/pbakaus/impeccable

Your first real run: take an interface you have already built, one that works but looks flat, and type one word. "Polish." Then "quieter." See what it does with a page you already know. Nothing shows the difference faster.

The mistake that makes it fail: expecting it to design from nothing. It steers taste, it does not invent a brand. Give it a rough layout to react to and it sharpens it. Hand it a blank page and one adjective and you get a competent guess. If you build front ends often, this skill sits inside a wider stack worth setting up together, which I cover in the web design stack for Claude.

Skill 5. Task Observer: The One That Upgrades the Others

This is the meta-skill. It runs quietly during your sessions and watches how you actually work.

It notices the corrections you make, the preferences you express, and the gaps in the skills you already have. Then it turns those into concrete improvements to your other skills, including itself. The more you work, the sharper your whole setup gets, with no prompt engineering from you. It is the skill that makes the other four compound instead of sitting still.

Copy the install command:

Copy this.

npx -y skills add rebelytics/one-skill-to-rule-them-all --agent claude-code

Or ask Find Skills to grab it for you. Then just work normally and let it observe.

Source: github.com/rebelytics/one-skill-to-rule-them-all

Your first real run: install it last, then use your setup for a week without thinking about it. Correct Claude when it gets your style wrong, the way you always would. Task Observer is reading those corrections. After a week, the skills you use most should need fewer of them.

The mistake that makes it fail: installing it first, before you have a working habit for it to learn from. It improves your other skills, so it needs your other skills in place and a few real sessions to study. Put it in last. Give it something to watch.

Install Them in This Order

Five skills, one afternoon, and Claude stops behaving like a chatbot. The order matters, because each one sets up the next.

#SkillWhat it gives you
1Find SkillsInstalls the other four for you
2Claude MemMemory across sessions
3SuperpowersPlans and checks its own work
4ImpeccableDesign taste for your front end
5Task ObserverUpgrades the rest in the background

Install Find Skills first. Then let it pull in the other four by name, so you are testing the package manager while you build the rest of the stack. Task Observer goes last, once there is something for it to observe.

Honest: The Limits You Should Know

These are community skills, free and open source, built and maintained by people who are not on your payroll. That has two consequences worth saying plainly.

First, they change and sometimes break. An install command that works today can shift when a maintainer ships an update. If a command errors, check the source link before you assume you did something wrong. The GitHub page is the truth, not this article.

Second, you are running other people's code in your project. Find Skills shows install counts for exactly this reason. A skill with real usage has been through other people's projects before yours. A skill with almost none has not. That is not a reason to avoid new skills, it is a reason to read before you trust one with anything sensitive.

And on sensitive data specifically: Claude Mem stores what happens in your sessions. If you work with client contracts, personal data, or anything under an agreement, use the <private> tags and check the memory viewer at http://localhost:37777 to see what it actually kept. The control exists. Whether you use it is on you.

When not to bother: if you open Claude twice a month to draft a paragraph, none of this pays for the setup. This is for people running real work through it often enough that starting from scratch every session is a tax they feel.

If You Only Do One Thing This Week

Install Find Skills. That is the one action.

It is the smallest step and it teaches you the pattern: describe the job, let it find and install the tool, keep working. Once that click lands, the other four are ten minutes each and you already know how they get there. Give the full stack a week and you will feel the difference in the first session and compound it in every one after.

If it is not for you, you spent an afternoon and you can uninstall the lot in a morning. That is the whole downside.

This guide is one system.
The map tells you which comes first.

The guides show you the systems. The map shows you which one your business needs first.

Get your free map →
Take this with you Grab the file version → Watch the original video ↗ Download as PDF ↓

Prefer to browse with company? The free community has the full skill library.