ai-flow-dev 1.4.0 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/README.md +98 -30
  2. package/dist/cli.js +83 -108
  3. package/dist/cli.js.map +1 -1
  4. package/package.json +6 -2
  5. package/prompts/backend/{flow-bootstrap-phase-0.md → flow-build-phase-0.md} +5 -3
  6. package/prompts/backend/{flow-bootstrap-phase-1.md → flow-build-phase-1.md} +36 -41
  7. package/prompts/backend/{flow-bootstrap-phase-2.md → flow-build-phase-2.md} +80 -68
  8. package/prompts/backend/{flow-bootstrap-phase-3.md → flow-build-phase-3.md} +82 -61
  9. package/prompts/backend/{flow-bootstrap-phase-5.md → flow-build-phase-5.md} +10 -9
  10. package/prompts/backend/{flow-bootstrap-phase-6.md → flow-build-phase-6.md} +8 -7
  11. package/prompts/backend/{flow-bootstrap-phase-7.md → flow-build-phase-7.md} +5 -3
  12. package/prompts/backend/{flow-bootstrap-phase-8.md → flow-build-phase-8.md} +248 -30
  13. package/prompts/backend/{flow-bootstrap-phase-9.md → flow-build-phase-9.md} +97 -99
  14. package/prompts/backend/{flow-bootstrap.md → flow-build.md} +105 -34
  15. package/prompts/backend/flow-dev-commit.md +786 -0
  16. package/prompts/backend/flow-docs-sync.md +2 -1
  17. package/prompts/frontend/{flow-bootstrap-phase-0.md → flow-build-phase-0.md} +3 -2
  18. package/prompts/frontend/{flow-bootstrap-phase-1.md → flow-build-phase-1.md} +2 -1
  19. package/prompts/frontend/{flow-bootstrap-phase-2.md → flow-build-phase-2.md} +2 -1
  20. package/prompts/frontend/{flow-bootstrap-phase-3.md → flow-build-phase-3.md} +2 -1
  21. package/prompts/frontend/{flow-bootstrap-phase-4.md → flow-build-phase-4.md} +4 -2
  22. package/prompts/frontend/{flow-bootstrap-phase-5.md → flow-build-phase-5.md} +2 -1
  23. package/prompts/frontend/{flow-bootstrap-phase-6.md → flow-build-phase-6.md} +2 -1
  24. package/prompts/frontend/{flow-bootstrap-phase-8.md → flow-build-phase-8.md} +238 -22
  25. package/prompts/frontend/{flow-bootstrap.md → flow-build.md} +108 -25
  26. package/prompts/frontend/flow-docs-sync.md +3 -2
  27. package/prompts/mobile/{flow-bootstrap-phase-0.md → flow-build-phase-0.md} +3 -2
  28. package/prompts/mobile/{flow-bootstrap-phase-1.md → flow-build-phase-1.md} +2 -1
  29. package/prompts/mobile/{flow-bootstrap-phase-2.md → flow-build-phase-2.md} +2 -1
  30. package/prompts/mobile/{flow-bootstrap-phase-3.md → flow-build-phase-3.md} +2 -1
  31. package/prompts/mobile/{flow-bootstrap-phase-4.md → flow-build-phase-4.md} +2 -1
  32. package/prompts/mobile/{flow-bootstrap-phase-5.md → flow-build-phase-5.md} +2 -1
  33. package/prompts/mobile/{flow-bootstrap-phase-6.md → flow-build-phase-6.md} +2 -1
  34. package/prompts/mobile/{flow-bootstrap-phase-8.md → flow-build-phase-8.md} +249 -23
  35. package/prompts/mobile/{flow-bootstrap.md → flow-build.md} +107 -26
  36. package/prompts/mobile/flow-docs-sync.md +3 -2
  37. package/templates/AGENT.template.md +1 -17
  38. package/templates/backend/.clauderules.template +1 -1
  39. package/templates/backend/.cursorrules.template +1 -1
  40. /package/prompts/backend/{flow-bootstrap-phase-4.md → flow-build-phase-4.md} +0 -0
  41. /package/prompts/frontend/{flow-bootstrap-phase-7.md → flow-build-phase-7.md} +0 -0
  42. /package/prompts/mobile/{flow-bootstrap-phase-7.md → flow-build-phase-7.md} +0 -0
