您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!-- Powered by BMAD-CORE™ -->
  2. # Test Automation Expansion
  3. **Version**: 5.0 (Step-File Architecture)
  4. ---
  5. ## Overview
  6. Expands test automation coverage by generating prioritized tests at the appropriate level (E2E, API, Component, Unit) with supporting fixtures and helpers.
  7. Modes:
  8. - **BMad-Integrated**: Uses story/PRD/test-design artifacts when available
  9. - **Standalone**: Analyzes existing codebase without BMad artifacts
  10. ---
  11. ## WORKFLOW ARCHITECTURE
  12. This workflow uses **step-file architecture** for disciplined execution:
  13. - **Micro-file Design**: Each step is self-contained
  14. - **JIT Loading**: Only the current step file is in memory
  15. - **Sequential Enforcement**: Execute steps in order without skipping
  16. ---
  17. ## INITIALIZATION SEQUENCE
  18. ### 1. Configuration Loading
  19. From `workflow.yaml`, resolve:
  20. - `config_source`, `test_artifacts`, `user_name`, `communication_language`, `document_output_language`, `date`
  21. - `test_dir`, `source_dir`, `coverage_target`, `standalone_mode`
  22. ### 2. First Step
  23. Load, read completely, and execute:
  24. `{skill-root}/steps-c/step-01-preflight-and-context.md`
  25. ### 3. Resume Support
  26. If the user selects **Resume** mode, load, read completely, and execute:
  27. `{skill-root}/steps-c/step-01b-resume.md`
  28. This checks the output document for progress tracking frontmatter and routes to the next incomplete step.