Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!-- Powered by BMAD-CORE™ -->
  2. # Acceptance Test-Driven Development (ATDD)
  3. **Version**: 5.0 (Step-File Architecture)
  4. ---
  5. ## Overview
  6. Generates **red-phase acceptance test scaffolds** before implementation (TDD red phase), plus an implementation checklist. Produces tests at appropriate levels (E2E/API/Component) with supporting fixtures and helpers.
  7. ---
  8. ## WORKFLOW ARCHITECTURE
  9. This workflow uses **step-file architecture**:
  10. - **Micro-file Design**: Each step is self-contained
  11. - **JIT Loading**: Only the current step file is in memory
  12. - **Sequential Enforcement**: Execute steps in order without skipping
  13. ---
  14. ## INITIALIZATION SEQUENCE
  15. ### 1. Configuration Loading
  16. From `workflow.yaml`, resolve:
  17. - `config_source`, `test_artifacts`, `user_name`, `communication_language`, `document_output_language`, `date`
  18. - `test_dir`
  19. ### 2. First Step
  20. Load, read completely, and execute:
  21. `{skill-root}/steps-c/step-01-preflight-and-context.md`
  22. ### 3. Resume Support
  23. If the user selects **Resume** mode, load, read completely, and execute:
  24. `{skill-root}/steps-c/step-01b-resume.md`
  25. This checks the output document for progress tracking frontmatter and routes to the next incomplete step.