@@ -4,6 +4,80 @@
4
4
 
5
5
  Your mission is to guide the user through creating **comprehensive, production-ready documentation** for their frontend project through an interactive questionnaire that follows the dependency-aware order specified below.
6
6
 
7
+ ---
8
+
9
+ ## 🎯 Ejecución de Fase Específica
10
+
11
+ **IMPORTANTE:** Detectar si el usuario especificó una fase para ejecutar.
12
+
13
+ ### Detectar Argumento de Fase
14
+
15
+ Buscar en el mensaje del usuario patrones como:
16
+
17
+ - "fase 0", "fase 1", "fase 2", ..., "fase 8"
18
+ - "phase 0", "phase 1", etc.
19
+ - "ejecutar fase N"
20
+ - "run phase N"
21
+
22
+ ### Comportamiento
23
+
24
+ **Si se detecta "fase N" (donde N = 0-8):**
25
+
26
+ 1. **Validar que la fase existe para frontend:**
27
+ - Fase 0: Context Discovery (opcional, solo proyectos existentes)
28
+ - Fase 1: Discovery & UX Requirements
29
+ - Fase 2: Components & Framework
30
+ - Fase 3: State Management
31
+ - Fase 4: Styling & Design
32
+ - Fase 5: Code Standards
33
+ - Fase 6: Testing Strategy
34
+ - Fase 7: Performance & Deployment
35
+ - Fase 8: Project Setup & Final Documentation
36
+
37
+ 2. **Si la fase es válida:**
38
+ - Leer el archivo: `.ai-flow/prompts/frontend/flow-build-phase-N.md`
39
+ - Ejecutar SOLO esa fase
40
+ - NO continuar con otras fases
41
+ - Al finalizar, informar al usuario que puede continuar con la siguiente fase usando `/flow-build fase N+1`
42
+
43
+ 3. **Si la fase es inválida:**
44
+ - Mostrar mensaje de error amigable
45
+ - Listar las fases válidas (0-8) con descripción de una línea
46
+
47
+ **Si NO se detecta "fase N":**
48
+
49
+ - Ejecutar el flujo completo normal (todas las fases en orden)
50
+ - Comenzar con Scope Selection (MVP/Production-Ready/Enterprise)
51
+ - Ejecutar Phases 0-8 según corresponda
52
+
53
+ ### Ejemplo de Lista de Fases Válidas
54
+
55
+ Si el usuario especifica una fase inválida, mostrar:
56
+
57
+ ```
58
+ ❌ Fase inválida. Las fases válidas para frontend son:
59
+
60
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
61
+ 📋 Fases Disponibles - Frontend
62
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
63
+
64
+ /flow-build fase 0 - Context Discovery (solo proyectos existentes)
65
+ /flow-build fase 1 - Discovery & UX (tipo de app, usuarios, journeys)
66
+ /flow-build fase 2 - Components & Framework (React/Vue/Angular, estructura)
67
+ /flow-build fase 3 - State Management (Redux/MobX/Context, patrones)
68
+ /flow-build fase 4 - Styling & Design (CSS/Tailwind/Styled, theming)
69
+ /flow-build fase 5 - Code Standards (convenciones, formato, git workflow)
70
+ /flow-build fase 6 - Testing Strategy (tipos de tests, coverage, CI)
71
+ /flow-build fase 7 - Performance & Deployment (optimización, deployment)
72
+ /flow-build fase 8 - Project Setup & Final Documentation (inicializar proyecto)
73
+
74
+ ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
75
+
76
+ 💡 Tip: Usa /flow-build sin argumentos para ejecutar todas las fases en orden.
77
+ ```
78
+
79
+ ---
80
+
7
81
  ## Important Instructions
