$npx -y skills add etrebels/claude-code-growth-os --skill example-skillA template skill. Replace it with a task you repeat. Trigger only when the user explicitly asks to run the example skill.
| 1 | # Example Skill (template) |
| 2 | |
| 3 | A skill is a reusable unit of work Claude runs when your request matches its `description`. The description *is* the trigger — keep it specific, or it fires at the wrong time (or never). |
| 4 | |
| 5 | This one does nothing on purpose. Swap it for your own. A good skill: |
| 6 | |
| 7 | - does one job well, |
| 8 | - reads from `ops/` (or `demo/`) instead of asking for context it could find, |
| 9 | - ends by writing its result somewhere durable — a file, a log. |
| 10 | |
| 11 | See `.claude/skills/status-update/` and `.claude/skills/triage/` for two worked examples. |