Skills
Platforms:
claudeopenai(via Codex CLI) ·gemini(via Gemini CLI) ·m365-copilot(via VS Code Copilot)
What Skills Are
Section titled “What Skills Are”Skills are folders containing instructions, scripts, and resources that the AI discovers and loads dynamically when relevant to a task. They encapsulate a specific capability — instructions, context, and output format bundled together — so you don’t have to re-explain the same task every time.
Skills are now an open standard and being adopted broadly across platforms. Think of them as upgraded prompts: they package a prompt with its context into something reusable, shareable, and automatically invocable.
Key Characteristics
Section titled “Key Characteristics”- Encapsulates a specific capability — instructions, context, and output format bundled together
- Dynamically loaded or directly invoked — the AI discovers and loads skills automatically when relevant, or you invoke them with a slash command (
/plugin-name:command) - Reusable across conversations — write once, use every time the task comes up
- Shareable — skills can be distributed to others through plugins or file sharing
- Becoming an open standard — the skill format is being adopted across compatible platforms
When to Use a Skill
Section titled “When to Use a Skill”Use a skill when:
- You find yourself writing the same prompt repeatedly
- A workflow step is well-defined enough to package as a repeatable routine
- Consistency matters — the output should follow the same structure every time
- You want others to be able to run the same task with the same quality
A good rule of thumb: if you give an AI the same instructions more than three times, it’s time to package those instructions as a skill.
Platform Implementations
Section titled “Platform Implementations”Agent Skills are an open standard — the same SKILL.md format works across platforms. Each platform reads skill files from its own directory, but the file format is identical:
| Platform | Skill Directory | Notes |
|---|---|---|
| Cowork | Managed by plugin system | Install via + > Add plugins — no file placement needed |
| Claude Code | .claude/skills/ | Also installable via plugins (/plugin install) |
| Claude.ai (web) | Uploaded via Settings | ZIP upload under Settings > Capabilities > Upload skill |
| Cursor | .cursor/skills/, .claude/skills/, .codex/skills/, or .agents/skills/ | Reads from Claude and Codex directories too — no need to move files |
| Codex CLI | .agents/skills/ | Same SKILL.md format |
| Gemini CLI | .gemini/skills/ or .agents/skills/ | Same SKILL.md format |
| VS Code Copilot | .github/skills/ or .agents/skills/ | Same SKILL.md format |
Anatomy of a Skill
Section titled “Anatomy of a Skill”A skill is a folder containing:
skill-name/├── SKILL.md # Instructions — what the skill does and how└── references/ # Optional context files the skill needs ├── style-guide.md └── template.mdThe SKILL.md file contains the instructions. The references/ folder holds any context the skill needs — style guides, templates, examples, or data.
On Claude Code, skills with user_invocable: true and a command: field in their frontmatter can be invoked directly as slash commands.
How to Add Skills to Your Platform
Section titled “How to Add Skills to Your Platform”Without a skill, you write a detailed prompt every time you want consistent output. With a skill installed, you just say “edit this article” and the AI applies your editorial standards automatically — same quality, every time, no re-explaining.
Skills are plain-text Markdown — no compiled code, no special format. A plugin is a bundle that may contain multiple skills. On platforms that support plugins (Cowork, Claude Code), you install the whole plugin. On other platforms, you download and place individual skill folders.
Pick your platform below for the complete install steps.
Install steps by platform
Section titled “Install steps by platform”The simplest path — no terminal needed.
- Open Claude Desktop and click Cowork in the sidebar
- Click the + button at the bottom of the screen
- Select Add plugins… and browse or search for a plugin
Skills from the plugin are available immediately in Cowork.
One command installs everything.
/plugin install business-first-ai@handsonaiFirst time? Add the marketplace first (one-time setup):
/plugin marketplace add jamesgray-ai/handsonai-pluginsUpload skills as ZIP files — no terminal required.
- Go to the GitHub plugins page. Click the green Code button > Download ZIP. Extract the ZIP, then navigate to
plugins/<plugin-name>/skills/<skill-name>/to find the skill folder you need. - Compress the skill folder into a
.zipfile (right-click > Compress in Finder) - Go to Settings > Capabilities > Upload skill and select the ZIP
For Cursor, Codex CLI, Gemini CLI, and VS Code Copilot — download skill folders and place them in your project. Your project root is the top-level folder you opened in your editor or terminal.
- Go to the GitHub plugins page. Click the green Code button > Download ZIP. Extract the ZIP, then navigate to
plugins/<plugin-name>/skills/<skill-name>/to find the skill folder you need. - Copy the skill folder into the directory for your platform:
| Platform | Directory |
|---|---|
| Cursor | .cursor/skills/ |
| Codex CLI | .agents/skills/ |
| Gemini CLI | .gemini/skills/ |
| VS Code Copilot | .github/skills/ |
Skills are plain Markdown — platforms without a skill directory can still use them. Paste the SKILL.md contents into your platform’s equivalent feature and the AI will follow the skill’s interview structure and output format.
- Go to the GitHub plugins page. Navigate to
plugins/<plugin-name>/skills/<skill-name>/and open theSKILL.mdfile. Copy its full contents. - Create a persistent instruction container on your platform:
Google Gemini (Gems)
- Open Gemini and click New Gem
- Name the Gem to match the skill (e.g., “Analyze Workflows”)
- Paste the
SKILL.mdcontents into the Gem’s instructions field - Save — select the Gem from the sidebar to use it in any conversation
M365 Copilot (Notebooks)
- Open Microsoft Copilot and create a new Notebook
- Click the expand button next to your notebook name and paste the
SKILL.mdcontents as custom instructions - The instructions apply to all prompts within that Notebook
Perplexity (Spaces)
- Open Perplexity and click Create a Space
- Name the Space to match the skill
- Tap Add Instructions and paste the
SKILL.mdcontents - Instructions apply to all threads within that Space (requires Perplexity Pro)
Verify
Section titled “Verify”Test that your platform picks up the skill by asking it to perform a task the skill handles:
- Cowork or Claude.ai: Start a new conversation and say “Edit this paragraph for HBR quality” — Claude should apply editorial criteria from the skill
- Claude Code: Type
/business-first-ai:analyzeto invoke the skill directly - Cursor, Codex CLI, Gemini CLI, VS Code Copilot: Ask “Use the editing-hbr-articles skill to review this paragraph” — the AI should reference the skill’s instructions in its response
- Gemini, M365 Copilot, Perplexity: Open your Gem, Notebook, or Space and ask it to start the workflow — it should follow the skill’s structured interview process
Skill, Project, or Prompt?
Section titled “Skill, Project, or Prompt?”| Approach | Best For | Example |
|---|---|---|
| Prompt | One-off or infrequent tasks | ”Summarize this PDF” |
| Project | Recurring context without rigid steps | Client research workspace |
| Skill | Repeatable process with consistent format and standards | Weekly status report generation |
Guides
Section titled “Guides”| Guide | Description |
|---|---|
| Discover Your Best Claude Skills | Guided process to identify your highest-value skill candidates |
| The Complete Guide to Building Skills for Claude | Anthropic’s official guide covering skill structure, best practices, and advanced patterns |
| Improving skill-creator: Test, measure, and refine Agent Skills | How to test, measure, and iteratively refine skills using the skill-creator workflow |
Related
Section titled “Related”- Agentic Building Blocks — Skills in the context of all building blocks
- AI Use Cases — what teams build with skills, organized by six primitives
- Prompts — the foundation that skills build on
- Agents — autonomous systems that invoke skills as part of multi-step workflows
- Agents & Skills — pre-built skills you can download or install