Skip to main content

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:

  1. requirement
  2. architectural analysis
  3. structure generation
  4. implementation

Example

  1. requirement: Create booking management for support appointments.
  2. architectural analysis: Identify Booking as the domain and Appointment Scheduling as the subdomain.
  3. structure generation: Create BookingModel, BookingState, BookingService, BookingApi, BookingList, BookingForm, BookingPage.
  4. implementation: Fill the generated files with React, state, API, and tests.