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.

customize.toml 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. # DO NOT EDIT -- overwritten on every update.
  2. #
  3. # Workflow customization surface for bmad-validate-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 13 (Validation Report Complete) and
  29. # the user exits via [X] Exit — not on [E] Use Edit Workflow (which chains to
  30. # bmad-edit-prd), [R] Review (which loops within), or [F] Fix (which loops within).
  31. # Override wins. Leave empty for no custom post-completion behavior.
  32. on_complete = ""