Claude Skills for Business: How to Build Custom AI Capabilities in 2026
by Sandlabs Team, Founder, Sandlabs
Anthropic released Claude Skills in late 2025 and it has quietly become the most under-rated feature of the platform. Most coverage online treats Skills as a developer-only tool — a way to wire Python scripts into Claude Code. That framing misses the bigger story: Skills are how non-technical teams give Claude permanent, reusable expertise in your business. Brand voice, SEO rules, cold-outreach templates, client-reporting formats — all encoded once, loaded automatically whenever Claude needs them.
We have been deploying Skills for marketing, sales, and operations teams across our AI consulting engagements for the past four months. This guide explains exactly what Skills are, how to build one from scratch, and the six marketing use cases where they have produced the highest return.
What Are Claude Skills?
A Skill is a folder containing a SKILL.md file with YAML frontmatter and markdown instructions. Optionally it can include reference documents, templates, and helper scripts. Claude loads a Skill into context only when it is relevant — based on the description field in the frontmatter.
That last part is the key insight. Unlike a system prompt (always loaded, eats your context window) or a Projects knowledge base (manual selection, single workspace), a Skill is retrieved on demand. You can have 50 Skills installed and Claude will only load the one or two that match the task in front of it.
The minimal structure:
my-brand-voice/
SKILL.md ← instructions + frontmatter (required)
voice-examples.md ← optional reference, loaded if needed
forbidden-words.md← optional reference
templates/ ← optional assets
blog-intro.md
linkedin-post.md
The SKILL.md itself looks like this:
---
name: sandlabs-brand-voice
description: Apply the Sandlabs brand voice to any written content —
blog posts, LinkedIn posts, emails, client proposals. Use this whenever
the user asks for content in the company's voice, when drafting
marketing copy, or when reviewing written material for tone.
---
# Sandlabs Brand Voice
## Core principles
- Plain English. No buzzwords like "leverage", "synergy", "ecosystem".
- Australian spelling: organisation, optimise, recognise.
- Concrete over abstract: name the tool, quote the number, link the source.
- Founder voice: first-person plural ("we have built", "our clients").
## Sentence structure
- Lead with the result, then the mechanism.
- One idea per paragraph. Three sentences maximum per paragraph.
- Replace passive voice with active voice unless the actor is unknown.
## What to avoid
See `forbidden-words.md` for the full list.
## Examples
See `voice-examples.md` for before/after rewrites.
When the user asks Claude to "draft a blog intro for our new service," the description field matches the request, Claude loads the Skill, follows the instructions, and pulls in voice-examples.md only if it needs concrete examples. Your context window stays clean.
Skills vs MCP vs Projects vs System Prompts
This is the question we get most often. Each tool solves a different problem.
| Tool | What it gives Claude | When to use |
|---|---|---|
| System prompt | Always-on persona and rules | Short, universal directives ("respond in Australian English") |
| Projects | A workspace with attached files | Single-purpose work with a fixed knowledge base (one client, one initiative) |
| MCP servers | Live access to external tools and data | Real-time actions: query Salesforce, post to Slack, read Linear tickets |
| Skills | Reusable expertise, loaded on demand | Repeatable expertise applied across many tasks — voice, formats, playbooks |
The cleanest way to think about it: MCP is for verbs (do things), Skills are for nouns and adjectives (how to do them properly). A marketing team typically needs three or four MCP connectors (Gmail, Notion, Slack, Ahrefs) and ten to fifteen Skills (brand voice, SEO rules, blog template, LinkedIn template, cold email playbook, proposal generator, client report format, and so on).
How to Create a Skill: A Worked Example
Let us build a Skill that drafts SEO-optimised blog posts in your brand voice. We will do it in three steps.
Step 1: Create the folder structure
For Claude Code, Skills live in ~/.claude/skills/ (user-level, available everywhere) or .claude/skills/ inside a specific project. For Claude Desktop and Claude.ai Cowork, Skills are uploaded through Settings → Skills.
~/.claude/skills/blog-drafter/
SKILL.md
seo-checklist.md
blog-structure.md
examples/
pillar-post.md
listicle.md
Step 2: Write the SKILL.md
---
name: blog-drafter
description: Draft long-form blog posts (1500-2500 words) optimised
for SEO and written in the Sandlabs founder voice. Use when the
user asks to write a blog, outline an article, or expand a topic
into a full post. Handles keyword placement, internal linking,
and structure.
---
# Blog Drafter
## Input you need before writing
1. Target keyword (primary)
2. Two or three secondary keywords
3. Search intent (informational, commercial, transactional)
4. Internal links to weave in (Tier-S pages we want to rank)
5. Word count target (default 1800)
If any of these are missing, ASK before writing. Do not invent them.
## Structure (always follow this order)
1. Hook paragraph: surprising fact, contrarian claim, or specific
number. Front-load the primary keyword in the first 100 words.
2. Founder-voice paragraph: "we have...", "our clients...", concrete
experience. Link to /ai-consulting or relevant service page.
3. H2 sections: 4-6 of them, each with a clear question or claim.
4. Tables where comparison helps (pricing, options, decision matrix).
5. "What we recommend" or "Honest assessment" section — opinion,
not just summary.
6. CTA: link to consultation or relevant service page.
## SEO rules
See `seo-checklist.md` for the full Sandlabs SEO playbook.
## Voice rules
Defer to the `sandlabs-brand-voice` Skill for tone — do not duplicate
those rules here.
## Examples
See `examples/pillar-post.md` and `examples/listicle.md` for shipped
examples to mirror.
Step 3: Test and iterate
Open Claude and ask: "Draft a blog post on 'AI agents for accounting firms'. Target keyword: ai accounting agents. Word count 1800. Link to our /ai-consulting page."
Claude will load the Skill, prompt you for anything missing, and produce a draft that follows your structure and voice. The first few drafts will reveal gaps in your SKILL.md — usually under-specified rules around tone, length, or formatting. Iterate the instructions until the output is consistent.
Time to first useful version: about 30 minutes. Time to production quality: two or three iteration cycles, typically a week of real use.
Six Marketing Use Cases We Have Shipped
These are Skills we have built for clients (or for ourselves) over the last four months. Each one replaces hours of manual work per week.
1. Blog drafter
Described above. Saves four to six hours per long-form post. The biggest win is consistency — every post follows the same structure, voice, and SEO rules without a checklist sitting next to the writer.
2. SEO meta rewriter
A Skill that takes a URL (or page title + first paragraph), pulls in the target keyword, and outputs a new <title> and <meta description> that front-load the keyword and hit the 60/160 character limits. We used this to rewrite metadata on our own Tier-S blog posts after our April SEO audit.
3. LinkedIn post generator
Knows your hook patterns, line-break style, CTA preferences, and topic pillars. Takes a paragraph of raw thought and produces three post variants — one curiosity hook, one contrarian hook, one personal-story hook. Cuts post-drafting time from 30 minutes to 5.
4. Cold outreach personaliser
Pairs with an MCP that reads a prospect's LinkedIn or company page. The Skill encodes your outreach playbook: when to lead with a question, when to lead with a stat, what subject-line patterns work, what value prop maps to what industry. Output is a ready-to-send personalised email. We use this in our cold outreach pipeline — 80 emails per day, all personalised.
5. Client proposal generator
Takes a discovery-call transcript and produces a structured proposal: problem statement, scope, deliverables, pricing tier, timeline. The Skill references your pricing rules, case studies, and standard scope language. Reduces proposal-writing time from two hours to twenty minutes, and proposals come out more consistent across the team.
6. Client reporting Skill
Monthly performance reports for ongoing engagements. The Skill knows what metrics each client cares about, the format they expect (some want a deck, some want a one-pager), and the commentary style. Paired with an analytics MCP, the entire report drafts itself from raw numbers.
The common pattern: any time someone on your team says "I have to do this same kind of writing every week and I keep forgetting the rules" — that is a Skill waiting to be built.
Honest Limitations
Skills do not run code on your behalf. They are markdown instructions Claude reads. If you need Claude to do something (send an email, query a database, post to Slack), you need an MCP server alongside the Skill. The two work together.
The description field is the entire trigger. If it is vague, Claude will not load the Skill when it should. If it is too broad, Claude will load it for unrelated tasks. The single biggest mistake we see is one-line descriptions like "writing assistant" — useless. The description should name the trigger conditions: what user request, what task type, what context.
Skills are not version-controlled by default in Claude.ai. If your team uses Claude Desktop or claude.ai/Cowork, you upload Skills through the UI and there is no native sync. We recommend keeping the canonical Skill files in a git repo and re-uploading on updates. For Claude Code, the .claude/skills/ folder is just git-tracked alongside your project — much simpler.
Skills cannot call other Skills. You can reference one Skill from another's instructions ("follow the sandlabs-brand-voice Skill"), but Claude decides whether to load the second one based on its own description match. Plan your descriptions accordingly.
When to Build It Yourself vs. Hire a Professional
Build it yourself when
- You are encoding expertise that only your team has (your voice, your playbook, your client list).
- The Skill is small (under 500 lines of
SKILL.mdplus a handful of references). - You will iterate on it weekly based on what works.
Bring in a professional when
- You need to build 10+ Skills across departments and want consistency (a "Skills library" for the whole organisation).
- You want Skills wired up to custom MCP servers so they can act, not just instruct.
- You are deploying for a regulated industry and need governance — who can edit which Skills, audit trails, version control.
- You want a Skills + Cowork setup so non-technical staff can trigger complex workflows by describing outcomes.
What we offer
At Sandlabs, our Claude Skills Sprint ($4K-$8K, 1-2 weeks) covers:
- Workflow audit — we map the repetitive content, analysis, and communication tasks your team does weekly.
- Skills library design — 6 to 12 Skills tailored to your business, with consistent naming, descriptions, and cross-references.
- Voice and rules capture — interview-based extraction of your brand voice, formatting standards, and unwritten rules.
- MCP pairing where needed — connecting Skills to your tools (Gmail, HubSpot, Notion, custom APIs).
- Team rollout and training — 2-hour hands-on session and written playbook.
This is how a 5-person marketing team gets the output of a 12-person team without hiring.
Getting Started
If you want to try Skills before committing to a full library:
- Pick one repetitive writing task you or someone on your team does at least weekly. Blog drafting, LinkedIn posts, cold email, client updates — anything.
- Write a one-page
SKILL.mdwith a precisedescriptionand the rules you would tell a new hire on day one. - Upload it to Claude.ai (Settings → Skills) or drop it in
~/.claude/skills/if you are on Claude Code. - Use it for a week. Note every time the output is wrong or you have to correct something — those corrections become new rules.
- Decide if it is worth scaling. If one Skill saves five hours a week, ten Skills built well will reshape how your team operates.
The teams getting the most out of Claude in 2026 are not the ones with the most expensive plan — they are the ones who have spent two weeks encoding their actual expertise into Skills. The investment is small, the leverage is enormous.