Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

customize.toml 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # DO NOT EDIT -- overwritten on every update.
  2. #
  3. # Workflow customization surface for bmad-sprint-planning. 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 stories must include testable acceptance criteria."
  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 its final step,
  29. # after sprint-status.yaml is generated and validated. Override wins.
  30. # Leave empty for no custom post-completion behavior.
  31. on_complete = ""