8
82
 
9
83
  1. **Ask for Project Scope FIRST** - Before Phase 1, ask the user to select: MVP, Production-Ready, or Enterprise
@@ -37,26 +111,26 @@ Your mission is to guide the user through creating **comprehensive, production-r
37
111
 
38
112
  This documentation is **modularized** for better maintainability and performance. Each phase is in a separate file.
39
113
 
40
- ### For Complete Bootstrap (All Phases)
114
+ ### For Complete Build (All Phases)
41
115
 
42
116
  Execute phases sequentially by reading each file in order:
43
117
 
44
- 1. **Phase 0 (Optional - Existing Projects Only):** Read `.ai-flow/prompts/frontend/flow-bootstrap-phase-0-context.md`
45
- 2. **Phase 1 (Discovery & UX):** Read `.ai-flow/prompts/frontend/flow-bootstrap-phase-1-discovery.md`
46
- 3. **Phase 2 (Components & Framework):** Read `.ai-flow/prompts/frontend/flow-bootstrap-phase-2-components.md`
47
- 4. **Phase 3 (State Management):** Read `.ai-flow/prompts/frontend/flow-bootstrap-phase-3-state.md`
48
- 5. **Phase 4 (Styling & Design):** Read `.ai-flow/prompts/frontend/flow-bootstrap-phase-4-styling.md`
49
- 6. **Phase 5 (Code Standards):** Read `.ai-flow/prompts/frontend/flow-bootstrap-phase-5-standards.md`
50
- 7. **Phase 6 (Testing Strategy):** Read `.ai-flow/prompts/frontend/flow-bootstrap-phase-6-testing.md`
51
- 8. **Phase 7 (Performance & Deployment):** Read `.ai-flow/prompts/frontend/flow-bootstrap-phase-7-deployment.md`
52
- 9. **Phase 8 (Project Setup & Final Documentation):** Read `.ai-flow/prompts/frontend/flow-bootstrap-phase-8.md`
118
+ 1. **Phase 0 (Optional - Existing Projects Only):** Read `.ai-flow/prompts/frontend/flow-build-phase-0-context.md`
119
+ 2. **Phase 1 (Discovery & UX):** Read `.ai-flow/prompts/frontend/flow-build-phase-1-discovery.md`
120
+ 3. **Phase 2 (Components & Framework):** Read `.ai-flow/prompts/frontend/flow-build-phase-2-components.md`
121
+ 4. **Phase 3 (State Management):** Read `.ai-flow/prompts/frontend/flow-build-phase-3-state.md`
122
+ 5. **Phase 4 (Styling & Design):** Read `.ai-flow/prompts/frontend/flow-build-phase-4-styling.md`
123
+ 6. **Phase 5 (Code Standards):** Read `.ai-flow/prompts/frontend/flow-build-phase-5-standards.md`
124
+ 7. **Phase 6 (Testing Strategy):** Read `.ai-flow/prompts/frontend/flow-build-phase-6-testing.md`
125
+ 8. **Phase 7 (Performance & Deployment):** Read `.ai-flow/prompts/frontend/flow-build-phase-7-deployment.md`
126
+ 9. **Phase 8 (Project Setup & Final Documentation):** Read `.ai-flow/prompts/frontend/flow-build-phase-8.md`
53
127
 
54
128
  ### For Individual Phases
55
129
 
56
130
  You can execute any phase independently by reading its file. For example:
57
131
 
58
132
  ```
59
- Read .ai-flow/prompts/frontend/flow-bootstrap-phase-3-state.md and execute only Phase 3
133
+ Read .ai-flow/prompts/frontend/flow-build-phase-3-state.md and execute only Phase 3
60
134
  ```
