customize-template.toml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # DO NOT EDIT -- overwritten on every update.
  2. #
  3. # Agent customization surface for {skill-name}.
  4. # Team overrides: {project-root}/_bmad/custom/{skill-name}.toml
  5. # Personal overrides: {project-root}/_bmad/custom/{skill-name}.user.toml
  6. [agent]
  7. # --- Metadata (install-time roster contract) ---
  8. # Consumed by module.yaml:agents[] and `[agents.<code>]` in central config.
  9. code = "{agent-code}"
  10. name = "{agent-name-or-empty}"
  11. title = "{agent-title}"
  12. icon = "{agent-icon}"
  13. description = "{agent-description}"
  14. agent_type = "{agent-type}" # stateless | memory | autonomous
  15. {if-customizable}
  16. # --- Configurable below. Overrides merge per BMad structural rules: ---
  17. # scalars: override wins • arrays (persistent_facts, activation_steps_*): append
  18. # arrays-of-tables with `code`/`id`: replace matching items, append new ones.
  19. #
  20. # For memory/autonomous agents: your sanctum (PERSONA/CREED/BOND/CAPABILITIES)
  21. # is the primary behavior surface. Prefer editing sanctum files over this block.
  22. # Steps to run before the standard activation (config load, greet).
  23. # Overrides append. Use for pre-flight loads, compliance checks, etc.
  24. activation_steps_prepend = []
  25. # Steps to run after greet but before the agent accepts user input.
  26. # Overrides append. Use for context-heavy setup that should happen
  27. # once the user has been acknowledged.
  28. activation_steps_append = []
  29. # Persistent facts the agent keeps in mind for the whole session
  30. # (org rules, domain constants, user preferences). Overrides append.
  31. # These are static build-time config loaded on activation. They are not
  32. # the sanctum: the sanctum is the agent's runtime memory across wakings,
  33. # a separate surface that lives under {project-root}/_bmad/memory/.
  34. #
  35. # Each entry is either:
  36. # - a literal sentence, e.g. "Our org is AWS-only -- do not propose GCP or Azure."
  37. # - a file reference prefixed with `file:`, e.g. "file:{project-root}/docs/standards.md"
  38. # (glob patterns are supported; the file's contents are loaded and treated as facts).
  39. persistent_facts = [
  40. "file:{project-root}/**/project-context.md",
  41. ]
  42. # --- Agent-specific configurables (lifted during Configurability Discovery) ---
  43. #
  44. # Swappable reference docs, output paths, or hooks the builder surfaced with
  45. # the author. Bare paths resolve from the skill root; use `{project-root}/...`
  46. # to point at an org-owned resource elsewhere in the repo. Override wins.
  47. #
  48. # Naming conventions:
  49. # *_template -- file paths for templates the agent loads
  50. # *_output_path -- writable destinations
  51. # on_<event> -- hook scalars (prompts/commands)
  52. {/if-customizable}