AI AgentIntermediate25 min read

AI Agent (3) — Claude Skills: Modular Agents That Plug Into Your Work

Learn what Claude Skills are, where to find them (4 major marketplaces), how to install one in 60 seconds, and how to build your own custom Skill from scratch—no coding required.

AI Agent (3) — Claude Skills: Modular Agents That Plug Into Your Work

AI Agent (3) — Claude Skills: Modular Agents That Plug Into Your Work

In this guide, you will learn what Claude Skills are, how they differ from regular prompts, where to find ready-made Skills (Anthropic's official marketplace, Agensi, LobeHub, and others), how to install one in under 60 seconds, and how to build your own Skill from scratch — all without writing code.

Difficulty: ★★☆☆☆ (Light hands-on; no coding required to use Skills)
Required Tools: Claude Pro account + Claude Code CLI or Cowork desktop app
Updated: May 2026

Overview

Article 02 introduced Claude Skills as one of the five accessible agent features. This article goes deep. Skills are the most under-used feature in Claude Pro by a wide margin — most subscribers don't realize they exist, even though they're free, easy to install, and dramatically reduce the friction of repeating tasks. The concept is simple: a Skill is a packaged recipe that tells Claude how to behave like a specialist for one specific kind of task. You install it once, then call it from any chat with a slash command (/skill-name) — no copy-pasting prompts from Notion, no re-explaining your context, no hunting for that great prompt you wrote last month.

The standout fact about Claude Skills in 2026 is that they're cross-platform. Anthropic introduced the open SKILL.md specification in late 2025, and OpenAI adopted the exact same format for ChatGPT Codex shortly after. That makes a Skill genuinely portable — one file that works in Claude Code, Cowork, OpenAI Codex CLI, ChatGPT, GitHub Copilot, Cursor, and over a dozen other platforms. The marketplaces have responded: ClaudeSkills.info alone hosts 658+ free Skills, Agensi runs the paid Skills marketplace with Stripe payouts, and Anthropic maintains a public GitHub repository with official examples.

In this article, we'll cover what's inside a Skill (you'll see exactly what the recipe file looks like), where to find good Skills, how to install one in under a minute, and how to write your own when no existing Skill fits your need. By the end, you'll have at least one Skill installed and one of your own custom Skills running.

Who This Is Useful For

  • Claude Pro subscribers who keep pasting the same multi-paragraph prompts into every new conversation and want to stop
  • People with a recurring work pattern — meeting notes cleanup, customer support replies, weekly reviews, content briefs — that they'd love to reduce to one slash command
  • Anyone shopping the agent ecosystem who wants the simplest, lowest-cost entry point before committing to bigger platforms like Manus or Perplexity Computer
  • Team leads who want to share a "house style" or workflow with everyone on the team — Skills are file-based and easy to distribute via Slack or Git
  • What You Will Learn

    By the end of this article, you'll be able to do five things:

  • Explain what a Skill is — the difference between a Skill, a regular prompt, a Custom GPT, and a Project
  • Read a SKILL.md file without being intimidated, even if you've never seen one before
  • Install a Skill from a marketplace in under 60 seconds using one of three methods
  • Browse the four major Skill marketplaces confidently — knowing which one fits which use case
  • Write your own first Skill following a 5-section template that works on the first try
  • What You Need

  • A Claude Pro, Max, Team, or Enterprise account ($20/month or higher)
  • Either Claude Code (CLI) or Cowork desktop app installed — both are included with Claude Pro
  • About 25 minutes (10 to read, 5 to install one Skill, 10 to write your first one)
  • One real, recurring task in mind that you'd like to package as a Skill — we'll use it for the build walkthrough in Step 6
  • Step 1 — What a Skill Actually Is (And Isn't)

    A Claude Skill is a small folder containing one essential file — SKILL.md — and optionally a few extra files (templates, scripts, reference material). The folder lives in a designated Skills directory on your computer. When you start a conversation in Claude Code or Cowork, Claude scans your installed Skills and makes them available as commands. You invoke a Skill by typing /skill-name or by mentioning it in a longer prompt; Claude loads the Skill's instructions and acts as that specialist for as long as the task lasts.

    The conceptual model that helps most people: a Skill is like hiring a contractor for a specific job. Regular Claude is a generalist — smart, but with no specific instructions for how to handle your particular use case. A Skill is a contractor with a tightly written job description, a sample portfolio of past work, and clear rules about what to do and not to do. When you call the contractor (/customer-support-reply), they show up already trained for that job. When the job's done, you can call a different contractor (/meeting-notes-cleanup) for a different kind of work.

    Skills are not the same as four other things people often confuse them with:

  • A Skill is not a Custom GPT. Custom GPTs (covered in Article 8 of the ChatGPT 101 series) live inside the OpenAI ecosystem, configured through a web UI, with their own conversation memory. Skills are file-based, portable across platforms, and don't have their own conversation memory — they ride on top of whatever conversation you're in.
  • A Skill is not a Project. A Claude Project is a workspace with persistent context (uploaded files, custom instructions, ongoing chat history). A Skill is a reusable command. You typically use them together — a Skill called from inside a Project gets the Project's context plus the Skill's specialist behavior.
  • A Skill is not just a saved prompt. Saved prompts in tools like Notion or Apple Notes are static text you copy-paste. Skills are loaded automatically by Claude when invoked, can include reference files (like a brand style guide or template document), and can guide Claude through multi-step workflows.
  • A Skill is not the same as an Agent in the broader sense. A Skill packages instructions and reference material; the agent (Claude Code, Cowork, OpenAI Codex) is the runtime that executes those instructions, calls tools, and adapts to results. Skills + an agent runtime = a real working specialist agent.

  • Step 2 — The Anatomy of a SKILL.md File

    Most non-technical users have never opened a SKILL.md file and assume it's intimidating. It isn't. The file is plain text written in Markdown (the same format used by README files on GitHub, Notion documents exported as Markdown, and many other tools). A working Skill file has five clearly labeled sections, and you don't need to write a single line of code to create one.

    Here's the actual structure of a typical Skill file. Don't worry about memorizing it — you'll be filling in a template, not writing from scratch.

    The five sections, plain English:

  • The frontmatter (the --- block at the top) — Two required pieces of metadata: a name (this becomes the slash command — /meeting-notes-cleanup) and a description (Claude uses this to decide when to activate the Skill if you're not explicitly invoking it).
  • The "When to use this skill" section — A short paragraph telling Claude what kind of input or context should trigger this Skill. The clearer this is, the better Claude is at picking the right Skill for ambiguous prompts.
  • The "Instructions" section — The heart of the Skill. Step-by-step or bullet-list directions for how Claude should handle the task. This is where your expertise gets captured. The more specific you are, the more reliably the Skill performs.
  • The "Examples" section (optional but powerful) — One or two paired input/output examples. Claude learns the desired format and tone faster from examples than from instructions alone.
  • The "Reference files" section (optional) — If your Skill should reference a template, a style guide, or a knowledge document, you list it here. Claude will pull from those files when generating output.

  • Step 3 — Where Skills Live: Three Installation Methods

    Skills live in a designated folder on your computer. Once Claude Code or Cowork knows about that folder, the Skills inside become available in every chat. There are three places Skills can live, and each fits a different use case.

    Location 1: Personal Skills (~/.claude/skills/). This is the most common place to install Skills. Anything in this folder is available across every project on your computer. Use this for general-purpose Skills — translation polishers, meeting notes cleanups, voice tuners — that aren't tied to a specific job or codebase.

    Location 2: Project-Level Skills (.claude/skills/ inside a project folder). When you put a Skill inside a project's own .claude/skills/ folder, the Skill only loads when you're working in that project. Use this for Skills that are specific to one client, one codebase, or one job. The advantage: you can commit project Skills to Git and share them with teammates automatically — anyone who clones the repo gets the same Skills.

    Location 3: Plugin/Marketplace Skills (installed via /plugin commands). Claude Code has a built-in plugin system. Marketplaces like Anthropic's official one and Agensi let you install Skills with a single command — for example: /plugin marketplace add anthropics/skills to subscribe to the official marketplace, then /plugin install meeting-notes-cleanup to install a specific Skill. This is the fastest method for most users.

    For non-technical users, the easiest workflow is:

    1. Find a Skill you want from a marketplace (we'll cover marketplaces in Step 4)
    2. Use Claude Code or Cowork's built-in installer (Step 5)
    3. The Skill goes into your personal Skills folder automatically
    4. Restart Claude Code or Cowork (or just open a new chat)
    5. The Skill is now available as /skill-name


    Step 4 — Browse the Skill Marketplaces

    Four major marketplaces in 2026, each with a slightly different focus.

    Anthropic's Official Marketplace (github.com/anthropics/skills). The reference implementation. Hosts the official template Skill plus a curated set of high-quality examples. Best for: learning what good Skills look like; finding well-maintained Skills for common tasks. Free; open-source. The starting point for newcomers.

    ClaudeSkills.info (claudeskills.info/skills). The largest free Skill directory in 2026, with 658+ Skills as of mid-year. Skills are organized by category (Software Engineering, Writing, Research, Design, Data Analysis, etc.) and include browser previews so you can see what each Skill does before installing. Best for: discovering free Skills across many domains; finding well-rated community-built Skills.

    Agensi (agensi.io). The paid Skill marketplace. Works like a Stripe-backed app store for Skills — creators publish, set prices, and Agensi handles payments, security scans, and distribution. Skills typically cost €5–15, with creators receiving 80% of each sale. Best for: finding professionally-built specialist Skills (e.g., AWS security audit, contract red-flag finder, niche-industry research) where the quality bar matters; for builders who want to monetize their Skills.

    LobeHub Agent Skills Marketplace (lobehub.com/skills). A multi-platform marketplace that supports Skills compatible with Claude Code, OpenAI Codex CLI, and ChatGPT. Skills are tagged by platform compatibility. Best for: finding Skills that work across multiple AI coding assistants if you switch between platforms.

    SkillsMP (skillsmp.com). A newer player focused on agent-skill discovery and ratings, with a community review system. Best for: gauging Skill quality through user reviews before installing.


    Step 5 — Install Your First Skill in 60 Seconds

    Let's actually install one. We'll use Anthropic's official marketplace and install a useful starter Skill.

    Open Claude Code in your terminal (or Cowork's chat panel). Type:

    
    /plugin marketplace add anthropics/skills
    

    This subscribes you to Anthropic's official marketplace. You'll see a confirmation that the marketplace is now available.

    Next, browse the available Skills:

    
    /plugin list
    

    You'll see a list of Skills available from the marketplace. Pick one that fits a task you do often. For this walkthrough, let's install a hypothetical meeting-notes-cleanup Skill (substitute whatever exists in the current marketplace):

    
    /plugin install meeting-notes-cleanup
    

    Claude Code or Cowork downloads the Skill, places it in your personal Skills folder, and confirms installation. You may need to start a new chat for it to register.

    Now test it. In a new chat, type:

    
    /meeting-notes-cleanup

    [paste raw meeting notes from a recent meeting here]

    Claude loads the Skill's instructions and produces a structured summary in the format the Skill specifies. You'll notice immediately that the output is cleaner and more consistent than what you'd get from a freeform prompt — that's the Skill's instructions doing their job.


    Step 6 — Build Your Own First Skill From Scratch

    Marketplaces are great, but the highest-leverage Skills are usually the ones tailored to your specific work. Building one is genuinely simple — it's writing a recipe in plain English. Let's walk through it.

    Pick a task. The best candidates for a custom Skill: any prompt you've copy-pasted three or more times in the past month. Examples that work well:

  • A "weekly status update" Skill — takes your week's calendar entries and produces the format your boss prefers
  • A "translate to formal Mandarin" Skill — translates with your preferred terminology, regional vocabulary, and formality
  • A "blog post outliner" Skill — produces an outline matching your publication's house style
  • A "client onboarding email" Skill — drafts welcome emails using your tone and standard sequence
  • Open your Skills folder. On Mac, it's at /Users/yourname/.claude/skills/ (you may need to make the .claude folder visible — press Cmd+Shift+. in Finder). On Windows, it's at C:\Users\yourname\.claude\skills\. Create a new folder for your Skill — for example, weekly-status-update. Inside that folder, create a file named exactly SKILL.md.

    Fill in the template. Open SKILL.md in any text editor (TextEdit, Notepad, VS Code — anything that handles plain text). Paste this template and edit.

    Save and test. Save the file. Open Claude Code or Cowork in a new chat. Type /weekly-status-update and watch your custom specialist run. If the output's off, edit the SKILL.md file (mostly the Instructions section) and try again — Skills update instantly without restart.

    Iterate over a few uses. Your first version of a Skill is rarely perfect. After running it 5–10 times on real data, you'll notice patterns: maybe the bullets are too long, or the tone is too formal, or it's missing a section. Edit the Skill, refine, and the next run uses the new version. Most working Skills get 3–5 revisions in their first month.


    Step 7 — Using Skills Day-to-Day

    Once you have a few Skills installed, the daily workflow shifts. Instead of starting every task with "let me write a fresh prompt," you start with "which Skill fits this?" The change feels small at first but compounds quickly.

    A few habits that make Skills genuinely useful:

  • Maintain a short list of your active Skills. Most people land on 8–15 Skills they actually use; more than that gets confusing. Pin a list in Notion or a sticky note so you remember what's available.
  • Combine Skills with Projects. Inside a Claude Project, the Project's custom instructions provide context (who you are, what you're working on); the Skill provides the task-specific instructions. Together they're far more powerful than either alone.
  • Update Skills as your work evolves. A Skill written 6 months ago for a job you've moved on from is just clutter. Quarterly, audit your installed Skills and remove ones you haven't used in 30 days.
  • Share Skills with teammates. If you build a great Skill, send the SKILL.md file (or the whole folder) to a coworker. They drop it in their Skills folder; suddenly your team is using the same workflow.
  • Keep Skills cheap. A well-written Skill should be quick — usually one or two LLM calls per use. If a Skill takes 10 minutes and many tool calls, it might be worth restructuring as a fully agentic flow (Manus or Claude Code Plan Mode) instead.
  • Common Mistakes to Avoid

    Three patterns that hold people back from getting full value out of Skills.

    Mistake #1: Treating every prompt as Skill-worthy. Not every task you do is recurring enough to need a Skill. The "rule of three" works well — if you've used the same prompt three or more times in a month, build a Skill. If you've used it once or twice, keep it as a regular chat for now.

    Mistake #2: Writing Skills with vague instructions. A Skill that says "respond professionally" gives Claude almost nothing to work with — the output will be the same as a generic prompt. Skills earn their value through specificity. The more concrete your instructions ("avoid these specific words," "always include this section," "match this tone using these examples"), the more reliable the output.

    Mistake #3: Hoarding Skills you don't use. It's easy to install Skills out of curiosity ("oh, that looks neat") and never actually run them. Every unused Skill is just clutter. If you haven't used a Skill in 30 days, uninstall it. The marketplaces will still be there if you change your mind.

    Going Further

    Start a "Skills inbox" habit. Whenever you find yourself pasting the same prompt twice in one week, write it down. Once a month, look at the list — those are your candidates for new custom Skills. This habit alone tends to grow most people's personal Skills library to a useful 8–12 over a few months.

    Try one paid Skill on Agensi. Most of the value in Skills comes from your own custom ones, but the paid marketplace has some genuinely sharp Skills that pay back their €5–15 cost in a single use. Domain-specialist Skills (legal contract review, AWS audit, SEO analysis) are the most common winners.

    Read the next article in this series — Article 04 covers Perplexity Computer. Skills handle one-step specialist tasks; Perplexity Computer handles multi-step research that crosses many websites. Together they cover most of what non-developers need from agents in 2026.

    Key Takeaways

    Here's what you learned in this guide:

  • A Skill is a recipe. A folder containing a SKILL.md file plus optional reference material that tells Claude how to behave like a specialist for one type of task.
  • Skills are cross-platform. The open SKILL.md standard is supported by Claude Code, Cowork, OpenAI Codex CLI, ChatGPT, GitHub Copilot, Cursor, and 14+ other platforms.
  • Three places Skills can live. Personal (~/.claude/skills/) for general use, project-level (.claude/skills/) for project-specific Skills, and plugin-installed for marketplace Skills.
  • Four major marketplaces. Anthropic's official (free, reference quality), ClaudeSkills.info (largest free directory at 658+ Skills), Agensi (paid, professional quality), LobeHub (multi-platform discovery).
  • Installing takes 60 seconds. /plugin marketplace add then /plugin install — that's it.
  • Building your own takes 10 minutes. Five sections (frontmatter, when-to-use, instructions, examples, references) in plain Markdown. No code.
  • The "rule of three" decides when to build. Used the same prompt three times this month? Time to make it a Skill.
  • The first Skill you install feels small. The fifth one feels like cheating. By the time you have 10 well-tuned Skills available as slash commands, your daily Claude experience is fundamentally different — every recurring task gets a specialist, your "good prompts" Notion page becomes obsolete, and you stop second-guessing whether a task is worth doing at all.

    Learn AI, after work

    Track your progress, earn XP, and unlock more free tutorials in the AfterWork Bytes app.

    Open this tutorial in the app