← ClaudeAtlas

fullstack-featurelisted

Load PROACTIVELY when task involves building a complete feature across multiple layers. Use when user says "build a feature", "add user profiles", "create a dashboard", or any request spanning database, API, UI, and tests. Orchestrates multi-agent work sequentially: schema and migrations, API endpoints, UI components, tests, and review. The runtime engine handles WRFC chains automatically via <gv> directives. Handles dependency ordering and cross-layer type sharing.
diegosouzapw/awesome-omni-skill · ★ 43 · API & Backend · score 61
Install: claude install-skill diegosouzapw/awesome-omni-skill
## Resources ``` scripts/ validate-feature-workflow.sh references/ phase-templates.md ``` # Fullstack Feature Orchestration This skill defines the end-to-end workflow for implementing complete features that span multiple layers of the stack. It orchestrates specialized agents through 7 distinct phases, from requirements clarification through delivery. ## When to Use This Skill Use fullstack-feature when the user requests: - A complete feature that requires database, API, and UI changes - End-to-end implementation with testing and review - A new user-facing capability that touches multiple components - Anything described as: "build X", "add X feature", "implement X capability" **Do NOT use this skill for:** - Single-layer changes (just API, just UI) - Bug fixes (use bugfix or hotfix skills) - Code review only (use review-scoring skill) - Refactoring without new functionality ## Overview The fullstack feature workflow consists of 7 phases: 1. **Understand** - Clarify requirements, load skills, identify affected layers 2. **Foundation** (sequential) - Database schema/migrations, type generation 3. **Core Implementation** (parallel) - API endpoints, UI components, state management 4. **Integration** (sequential) - Wire UI to API, state to UI, verify data flow 5. **Quality** (parallel) - Tests, security check, accessibility check 6. **Review** (runtime-driven) - WRFC chains from prior phases complete via runtime `<gv>` directives 7. **Commit + Log** - Triggered when r