61
135
 
62
136
  ---
@@ -65,7 +139,7 @@ Read .ai-flow/prompts/frontend/flow-bootstrap-phase-3-state.md and execute only
65
139
 
66
140
  ### Phase 0: Context Discovery (Optional)
67
141
 
68
- **File:** `frontend/flow-bootstrap-phase-0-context.md`
142
+ **File:** `frontend/flow-build-phase-0-context.md`
69
143
  **For:** Existing projects with code/documentation
70
144
  **Duration:** 1-5 minutes (automated analysis)
71
145
  **Output:** Pre-populated answers, project analysis
@@ -85,7 +159,7 @@ Read .ai-flow/prompts/frontend/flow-bootstrap-phase-3-state.md and execute only
85
159
 
86
160
  ### Phase 1: Discovery & UX Requirements
87
161
 
88
- **File:** `frontend/flow-bootstrap-phase-1-discovery.md`
162
+ **File:** `frontend/flow-build-phase-1-discovery.md`
89
163
  **Duration:** 15-20 minutes
90
164
  **Key Questions:**
91
165
 
@@ -103,7 +177,7 @@ Read .ai-flow/prompts/frontend/flow-bootstrap-phase-3-state.md and execute only
103
177
 
104
178
  ### Phase 2: Components & Framework
105
179
 
106
- **File:** `frontend/flow-bootstrap-phase-2-components.md`
180
+ **File:** `frontend/flow-build-phase-2-components.md`
107
181
  **Duration:** 15-20 minutes
108
182
  **Key Questions:**
109
183
 
@@ -122,7 +196,7 @@ Read .ai-flow/prompts/frontend/flow-bootstrap-phase-3-state.md and execute only
122
196
 
123
197
  ### Phase 3: State Management
124
198
 
125
- **File:** `frontend/flow-bootstrap-phase-3-state.md`
199
+ **File:** `frontend/flow-build-phase-3-state.md`
126
200
  **Duration:** 15-20 minutes
127
201
  **Key Questions:**
128
202
 
@@ -140,7 +214,7 @@ Read .ai-flow/prompts/frontend/flow-bootstrap-phase-3-state.md and execute only
140
214
 
141
215
  ### Phase 4: Styling & Design System
142
216
 
143
- **File:** `frontend/flow-bootstrap-phase-4-styling.md`
217
+ **File:** `frontend/flow-build-phase-4-styling.md`
144
218
  **Duration:** 15-20 minutes
145
219
  **Key Questions:**
146
220
 
@@ -158,7 +232,7 @@ Read .ai-flow/prompts/frontend/flow-bootstrap-phase-3-state.md and execute only
158
232
 
159
233
  ### Phase 5: Code Standards & Best Practices
160
234
 
161
- **File:** `frontend/flow-bootstrap-phase-5-standards.md`
235
+ **File:** `frontend/flow-build-phase-5-standards.md`
162
236
  **Duration:** 15-20 minutes
163
237
  **Key Questions:**
164
238
 
@@ -176,7 +250,7 @@ Read .ai-flow/prompts/frontend/flow-bootstrap-phase-3-state.md and execute only
176
250
 
177
251
  ### Phase 6: Testing Strategy
178
252
 
179
- **File:** `frontend/flow-bootstrap-phase-6-testing.md`
253
+ **File:** `frontend/flow-build-phase-6-testing.md`
180
254
  **Duration:** 15-25 minutes
181
255
  **Key Questions:**
182
256
 
@@ -194,7 +268,7 @@ Read .ai-flow/prompts/frontend/flow-bootstrap-phase-3-state.md and execute only
194
268
 
195
269
  ### Phase 7: Performance & Deployment
196
270
 
197
- **File:** `frontend/flow-bootstrap-phase-7-deployment.md`
271
+ **File:** `frontend/flow-build-phase-7-deployment.md`
198
272
  **Duration:** 10-15 minutes
