customize.toml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. # DO NOT EDIT -- overwritten on every update.
  2. #
  3. # Workflow customization surface for bmad-ux.
  4. # Overrides:
  5. # {project-root}/_bmad/custom/bmad-ux.toml (team)
  6. # {project-root}/_bmad/custom/bmad-ux.user.toml (personal)
  7. # Merge rules: scalars override, arrays append.
  8. [workflow]
  9. # Steps to run before/after standard activation. Append-only.
  10. activation_steps_prepend = []
  11. activation_steps_append = []
  12. # Persistent facts loaded at activation and kept in mind for the run.
  13. # Entries: literal sentence, `skill:NAME`, or `file:PATH` (glob ok).
  14. persistent_facts = [
  15. "file:{project-root}/**/project-context.md",
  16. ]
  17. # Runs at workflow completion. String or array of instructions.
  18. on_complete = ""
  19. # Reference DESIGN.md spines the distillation subagent reads to anchor shape
  20. # and editorial richness. Convention-compliant with the Google Labs DESIGN.md
  21. # spec (https://github.com/google-labs-code/design.md). Append entries via
  22. # override TOML to seed an org-specific canonical aesthetic.
  23. # Each entry: `file:PATH` (or bare relative path, resolved skill-relative).
  24. design_md_examples = [
  25. "assets/design-example-mobile.md",
  26. "assets/design-example-shadcn.md",
  27. "assets/design-example-editorial.md",
  28. ]
  29. # Reference EXPERIENCE.md spines for the behavioral/flow/IA layer. Each entry:
  30. # `file:PATH` (or bare relative path, resolved skill-relative).
  31. experience_md_examples = [
  32. "assets/experience-example-mobile.md",
  33. "assets/experience-example-shadcn.md",
  34. ]
  35. # Design handoff targets — external tools that can take over the design /
  36. # visual identity work. The user runs the tool externally and saves outputs
  37. # (whatever the tool produces — DESIGN.md, Figma files, React components,
  38. # HTML mocks) to {doc_workspace}.
  39. # Each entry: `tool:NAME: <directive>`, `skill:NAME`, or plain-text descriptor.
  40. # Default: Google Stitch (emits DESIGN.md + per-screen HTML). Other producers:
  41. # Vercel v0, Figma, Galileo, Anima, internal generators.
  42. design_handoffs = [
  43. "Google Stitch (https://stitch.withgoogle.com) — emits DESIGN.md + per-screen HTML. Paste assembled prompt; save outputs to {doc_workspace}.",
  44. ]
  45. # HTML skeleton filled in by the validation synthesis pass.
  46. validation_report_template = "assets/validation-report-template.html"
  47. # Run folder. DESIGN.md, EXPERIENCE.md, .memlog.md, .working/
  48. # (creative-tool artifacts), imports/ (user-supplied screens / brand decks /
  49. # Figma exports / sketches), optional mockups/ and wireframes/ (promoted
  50. # artifacts), optional validation-report.* all land inside
  51. # {ux_output_path}/{run_folder_pattern}/.
  52. ux_output_path = "{planning_artifacts}/ux-designs"
  53. run_folder_pattern = "ux-{project_name}-{date}"
  54. # Creative tools registry. Collaborative renderers invoked on demand during
  55. # Discovery and at Finalize. Entry forms: `file:PATH`, `skill:NAME`,
  56. # `tool:MCP_TOOL: <directive>`, or plain text. Defaults ship for HTML color
  57. # themes, HTML design directions, Excalidraw wireframes (Discovery), and
  58. # 1:1 HTML key-screen mockups (Finalize). Working artifacts land in
  59. # {doc_workspace}/.working/; finalize promotes those with lasting reference
  60. # value to mockups/ or wireframes/. See references/creative-tools.md.
  61. creative_tools = [
  62. "file:assets/color-themes.md",
  63. "file:assets/design-directions.md",
  64. "file:assets/excalidraw-wireframe.md",
  65. "file:assets/key-screens.md",
  66. ]
  67. # Polish passes applied to DESIGN.md and EXPERIENCE.md at finalize.
  68. # Entries: `skill:NAME`, `file:PATH`, or plain text directive.
  69. # Suggested order: structural → content/voice → prose mechanics.
  70. doc_standards = [
  71. "skill:bmad-editorial-review-structure",
  72. "skill:bmad-editorial-review-prose",
  73. ]
  74. # Information retrieval registry. Consulted on demand when the conversation
  75. # surfaces a matching need. Distinct from creative_tools (artifact production).
  76. # Example: "When researching component patterns, consult corp:design_system_search."
  77. external_sources = []
  78. # Routes outputs beyond local files at Finalize. Returned URLs/IDs surfaced
  79. # to the user. Unavailable tools skipped and flagged.
  80. # Example: "Upload DESIGN.md to Confluence via corp:confluence_upload (space_key='DESIGN')."
  81. external_handoffs = []
  82. # Reviewers spawned at Finalize step 4 and at Validate intent, alongside
  83. # the rubric walker. Entries: `skill:NAME`, `file:PATH`, or plain text.
  84. # Common ad-hoc add (judged by the skill): accessibility-focused reviewer
  85. # for consumer / regulated work.
  86. finalize_reviewers = []