From df74a12d0e4e9c4a2c1dca2612679477de2c5019 Mon Sep 17 00:00:00 2001 From: raph Date: Mon, 8 Jun 2026 14:43:07 +0200 Subject: [PATCH] feat(planning-poker): add customize.toml with config defaults --- .../bmad-planning-poker/customize.toml | 32 +++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 src/bmm-skills/4-implementation/bmad-planning-poker/customize.toml diff --git a/src/bmm-skills/4-implementation/bmad-planning-poker/customize.toml b/src/bmm-skills/4-implementation/bmad-planning-poker/customize.toml new file mode 100644 index 000000000..796adc5b3 --- /dev/null +++ b/src/bmm-skills/4-implementation/bmad-planning-poker/customize.toml @@ -0,0 +1,32 @@ +# DO NOT EDIT -- overwritten on every update. +# +# Workflow customization surface for bmad-planning-poker. Mirrors the +# agent customization shape under the [workflow] namespace. + +[workflow] + +# Steps to run before the standard activation (config load, greet). +activation_steps_prepend = [] + +# Steps to run after greet but before the workflow begins. +activation_steps_append = [] + +# Persistent facts the workflow keeps in mind for the whole run. +persistent_facts = [ + "file:{project-root}/**/project-context.md", +] + +# Estimation scale: fibonacci | tshirt | linear +estimation_scale = "fibonacci" + +# Divergence threshold: max/min > this triggers debate +divergence_threshold = 2.0 + +# Maximum re-vote rounds before PM tiebreaks +max_rounds = 3 + +# Agents participating in estimation (agent codes) +participating_agents = ["bmad-agent-pm", "bmad-agent-dev", "bmad-agent-architect"] + +# Post-completion hook (empty by default) +on_complete = ""