199
273
  **Key Questions:**
200
274
 
@@ -216,7 +290,7 @@ Read .ai-flow/prompts/frontend/flow-bootstrap-phase-3-state.md and execute only
216
290
 
217
291
  ### Phase 8: Project Setup & Final Documentation
218
292
 
219
- **File:** `frontend/flow-bootstrap-phase-8.md`
293
+ **File:** `frontend/flow-build-phase-8.md`
220
294
  **Duration:** 10-15 minutes
221
295
  **Key Steps:**
222
296
 
@@ -244,6 +318,7 @@ Read .ai-flow/prompts/frontend/flow-bootstrap-phase-3-state.md and execute only
244
318
  **Phases included:** 1, 2, 3, 4 (core only)
245
319
 
246
320
  **What's simplified:**
321
+
247
322
  - Minimal styling (just basic Tailwind or CSS Modules)
248
323
  - Simple state management (Context API or component state)
249
324
  - Basic component structure (flat or simple feature-based)
@@ -259,6 +334,7 @@ Read .ai-flow/prompts/frontend/flow-bootstrap-phase-3-state.md and execute only
259
334
  **Phases included:** All (1-7)
260
335
 
261
336
  **What's included:**
337
+
262
338
  - Full tech stack selection
263
339
  - Comprehensive state management
264
340
  - Professional styling with design tokens
@@ -275,6 +351,7 @@ Read .ai-flow/prompts/frontend/flow-bootstrap-phase-3-state.md and execute only
275
351
  **Phases included:** All (1-7) with extended questions
276
352
 
277
353
  **Additional coverage:**
354
+
278
355
  - Monorepo considerations
279
356
  - Micro-frontend architecture
280
357
  - Advanced caching strategies
@@ -330,12 +407,14 @@ Based on scope selection, execute applicable phase files in order.
330
407
  After completing all phases, generate the complete documentation set:
331
408
 
332
409
  **Core Documents (All Scopes):**
410
+
333
411
  - `AGENT.md` - Universal AI assistant configuration
334
412
  - `ai-instructions.md` - Tech stack and development rules
335
413
  - `project-brief.md` - Project overview and objectives
336
414
  - `README.md` - Quick start guide
337
415
 
338
416
  **Documentation (Production/Enterprise):**
417
+
339
418
  - `docs/architecture.md` - System architecture
340
419
  - `docs/components.md` - Component patterns
341
420
  - `docs/state-management.md` - State management guide
@@ -346,6 +425,7 @@ After completing all phases, generate the complete documentation set:
346
425
  - `docs/contributing.md` - Contribution guidelines
347
426
 
348
427
  **Specifications (Enterprise):**
428
+
349
429
  - `specs/accessibility.md` - Accessibility requirements
350
430
  - `specs/configuration.md` - Environment and configuration
351
431
 
@@ -378,30 +458,35 @@ Users can re-run individual phases to update documentation:
378
458
  The questionnaire adapts based on the UI framework selected in Phase 2:
379
459
 
380
460
  **React:**
461
+
381
462
  - State: Zustand, Redux Toolkit, Jotai
382
463
  - Forms: React Hook Form, Formik
383
464
  - Styling: Tailwind, Styled Components, Emotion
384
465
  - Testing: React Testing Library
385
466
 
386
467
  **Vue:**
468
+
387
469
  - State: Pinia, Vuex
388
470
  - Forms: VeeValidate, FormKit
389
471
  - Styling: Tailwind, Scoped CSS
390
472
  - Testing: Vue Test Utils
391
473
 
392
474
  **Angular:**
475
+
393
476
  - State: NgRx, Akita, Elf
394
477
  - Forms: Reactive Forms, Template-driven Forms
395
478
  - Styling: Angular Material, Tailwind
396
479
  - Testing: Jasmine/Karma, Jest
