schema
Installation
SKILL.md
Related Skills
- Designing the domain objects that the schema persists? → Use domain-modeling
- Schema change requires code restructuring? → Use refactoring
- Unsure which architectural layer the DTO belongs in? → Use clean-architecture
Applicability Rubric
| Condition | Pass | Fail |
|---|---|---|
| Database structure change | Adding/modifying tables, columns, or indexes | No persistence changes |
| API contract work | Designing or changing request/response shapes | No API boundary changes |
| Data boundary crossing | Serialization/deserialization between layers | Data stays within single layer |
| Schema restructuring | Normalizing, denormalizing, or optimizing existing schemas | No structural changes needed |
Apply when: Any condition passes