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

instructions.md 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <!-- Powered by BMAD-CORE™ -->
  2. # CI/CD Pipeline Setup
  3. **Version**: 5.0 (Step-File Architecture)
  4. ---
  5. ## Overview
  6. Scaffold a production-ready CI/CD quality pipeline with test execution, burn-in loops for flaky detection, parallel sharding, artifact collection, and notifications.
  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
  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. - `ci_platform`, `test_dir`
  19. ### 2. First Step
  20. Load, read completely, and execute:
  21. `{skill-root}/steps-c/step-01-preflight.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.