397
480
 
398
481
  **Svelte:**
482
+
399
483
  - State: Svelte Stores, XState
400
484
  - Forms: Svelte Forms Lib
401
485
  - Styling: Tailwind, Scoped CSS
402
486
  - Testing: Svelte Testing Library
403
487
 
404
488
  **Solid:**
489
+
405
490
  - State: Solid Store, Solid Signal
406
491
  - Forms: Modular Forms
407
492
  - Styling: Tailwind, Solid Styled
@@ -411,7 +496,7 @@ The questionnaire adapts based on the UI framework selected in Phase 2:
411
496
 
412
497
  ## 🚀 Getting Started
413
498
 
414
- To begin the complete frontend bootstrap process:
499
+ To begin the complete frontend build process:
415
500
 
416
501
  1. Ensure you're in your project directory
417
502
  2. Run this prompt (or individual phase files)
@@ -422,13 +507,13 @@ To begin the complete frontend bootstrap process:
422
507
  **Ready to start?** Proceed to Phase 1 by reading:
423
508
 
424
509
  ```
425
- .ai-flow/prompts/frontend/flow-bootstrap-phase-1-discovery.md
510
+ .ai-flow/prompts/frontend/flow-build-phase-1-discovery.md
426
511
  ```
427
512
 
428
513
  Or if you have existing code, start with Phase 0 for automatic detection:
429
514
 
430
515
  ```
431
- .ai-flow/prompts/frontend/flow-bootstrap-phase-0-context.md
516
+ .ai-flow/prompts/frontend/flow-build-phase-0-context.md
432
517
  ```
433
518
 
434
519
  ---
@@ -436,5 +521,3 @@ Or if you have existing code, start with Phase 0 for automatic detection:
436
521
  **Last Updated:** 2025-01-XX
437
522
 
438
523
  **Version:** 1.2.0 (Frontend MVP)
439
-
440
-
@@ -34,7 +34,7 @@ First, check if `.ai-flow/analysis.json` exists:
34
34
 
35
35
  1. **Perform Current Code Analysis:**
36
36
 
37
- - Execute the same analysis as Phase 0 (frontend/flow-bootstrap-phase-0-context.md):
37
+ - Execute the same analysis as Phase 0 (frontend/flow-build-phase-0-context.md):
38
38
  - File structure analysis
39
39
  - Component detection and analysis
40
40
  - State management pattern detection
@@ -294,7 +294,7 @@ Update cancelled. Run `/flow-docs-sync` when you're ready to update the document
294
294
  2. **Follow Existing Patterns:**
295
295
 
296
296
  - Use same format as existing documentation
297
- - Follow conventions established in original bootstrap
297
+ - Follow conventions established in original build
298
298
  - Maintain consistency with existing docs
299
299
 
300
300
  3. **Update Analysis File:**
@@ -560,3 +560,4 @@ Documentation synchronized successfully.
560
560
 
561
561
 
562
562
 
563
+
@@ -2,7 +2,7 @@
2
2
 
3
3
  **⚡ AUTOMATED ANALYSIS - Minimal User Input Required**
4
4
 
5
- This phase automatically analyzes your existing mobile codebase to pre-populate answers for the bootstrap questionnaire.
5
+ This phase automatically analyzes your existing mobile codebase to pre-populate answers for the build questionnaire.
6
6
 
7
7
  ---
8
8
 
@@ -375,7 +375,7 @@ After Phase 0 completes:
375
375
 
376
376
  Next: Proceed to Phase 1 (Platform & Framework Selection)
377
377
 
