customize.toml 872 B

123456789101112131415161718192021222324252627282930313233
  1. # DO NOT EDIT -- overwritten on every update.
  2. #
  3. # Default customization values for bmad-dev-auto.
  4. # Override in _bmad/custom/bmad-dev-auto.toml or
  5. # _bmad/custom/bmad-dev-auto.user.toml.
  6. #
  7. # Merge rules:
  8. # - Strings replace the default.
  9. # - Lists append to the default list.
  10. # - Tables merge key by key.
  11. [workflow]
  12. # Extra instructions to run before config is loaded.
  13. activation_steps_prepend = []
  14. # Extra instructions to run after config is loaded and before step 01.
  15. activation_steps_append = []
  16. # Facts kept in context for the whole run.
  17. # Entries are literal text or file references prefixed with "file:".
  18. # File entries may use globs and are loaded during activation.
  19. persistent_facts = [
  20. "file:{project-root}/**/project-context.md",
  21. ]
  22. # Instruction run by HALT after writing the terminal result.
  23. # Empty means no extra terminal behavior.
  24. on_complete = ""