From example-design
Design effective code examples, tutorials, and runnable samples with progressive complexity. Use when creating code examples, tutorials, quickstart guides, sample code, runnable examples, or progressive disclosure content. NOT for generating full documentation (use documentation-generator).
How this skill is triggered — by the user, by Claude, or both
Slash command
/example-design:example-designThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create code examples that teach effectively through progressive complexity.
Create code examples that teach effectively through progressive complexity.
| Type | Purpose | Length |
|---|---|---|
| Snippet | Single concept | 5-15 lines |
| Complete example | Working code | 20-50 lines |
| Tutorial | Step-by-step | Multi-file |
| Reference app | Production patterns | Full project |
Level 1: Minimal (happy path)
↓
Level 2: Add configuration
↓
Level 3: Add error handling
↓
Level 4: Add edge cases
↓
Level 5: Production-ready
# 1. Context: What this does
"""Fetch user data from API"""
# 2. Setup: Prerequisites
import requests
# 3. Core: Main concept (highlight this)
response = requests.get("/users/123") # <-- Key line
user = response.json()
# 4. Result: Expected output
print(user["name"]) # Output: "Alice"
## Tutorial: [Goal]
**Time**: 10 min | **Level**: Beginner
### What you'll build
[Screenshot/description]
### Prerequisites
- [requirement 1]
- [requirement 2]
### Step 1: [Action]
[Explanation]
[Code]
[Expected result]
### Step 2: [Action]
...
### Next steps
- [Related tutorial]
- [Advanced topic]
npx claudepluginhub viktorbezdek/skillstack --plugin example-designTransforms code, features, or libraries into step-by-step tutorials and educational content. Creates progressive learning experiences with hands-on examples and pedagogical best practices.
Creates step-by-step technical tutorials with progressive disclosure: shows the end state first, builds through working checkpoints, and explains what just happened after each one.