The scaffolded plugin includes a generic skill that demonstrates how skills bridge MCP tools with Claude's natural abilities.
---
name: speak-animal
description: Speak as any animal. Use when asked to talk like, speak as,
say something as, or imitate any animal.
user-invocable: true
argument-hint: "[animal]"
---The skill instructs Claude to:
- Check if a
speak_<animal>tool exists for the requested species - If yes — call the tool and present the result
- If no — admit it's not an expert, then improvise
This demonstrates a key skill pattern: graceful degradation. The skill doesn't fail when a tool is missing — it falls back to Claude's own capabilities while being transparent about it.
> speak alligator
🐊 "After while, crocodile!"
> speak penguin
I'm not an expert on that one, but I'll give it my best shot.
*waddles forward, flippers outstretched*
NOOT NOOT! 🐧
...
Replace speak-animal with a skill that orchestrates your real
tools. Keep the pattern: check what's available, use it when you
can, degrade gracefully when you can't.