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

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # DO NOT EDIT -- overwritten on every update.
  2. #
  3. # Workflow customization surface for bmad-edit-prd. 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 PRDs must include a regulatory-risk section."
  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 E-4 (Complete & Validate) and the
  29. # user exits via [S] Summary or [X] Exit — not on [V] Validate (which chains to
  30. # bmad-validate-prd) or [E] Edit More (which loops back). Override wins.
  31. # Leave empty for no custom post-completion behavior.
  32. on_complete = ""