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.

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # DO NOT EDIT -- overwritten on every update.
  2. #
  3. # Workflow customization surface for bmad-create-epics-and-stories. 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. # arrays-of-tables with `code`/`id`: replace matching items, append new ones.
  9. # Steps to run before the standard activation (config load, greet).
  10. # Overrides append. Use for pre-flight loads, compliance checks, etc.
  11. activation_steps_prepend = []
  12. # Steps to run after greet but before the workflow begins.
  13. # Overrides append. Use for context-heavy setup that should happen
  14. # once the user has been acknowledged.
  15. activation_steps_append = []
  16. # Persistent facts the workflow keeps in mind for the whole run
  17. # (standards, compliance constraints, stylistic guardrails).
  18. # Distinct from the runtime memory sidecar — these are static context
  19. # loaded on activation. Overrides append.
  20. #
  21. # Each entry is either:
  22. # - a literal sentence, e.g. "All epics must deliver complete end-to-end user value."
  23. # - a file reference prefixed with `file:`, e.g. "file:{project-root}/docs/standards.md"
  24. # (glob patterns are supported; the file's contents are loaded and treated as facts).
  25. persistent_facts = [
  26. "file:{project-root}/**/project-context.md",
  27. ]
  28. # Scalar: executed when the workflow reaches Step 4 (Final Validation) and the
  29. # user confirms [C] Complete — after the epics.md is saved and bmad-help is invoked.
  30. # Override wins. Leave empty for no custom post-completion behavior.
  31. on_complete = ""