Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

workflow.yaml 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Test Architect workflow: bmad-testarch-atdd
  2. name: bmad-testarch-atdd
  3. # prettier-ignore
  4. description: 'Generate red-phase acceptance test scaffolds using TDD cycle. Use when the user says "lets write acceptance tests" or "I want to do ATDD"'
  5. # Critical variables from config
  6. config_source: "{project-root}/_bmad/tea/config.yaml"
  7. output_folder: "{config_source}:output_folder"
  8. test_artifacts: "{config_source}:test_artifacts"
  9. user_name: "{config_source}:user_name"
  10. communication_language: "{config_source}:communication_language"
  11. document_output_language: "{config_source}:document_output_language"
  12. date: system-generated
  13. # Workflow components
  14. installed_path: "."
  15. instructions: "./instructions.md"
  16. validation: "./checklist.md"
  17. template: "./atdd-checklist-template.md"
  18. # Variables and inputs
  19. variables:
  20. test_dir: "{project-root}/tests" # Root test directory
  21. # Output configuration
  22. default_output_file: "{test_artifacts}/atdd-checklist-{story_key}.md"
  23. # Required tools
  24. required_tools:
  25. - read_file # Read story markdown, framework config
  26. - write_file # Create test files, checklist, factory stubs
  27. - create_directory # Create test directories
  28. - list_files # Find existing fixtures and helpers
  29. - search_repo # Search for similar test patterns
  30. tags:
  31. - qa
  32. - atdd
  33. - test-architect
  34. - tdd
  35. - red-green-refactor
  36. execution_hints:
  37. interactive: false # Minimize prompts
  38. autonomous: true # Proceed without user input unless blocked
  39. iterative: true