Skip to content

Skills

Platforms: claude openai (via Codex CLI) · gemini (via Gemini CLI) · m365-copilot (via VS Code Copilot)

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.

  • 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

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.

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:

PlatformSkill DirectoryNotes
CoworkManaged by plugin systemInstall via + > Add plugins — no file placement needed
Claude Code.claude/skills/Also installable via plugins (/plugin install)
Claude.ai (web)Uploaded via SettingsZIP 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

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.md

The 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.

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.

MethodPlatformsTerminal required?
Claude Cowork UI (+ button)Claude DesktopNo
/plugin installClaude CodeYes
Upload a compressed skill folder (ZIP)Claude.ai (web)No (Finder method available)
Download + copyCursor, Codex CLI, Gemini CLI, VS Code CopilotRecommended but not required

The simplest path — no terminal needed.

  1. Open Claude Desktop and click Cowork in the sidebar
  2. Click the + button at the bottom of the screen
  3. Select Add plugins… and browse or search for a plugin

Skills from the plugin are available immediately in Cowork.

→ Full Cowork plugin guide

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:analyze to 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
ApproachBest ForExample
PromptOne-off or infrequent tasks”Summarize this PDF”
ProjectRecurring context without rigid stepsClient research workspace
SkillRepeatable process with consistent format and standardsWeekly status report generation
GuideDescription
Discover Your Best Claude SkillsGuided process to identify your highest-value skill candidates
The Complete Guide to Building Skills for ClaudeAnthropic’s official guide covering skill structure, best practices, and advanced patterns
Improving skill-creator: Test, measure, and refine Agent SkillsHow to test, measure, and iteratively refine skills using the skill-creator workflow
  • 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