Example skill demonstrating the standard SKILL.md format for the fullstack-skills plugin. Use this as a reference when creating new skills. Trigger when the user asks "show me an example skill", "how to write a skill", or "skill template".
This is a reference skill showing the correct structure. Use it as a starting point for new skills.
Demonstrates the standard pattern for fullstack-skills plugin skills:
name and description fieldsscripts/, references/, assets/skills/ with a kebab-case nameSKILL.md file with YAML frontmatterevals/evals.jsonskills/my-skill/
├── SKILL.md # Required: skill definition
├── scripts/ # Optional: executable scripts for deterministic tasks
├── references/ # Optional: docs loaded into context as needed
└── assets/ # Optional: templates, icons, fonts
| Field | Required | Description |
|---|---|---|
name | Yes | Skill identifier (kebab-case) |
description | Yes | When/why to use this skill. Primary trigger mechanism. |
version | No | Semantic version |
disable-model-invocation | No | Prevent auto-triggering (user-only invocation) |
references/ files.scripts/ handle deterministic/repetitive tasks without loading into context.