--- name: atlas-iterative description: Iterative 3-phase workflow with peer review cycle for changes needing validation (15-30 min) --- # Atlas Iterative Workflow ## When to Use This Skill **Perfect for:** - Styling improvements that need validation - Simple UI tweaks requiring quality checks - Straightforward refactors - Changes where you know what to do but want peer eyes - Modifications that don't need research/planning **Time estimate**: 15-30 minutes (including review cycles) **Success criteria**: - Change validated in < 30 minutes - Peer review approved - Tests pass - No major refactoring needed ## The 3 Phases ``` Phase 1: Make Change → Implement change Phase 2: Peer Review (Cycle) → Review → Fix → Repeat until pass Phase 3: Deploy → Test + deploy ``` --- ## Phase 1: Make Change **Goal**: Implement the change you know needs to happen. ### Steps: 1. **Understand what needs changing** - The requirement is clear (no research needed) - You know which file(s) to change - Approach is straightforward 2. **Make the change** - Implement the modification - Follow project conventions - Add comments if needed 3. **Self-verify** - Visual check (if UI) - Logic check (if code) - Convention check (StackMap-specific rules) ### Implementation Checklist: - [ ] Change implemented in 1-2 files - [ ] StackMap conventions followed: - [ ] Field naming (text/icon, not name/emoji) - [ ] Store methods (not direct setState) - [ ] Typography component (not direct fontWeight) - [ ] No gray text (#000 only) - [ ] Change verified locally - [ ] No console.logs left behind ### Examples: **Example 1: Button spacing** ```javascript // Before