customize.toml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # DO NOT EDIT -- overwritten on every update.
  2. #
  3. # Workflow customization surface for gds-investigate. 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. # Use for citation conventions (path:line vs path#L42), grading-scale
  18. # overrides (ITIL severity 1-5 instead of High/Medium/Low), tone
  19. # directives (engineering vs exec-facing), or compliance constraints
  20. # the case file must respect.
  21. # Distinct from the runtime memory sidecar — these are static context
  22. # loaded on activation. Overrides append.
  23. #
  24. # Each entry is either:
  25. # - a literal sentence, e.g. "Use ITIL severity 1-5 instead of High/Medium/Low for confidence."
  26. # - a file reference prefixed with `file:`, e.g. "file:{project-root}/docs/standards.md"
  27. # (glob patterns are supported; the file's contents are loaded and treated as facts).
  28. persistent_facts = [
  29. "file:{project-root}/**/project-context.md",
  30. ]
  31. # Scalar: path to the case-file template, resolved from the skill root.
  32. # Override to point at an org-shaped template (compliance sections,
  33. # SLA fields, post-mortem hooks, ITIL fields).
  34. case_file_template = "references/case-file-template.md"
  35. # Scalar: subdirectory under {implementation_artifacts} where case files land.
  36. # Override for org taxonomies (forensics/, cases/, incidents/, bug-bash/).
  37. case_file_subdir = "investigations"
  38. # Scalar: filename pattern for new case files. {slug} expands to the
  39. # ticket ID or a short user-agreed name.
  40. case_file_filename = "{slug}-investigation.md"
  41. # Scalar: executed when the workflow finalizes the case file at Outcome 5,
  42. # after the conclusion is presented. Override wins. Use for post-case
  43. # automation: post the case to Slack/Teams, push fields back to ticketing,
  44. # link the case to a sprint, trigger a follow-up retro.
  45. # Leave empty for no custom post-completion behavior.
  46. on_complete = ""