Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

5 дні тому
1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # DO NOT EDIT -- overwritten on every update.
  2. #
  3. # Workflow customization surface for bmad-create-architecture. 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. "Our org is AWS-only -- do not propose GCP or Azure."
  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 8 (Architecture Completion & Handoff),
  29. # after the architecture document frontmatter is updated and next-steps guidance is given.
  30. # Override wins. Leave empty for no custom post-completion behavior.
  31. on_complete = ""