Claude on WholeTech network
home/products/skills
Reusable workflows

Skills shipping

Reusable, slash-callable workflows — the prompt, the tools, and the steps that run when you invoke them.

01 — What a Skill is

A slash command with a brain.

A Skill is a folder with a SKILL.md file. The frontmatter declares its name and when it should trigger. The body is the prompt Claude follows when invoked. Optional helper scripts live alongside. You call it with /<name>.

02 — Where Skills come from

Three sources.

Built-in

/init, /review, /security-review, /help. Ship with Claude Code.

Plugins

frontend-design, claude-api, fewer-permission-prompts, others. Install via the plugin marketplace.

Yours

Drop a SKILL.md into ~/.claude/skills/<name>/ and it's available everywhere on your machine.

03 — Write your first Skill

Five minutes.

  1. Create the folder: ~/.claude/skills/my-skill/
  2. Write SKILL.md with frontmatter. Name, description, when to trigger.
  3. Reference any helper scripts in the same folder.
  4. Type /my-skill in any Claude Code session — Claude loads and runs it.
---
name: my-skill
description: One sentence describing what this skill does.
trigger: When the user mentions X or asks for Y.
---

You are doing X.

Steps:
1. Read the file …
2. Run …
3. Report back with …
04 — Useful skill shapes

Patterns that pay back.

Tip: if you find yourself typing the same five-step prompt twice, it's a Skill.
05 — Plugins bundle Skills

Distribute, don't copy.

A plugin is a packaged bundle of Skills, MCP servers, and configuration. Install once; share across your team. Anthropic publishes a marketplace; you can publish to it (or to a private registry) when a Skill set is worth sharing.