Layered Abstractions
Skills can call other skills — just like functions calling functions.
/generate-deck
├── Creates draft slides
├── /verify ← fact-checks all claims
├── /generate-image ← creates visuals
└── /publish ← exports, commits, pushes
- Each skill is self-contained but composable
- Higher-level skills orchestrate lower-level ones
- You build complex workflows from simple primitives