Build features as vertical slices through all layers, verifying each slice before starting the next. From The Pragmatic Programmer: get feedback as quickly as possible. Don't build horizontal layers in isolation (all endpoints, then all UI, then all tests). Build one thin vertical path, verify it works, then expand.
Skip for single-layer changes, one-file bug fixes, or work already decomposed into ordered vertical slices by a task tracker.
| Vertical over horizontal | Build one slice through all layers, not one layer across all features | | Verify before advancing | Tests pass, page renders, round-trip works before next slice | | One slice per session | Each slice should be completable in a single agent session |
Crea funzionalità multilivello come sezioni verticali end-to-end invece che come livelli orizzontali. Ogni fetta viene verificata prima che inizi quella successiva. Da utilizzare quando: avviare qualsiasi attività che si estende su più di 2 livelli (DB, API, interfaccia utente, test), creare funzionalità CRUD, implementare flussi in più fasi, scomporre le funzionalità in attività secondarie o pianificare l'ordine di implementazione. Fonte: oakoss/agent-skills.