example-plugin/example-command

An example user-invoked skill that demonstrates frontmatter options and the skills/<name>/SKILL.md layout

Content Preview
---
name: example-command
description: An example user-invoked skill that demonstrates frontmatter options and the skills/<name>/SKILL.md layout
argument-hint: <required-arg> [optional-arg]
allowed-tools: [Read, Glob, Grep, Bash]
---

# Example Command (Skill Format)

This demonstrates the `skills/<name>/SKILL.md` layout for user-invoked slash commands. It is functionally identical to the legacy `commands/example-command.md` format — both are loaded the same way; only the file layout differs.

#
How to Use

Recommended: Install to project (local)

mkdir -p .claude/skills
curl -o .claude/skills/example-plugin/example-command.md \
  https://raw.githubusercontent.com/anthropics/claude-plugins-official/main/plugins/example-plugin/skills/example-command/SKILL.md

Skill is scoped to this project only. Add .claude/skills/ to your .gitignoreif you don't want to commit it.

Alternative: Clone full repo

git clone https://github.com/anthropics/claude-plugins-official

Then reference at plugins/example-plugin/skills/example-command/SKILL.md

Related Skills