The Architecture-First Workflow
When using Atomic Bomb, implementation becomes a secondary activity.
The workflow changes from:
to:
The AI is no longer responsible for inventing structure. It is responsible for implementing structure.
Mini Exercise
Write a four-step workflow for a feature in your domain using:
- requirement
- architectural analysis
- structure generation
- implementation
Example
- requirement: Create booking management for support appointments.
- architectural analysis: Identify Booking as the domain and Appointment Scheduling as the subdomain.
- structure generation: Create BookingModel, BookingState, BookingService, BookingApi, BookingList, BookingForm, BookingPage.
- implementation: Fill the generated files with React, state, API, and tests.