378
- Read: .ai-flow/prompts/mobile/flow-bootstrap-phase-1-platform.md
378
+ Read: .ai-flow/prompts/mobile/flow-build-phase-1-platform.md
379
379
  ```
380
380
 
381
381
  ---
@@ -386,3 +386,4 @@ Read: .ai-flow/prompts/mobile/flow-bootstrap-phase-1-platform.md
386
386
 
387
387
 
388
388
 
389
+
@@ -519,7 +519,7 @@ After Phase 1, generate/update:
519
519
 
520
520
  **Next Phase:** Phase 2 - Navigation & Architecture
521
521
 
522
- Read: `.ai-flow/prompts/mobile/flow-bootstrap-phase-2-navigation.md`
522
+ Read: `.ai-flow/prompts/mobile/flow-build-phase-2-navigation.md`
523
523
 
524
524
  ---
525
525
 
@@ -529,3 +529,4 @@ Read: `.ai-flow/prompts/mobile/flow-bootstrap-phase-2-navigation.md`
529
529
 
530
530
 
531
531
 
532
+
@@ -573,7 +573,7 @@ After Phase 2, generate/update:
573
573
 
574
574
  **Next Phase:** Phase 3 - State & Data Management
575
575
 
576
- Read: `.ai-flow/prompts/mobile/flow-bootstrap-phase-3-state.md`
576
+ Read: `.ai-flow/prompts/mobile/flow-build-phase-3-state.md`
577
577
 
578
578
  ---
579
579
 
@@ -583,3 +583,4 @@ Read: `.ai-flow/prompts/mobile/flow-bootstrap-phase-3-state.md`
583
583
 
584
584
 
585
585
 
586
+
@@ -648,7 +648,7 @@ After Phase 3, generate/update:
648
648
 
649
649
  **Next Phase:** Phase 4 - Permissions & Native Features
650
650
 
651
- Read: `.ai-flow/prompts/mobile/flow-bootstrap-phase-4-permissions.md`
651
+ Read: `.ai-flow/prompts/mobile/flow-build-phase-4-permissions.md`
652
652
 
653
653
  ---
654
654
 
@@ -658,3 +658,4 @@ Read: `.ai-flow/prompts/mobile/flow-bootstrap-phase-4-permissions.md`
658
658
 
659
659
 
660
660
 
661
+
@@ -352,7 +352,7 @@ After Phase 4, generate/update:
352
352
 
353
353
  **Next Phase:** Phase 5 - Code Standards
354
354
 
355
- Read: `.ai-flow/prompts/mobile/flow-bootstrap-phase-5-standards.md`
355
+ Read: `.ai-flow/prompts/mobile/flow-build-phase-5-standards.md`
356
356
 
357
357
  ---
358
358
 
@@ -362,3 +362,4 @@ Read: `.ai-flow/prompts/mobile/flow-bootstrap-phase-5-standards.md`
362
362
 
363
363
 
364
364
 
365
+
@@ -358,7 +358,7 @@ After Phase 5, generate/update:
358
358
 
359
359
  **Next Phase:** Phase 6 - Testing Strategy
360
360
 
361
- Read: `.ai-flow/prompts/mobile/flow-bootstrap-phase-6-testing.md`
361
+ Read: `.ai-flow/prompts/mobile/flow-build-phase-6-testing.md`
362
362
 
363
363
  ---
364
364
 
@@ -368,3 +368,4 @@ Read: `.ai-flow/prompts/mobile/flow-bootstrap-phase-6-testing.md`
368
368
 
369
369
 
370
370
 
371
+
@@ -479,7 +479,7 @@ After Phase 6, generate/update:
479
479
 
480
480
  **Next Phase:** Phase 7 - Store Deployment
481
481
 
482
- Read: `.ai-flow/prompts/mobile/flow-bootstrap-phase-7-deployment.md`
482
+ Read: `.ai-flow/prompts/mobile/flow-build-phase-7-deployment.md`
483
483
 
484
484
  ---
485
485
 
@@ -489,3 +489,4 @@ Read: `.ai-flow/prompts/mobile/flow-bootstrap-phase-7-deployment.md`
489
489
 
490
490
 
491
491
 
492
+