Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

12345678910111213141516171819202122232425262728293031323334353637383940
  1. # DO NOT EDIT -- overwritten on every update.
  2. #
  3. # Workflow customization surface for bmad-testarch-automate. Mirrors the
  4. # agent customization shape under the [workflow] namespace.
  5. [workflow]
  6. # --- Configurable below. Overrides merge per BMad structural rules: ---
  7. # scalars: override wins • arrays (persistent_facts, activation_steps_*): append
  8. # Steps to run before the standard activation (config load, greet).
  9. # Overrides append. Use for pre-flight loads, compliance checks, etc.
  10. activation_steps_prepend = []
  11. # Steps to run after greet but before the workflow begins.
  12. # Overrides append. Use for context-heavy setup that should happen
  13. # once the user has been acknowledged.
  14. activation_steps_append = []
  15. # Persistent facts the workflow keeps in mind for the whole run
  16. # (testing standards, framework conventions, compliance constraints).
  17. # Distinct from the runtime memory sidecar — these are static context
  18. # loaded on activation. Overrides append.
  19. #
  20. # Each entry is either:
  21. # - a literal sentence, e.g. "Every test must run deterministically in CI."
  22. # - a file reference prefixed with `file:`, e.g. "file:{project-root}/docs/test-standards.md"
  23. # (glob patterns are supported; matching files load in lexical path order as facts).
  24. persistent_facts = [
  25. "file:{project-root}/**/project-context.md",
  26. ]
  27. # Scalar: executed when the workflow reaches its terminal step in any
  28. # mode (create, validate, edit), after the final outputs are produced.
  29. # Override wins. Leave empty for no custom post-completion behavior.
  30. on_complete = ""