Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

workflow.yaml 1.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. # Test Architect workflow: bmad-testarch-test-review
  2. name: bmad-testarch-test-review
  3. # prettier-ignore
  4. description: 'Review test quality using best practices validation. Use when the user says "lets review tests" or "I want to evaluate test quality"'
  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: "./test-review-template.md"
  18. # Variables and inputs
  19. variables:
  20. test_dir: "{project-root}/tests" # Root test directory
  21. review_scope: "single" # single (one file), directory (folder), suite (all tests)
  22. test_stack_type: "auto" # auto, frontend, backend, fullstack - from config or auto-detected
  23. # Output configuration
  24. default_output_file: "{test_artifacts}/test-review.md"
  25. # Required tools
  26. required_tools:
  27. - read_file # Read test files, story, test-design
  28. - write_file # Create review report
  29. - list_files # Discover test files in directory
  30. - search_repo # Find tests by patterns
  31. - glob # Find test files matching patterns
  32. tags:
  33. - qa
  34. - test-architect
  35. - code-review
  36. - quality
  37. - best-practices
  38. execution_hints:
  39. interactive: false # Minimize prompts
  40. autonomous: true # Proceed without user input unless blocked
  41. iterative: true # Can review multiple files