bmad-method 6.0.0-alpha.12 → 6.0.0-alpha.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (608) hide show
  1. package/.github/ISSUE_TEMPLATE/idea_submission.md +1 -1
  2. package/.github/scripts/discord-helpers.sh +15 -0
  3. package/.github/workflows/bundle-latest.yaml +79 -27
  4. package/.github/workflows/discord.yaml +278 -8
  5. package/.github/workflows/quality.yaml +19 -0
  6. package/.markdownlint-cli2.yaml +42 -0
  7. package/.prettierignore +3 -0
  8. package/CHANGELOG.md +254 -1
  9. package/CODE_OF_CONDUCT.md +128 -0
  10. package/README.md +3 -1
  11. package/bmad-method-6.0.0-alpha.14.tgz +0 -0
  12. package/docs/agent-customization-guide.md +2 -2
  13. package/docs/custom-agent-installation.md +58 -90
  14. package/docs/document-sharding-guide.md +1 -1
  15. package/docs/ide-info/rovo-dev.md +388 -0
  16. package/docs/index.md +6 -81
  17. package/docs/installers-bundlers/installers-modules-platforms-reference.md +1 -1
  18. package/eslint.config.mjs +14 -0
  19. package/example-custom-content/README.md +4 -0
  20. package/example-custom-content/agents/commit-poet/commit-poet.agent.yaml +129 -0
  21. package/example-custom-content/agents/toolsmith/toolsmith-sidecar/instructions.md +70 -0
  22. package/example-custom-content/agents/toolsmith/toolsmith-sidecar/knowledge/bundlers.md +111 -0
  23. package/example-custom-content/agents/toolsmith/toolsmith-sidecar/knowledge/deploy.md +70 -0
  24. package/example-custom-content/agents/toolsmith/toolsmith-sidecar/knowledge/docs.md +114 -0
  25. package/example-custom-content/agents/toolsmith/toolsmith-sidecar/knowledge/installers.md +134 -0
  26. package/example-custom-content/agents/toolsmith/toolsmith-sidecar/knowledge/modules.md +161 -0
  27. package/example-custom-content/agents/toolsmith/toolsmith-sidecar/knowledge/tests.md +103 -0
  28. package/example-custom-content/agents/toolsmith/toolsmith-sidecar/memories.md +17 -0
  29. package/example-custom-content/agents/toolsmith/toolsmith.agent.yaml +109 -0
  30. package/example-custom-content/custom.yaml +3 -0
  31. package/example-custom-content/workflows/quiz-master/steps/step-01-init.md +168 -0
  32. package/example-custom-content/workflows/quiz-master/steps/step-02-q1.md +155 -0
  33. package/example-custom-content/workflows/quiz-master/steps/step-03-q2.md +89 -0
  34. package/example-custom-content/workflows/quiz-master/steps/step-04-q3.md +36 -0
  35. package/example-custom-content/workflows/quiz-master/steps/step-05-q4.md +36 -0
  36. package/example-custom-content/workflows/quiz-master/steps/step-06-q5.md +36 -0
  37. package/example-custom-content/workflows/quiz-master/steps/step-07-q6.md +36 -0
  38. package/example-custom-content/workflows/quiz-master/steps/step-08-q7.md +36 -0
  39. package/example-custom-content/workflows/quiz-master/steps/step-09-q8.md +36 -0
  40. package/example-custom-content/workflows/quiz-master/steps/step-10-q9.md +36 -0
  41. package/example-custom-content/workflows/quiz-master/steps/step-11-q10.md +36 -0
  42. package/example-custom-content/workflows/quiz-master/steps/step-12-results.md +150 -0
  43. package/example-custom-content/workflows/quiz-master/templates/csv-headers.template +1 -0
  44. package/example-custom-content/workflows/quiz-master/workflow-plan-quiz-master.md +269 -0
  45. package/example-custom-content/workflows/quiz-master/workflow.md +54 -0
  46. package/example-custom-content/workflows/wassup/workflow.md +26 -0
  47. package/example-custom-module/mwm/README.md +4 -0
  48. package/example-custom-module/mwm/_module-installer/install-config.yaml +27 -0
  49. package/example-custom-module/mwm/agents/cbt-coach/cbt-coach-sidecar/cognitive-distortions.md +47 -0
  50. package/example-custom-module/mwm/agents/cbt-coach/cbt-coach-sidecar/thought-records.md +17 -0
  51. package/example-custom-module/mwm/agents/cbt-coach/cbt-coach.agent.yaml +150 -0
  52. package/example-custom-module/mwm/agents/crisis-navigator.agent.yaml +137 -0
  53. package/example-custom-module/mwm/agents/meditation-guide.agent.yaml +137 -0
  54. package/example-custom-module/mwm/agents/wellness-companion/wellness-companion-sidecar/insights.md +13 -0
  55. package/example-custom-module/mwm/agents/wellness-companion/wellness-companion-sidecar/instructions.md +30 -0
  56. package/example-custom-module/mwm/agents/wellness-companion/wellness-companion-sidecar/memories.md +13 -0
  57. package/example-custom-module/mwm/agents/wellness-companion/wellness-companion-sidecar/patterns.md +17 -0
  58. package/example-custom-module/mwm/agents/wellness-companion/wellness-companion.agent.yaml +124 -0
  59. package/example-custom-module/mwm/workflows/cbt-thought-record/README.md +31 -0
  60. package/example-custom-module/mwm/workflows/cbt-thought-record/workflow.md +45 -0
  61. package/example-custom-module/mwm/workflows/crisis-support/README.md +31 -0
  62. package/example-custom-module/mwm/workflows/crisis-support/workflow.md +45 -0
  63. package/example-custom-module/mwm/workflows/daily-checkin/README.md +32 -0
  64. package/example-custom-module/mwm/workflows/daily-checkin/workflow.md +45 -0
  65. package/example-custom-module/mwm/workflows/guided-meditation/README.md +31 -0
  66. package/example-custom-module/mwm/workflows/guided-meditation/workflow.md +45 -0
  67. package/example-custom-module/mwm/workflows/wellness-journal/README.md +31 -0
  68. package/example-custom-module/mwm/workflows/wellness-journal/workflow.md +45 -0
  69. package/package.json +9 -4
  70. package/src/core/_module-installer/install-config.yaml +5 -1
  71. package/src/core/agents/bmad-master.agent.yaml +1 -1
  72. package/src/core/agents/bmad-web-orchestrator.agent.xml +1 -1
  73. package/src/core/resources/excalidraw/library-loader.md +2 -2
  74. package/src/core/tasks/advanced-elicitation-methods.csv +51 -21
  75. package/src/core/tasks/advanced-elicitation.xml +18 -8
  76. package/src/core/tasks/workflow.xml +36 -71
  77. package/src/core/workflows/brainstorming/brain-methods.csv +62 -36
  78. package/src/core/workflows/brainstorming/steps/step-01-session-setup.md +196 -0
  79. package/src/core/workflows/brainstorming/steps/step-01b-continue.md +121 -0
  80. package/src/core/workflows/brainstorming/steps/step-02a-user-selected.md +224 -0
  81. package/src/core/workflows/brainstorming/steps/step-02b-ai-recommended.md +236 -0
  82. package/src/core/workflows/brainstorming/steps/step-02c-random-selection.md +208 -0
  83. package/src/core/workflows/brainstorming/steps/step-02d-progressive-flow.md +263 -0
  84. package/src/core/workflows/brainstorming/steps/step-03-technique-execution.md +339 -0
  85. package/src/core/workflows/brainstorming/steps/step-04-idea-organization.md +302 -0
  86. package/src/core/workflows/brainstorming/template.md +13 -104
  87. package/src/core/workflows/brainstorming/workflow.md +51 -0
  88. package/src/core/workflows/party-mode/steps/step-01-agent-loading.md +138 -0
  89. package/src/core/workflows/party-mode/steps/step-02-discussion-orchestration.md +203 -0
  90. package/src/core/workflows/party-mode/steps/step-03-graceful-exit.md +158 -0
  91. package/src/core/workflows/party-mode/workflow.md +206 -0
  92. package/src/modules/bmb/README.md +153 -86
  93. package/src/modules/bmb/_module-installer/install-config.yaml +4 -9
  94. package/src/modules/bmb/_module-installer/installer.js +76 -0
  95. package/src/modules/bmb/agents/bmad-builder.agent.yaml +75 -38
  96. package/src/modules/bmb/docs/{agent-menu-patterns.md → agents/agent-menu-patterns.md} +6 -6
  97. package/src/modules/bmb/docs/{expert-agent-architecture.md → agents/expert-agent-architecture.md} +20 -20
  98. package/src/modules/bmb/docs/agents/kb.csv +0 -0
  99. package/src/modules/bmb/docs/{module-agent-architecture.md → agents/module-agent-architecture.md} +46 -46
  100. package/src/modules/bmb/docs/{simple-agent-architecture.md → agents/simple-agent-architecture.md} +7 -3
  101. package/src/modules/bmb/docs/workflows/architecture.md +220 -0
  102. package/src/modules/bmb/docs/workflows/common-workflow-tools.csv +19 -0
  103. package/src/modules/bmb/docs/workflows/csv-data-file-standards.md +206 -0
  104. package/src/modules/bmb/docs/workflows/index.md +45 -0
  105. package/src/modules/bmb/docs/workflows/intent-vs-prescriptive-spectrum.md +220 -0
  106. package/src/modules/bmb/docs/workflows/kb.csv +0 -0
  107. package/src/modules/bmb/docs/workflows/templates/step-01-init-continuable-template.md +241 -0
  108. package/src/modules/bmb/docs/workflows/templates/step-1b-template.md +223 -0
  109. package/src/modules/bmb/docs/workflows/templates/step-file.md +139 -0
  110. package/src/modules/bmb/docs/workflows/templates/step-template.md +290 -0
  111. package/src/modules/bmb/docs/workflows/templates/workflow-template.md +104 -0
  112. package/src/modules/bmb/docs/workflows/templates/workflow.md +58 -0
  113. package/src/modules/bmb/docs/workflows/terms.md +97 -0
  114. package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/README.md +4 -4
  115. package/src/modules/bmb/reference/agents/expert-examples/journal-keeper/journal-keeper.agent.yaml +8 -8
  116. package/src/modules/bmb/reference/agents/module-examples/README.md +1 -1
  117. package/src/modules/bmb/reference/agents/module-examples/security-engineer.agent.yaml +7 -7
  118. package/src/modules/bmb/reference/agents/module-examples/trend-analyst.agent.yaml +7 -7
  119. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/data/dietary-restrictions.csv +18 -0
  120. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/data/macro-calculator.csv +16 -0
  121. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/data/recipe-database.csv +28 -0
  122. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-01-init.md +176 -0
  123. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-01b-continue.md +120 -0
  124. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-02-profile.md +164 -0
  125. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-03-assessment.md +153 -0
  126. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-04-strategy.md +182 -0
  127. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-05-shopping.md +167 -0
  128. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-06-prep-schedule.md +194 -0
  129. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/assessment-section.md +25 -0
  130. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/nutrition-plan.md +68 -0
  131. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/prep-schedule-section.md +29 -0
  132. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/profile-section.md +47 -0
  133. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/shopping-section.md +37 -0
  134. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/strategy-section.md +18 -0
  135. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/workflow.md +58 -0
  136. package/src/modules/bmb/workflows/create-agent/data/info-and-installation-guide.md +29 -0
  137. package/src/modules/bmb/workflows/create-agent/data/reference/README.md +3 -0
  138. package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/README.md +242 -0
  139. package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/breakthroughs.md +24 -0
  140. package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/instructions.md +108 -0
  141. package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/memories.md +46 -0
  142. package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/mood-patterns.md +39 -0
  143. package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper.agent.yaml +152 -0
  144. package/src/modules/bmb/workflows/create-agent/data/reference/agents/module-examples/README.md +50 -0
  145. package/src/modules/bmb/workflows/create-agent/data/reference/agents/module-examples/security-engineer.agent.yaml +53 -0
  146. package/src/modules/bmb/workflows/create-agent/data/reference/agents/module-examples/trend-analyst.agent.yaml +57 -0
  147. package/src/modules/bmb/workflows/create-agent/data/reference/agents/simple-examples/README.md +223 -0
  148. package/src/modules/bmb/workflows/create-agent/data/reference/agents/simple-examples/commit-poet.agent.yaml +126 -0
  149. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/data/dietary-restrictions.csv +18 -0
  150. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/data/macro-calculator.csv +16 -0
  151. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/data/recipe-database.csv +28 -0
  152. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-01-init.md +177 -0
  153. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-01b-continue.md +150 -0
  154. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-02-profile.md +164 -0
  155. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-03-assessment.md +152 -0
  156. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-04-strategy.md +182 -0
  157. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-05-shopping.md +167 -0
  158. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-06-prep-schedule.md +194 -0
  159. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/assessment-section.md +25 -0
  160. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/nutrition-plan.md +68 -0
  161. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/prep-schedule-section.md +29 -0
  162. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/profile-section.md +47 -0
  163. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/shopping-section.md +37 -0
  164. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/strategy-section.md +18 -0
  165. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/workflow.md +58 -0
  166. package/src/modules/bmb/workflows/create-agent/data/validation-complete.md +305 -0
  167. package/src/modules/bmb/workflows/create-agent/steps/step-01-brainstorm.md +145 -0
  168. package/src/modules/bmb/workflows/create-agent/steps/step-02-discover.md +210 -0
  169. package/src/modules/bmb/workflows/create-agent/steps/step-03-persona.md +260 -0
  170. package/src/modules/bmb/workflows/create-agent/steps/step-04-commands.md +237 -0
  171. package/src/modules/bmb/workflows/create-agent/steps/step-05-name.md +231 -0
  172. package/src/modules/bmb/workflows/create-agent/steps/step-06-build.md +224 -0
  173. package/src/modules/bmb/workflows/create-agent/steps/step-07-validate.md +234 -0
  174. package/src/modules/bmb/workflows/create-agent/steps/step-08-setup.md +179 -0
  175. package/src/modules/bmb/workflows/create-agent/steps/step-09-customize.md +197 -0
  176. package/src/modules/bmb/workflows/create-agent/steps/step-10-build-tools.md +180 -0
  177. package/src/modules/bmb/workflows/create-agent/steps/step-11-celebrate.md +222 -0
  178. package/src/modules/bmb/workflows/create-agent/templates/agent_commands.md +21 -0
  179. package/src/modules/bmb/workflows/create-agent/templates/agent_persona.md +25 -0
  180. package/src/modules/bmb/workflows/create-agent/templates/agent_purpose_and_type.md +23 -0
  181. package/src/modules/bmb/workflows/create-agent/workflow.md +91 -0
  182. package/src/modules/bmb/workflows/create-module/steps/step-01-init.md +155 -0
  183. package/src/modules/bmb/workflows/create-module/steps/step-01b-continue.md +169 -0
  184. package/src/modules/bmb/workflows/create-module/steps/step-02-concept.md +217 -0
  185. package/src/modules/bmb/workflows/create-module/steps/step-03-components.md +267 -0
  186. package/src/modules/bmb/workflows/create-module/steps/step-04-structure.md +228 -0
  187. package/src/modules/bmb/workflows/create-module/steps/step-05-config.md +233 -0
  188. package/src/modules/bmb/workflows/create-module/steps/step-06-agents.md +296 -0
  189. package/src/modules/bmb/workflows/create-module/steps/step-07-workflows.md +228 -0
  190. package/src/modules/bmb/workflows/create-module/steps/step-08-installer.md +186 -0
  191. package/src/modules/bmb/workflows/create-module/steps/step-09-documentation.md +308 -0
  192. package/src/modules/bmb/workflows/create-module/steps/step-10-roadmap.md +336 -0
  193. package/src/modules/bmb/workflows/create-module/steps/step-11-validate.md +335 -0
  194. package/src/modules/bmb/workflows/create-module/templates/agent.template.md +317 -0
  195. package/src/modules/bmb/workflows/create-module/templates/install-config.template.yaml +53 -0
  196. package/src/modules/bmb/workflows/create-module/templates/installer.template.js +47 -0
  197. package/src/modules/bmb/workflows/create-module/templates/module-plan.template.md +5 -0
  198. package/src/modules/bmb/workflows/create-module/templates/workflow-plan-template.md +23 -0
  199. package/src/modules/bmb/workflows/create-module/validation.md +126 -0
  200. package/src/modules/bmb/workflows/create-module/workflow.md +55 -0
  201. package/src/modules/bmb/workflows/create-workflow/steps/step-01-init.md +157 -0
  202. package/src/modules/bmb/workflows/create-workflow/steps/step-02-gather.md +211 -0
  203. package/src/modules/bmb/workflows/create-workflow/steps/step-03-tools-configuration.md +250 -0
  204. package/src/modules/bmb/workflows/create-workflow/steps/step-04-plan-review.md +216 -0
  205. package/src/modules/bmb/workflows/create-workflow/steps/step-05-output-format-design.md +289 -0
  206. package/src/modules/bmb/workflows/create-workflow/steps/step-06-design.md +271 -0
  207. package/src/modules/bmb/workflows/create-workflow/steps/step-07-build.md +308 -0
  208. package/src/modules/bmb/workflows/create-workflow/steps/step-08-review.md +284 -0
  209. package/src/modules/bmb/workflows/create-workflow/steps/step-09-complete.md +187 -0
  210. package/src/modules/bmb/workflows/create-workflow/workflow.md +58 -0
  211. package/src/modules/bmb/workflows/edit-agent/steps/step-01-discover-intent.md +134 -0
  212. package/src/modules/bmb/workflows/edit-agent/steps/step-02-analyze-agent.md +202 -0
  213. package/src/modules/bmb/workflows/edit-agent/steps/step-03-propose-changes.md +157 -0
  214. package/src/modules/bmb/workflows/edit-agent/steps/step-04-apply-changes.md +150 -0
  215. package/src/modules/bmb/workflows/edit-agent/steps/step-05-validate.md +150 -0
  216. package/src/modules/bmb/workflows/edit-agent/workflow.md +58 -0
  217. package/src/modules/bmb/workflows/edit-workflow/steps/step-01-analyze.md +217 -0
  218. package/src/modules/bmb/workflows/edit-workflow/steps/step-02-discover.md +253 -0
  219. package/src/modules/bmb/workflows/edit-workflow/steps/step-03-improve.md +217 -0
  220. package/src/modules/bmb/workflows/edit-workflow/steps/step-04-validate.md +193 -0
  221. package/src/modules/bmb/workflows/edit-workflow/steps/step-05-compliance-check.md +245 -0
  222. package/src/modules/bmb/workflows/edit-workflow/templates/completion-summary.md +75 -0
  223. package/src/modules/bmb/workflows/edit-workflow/templates/improvement-goals.md +68 -0
  224. package/src/modules/bmb/workflows/edit-workflow/templates/improvement-log.md +40 -0
  225. package/src/modules/bmb/workflows/edit-workflow/templates/validation-results.md +51 -0
  226. package/src/modules/bmb/workflows/edit-workflow/templates/workflow-analysis.md +56 -0
  227. package/src/modules/bmb/workflows/edit-workflow/workflow.md +58 -0
  228. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-01-validate-goal.md +152 -0
  229. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-02-workflow-validation.md +243 -0
  230. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-03-step-validation.md +274 -0
  231. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-04-file-validation.md +295 -0
  232. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-05-intent-spectrum-validation.md +264 -0
  233. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-06-web-subprocess-validation.md +360 -0
  234. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-07-holistic-analysis.md +258 -0
  235. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-08-generate-report.md +301 -0
  236. package/src/modules/bmb/workflows/workflow-compliance-check/templates/compliance-report.md +140 -0
  237. package/src/modules/bmb/workflows/workflow-compliance-check/workflow.md +58 -0
  238. package/src/modules/bmb/{workflows → workflows-legacy}/edit-module/checklist.md +0 -1
  239. package/src/modules/bmgd/agents/game-architect.agent.yaml +1 -1
  240. package/src/modules/bmgd/agents/game-designer.agent.yaml +1 -1
  241. package/src/modules/bmgd/agents/game-dev.agent.yaml +1 -1
  242. package/src/modules/bmgd/agents/game-scrum-master.agent.yaml +1 -1
  243. package/src/modules/bmgd/workflows/3-technical/game-architecture/instructions.md +8 -8
  244. package/src/modules/bmm/_module-installer/install-config.yaml +10 -16
  245. package/src/modules/bmm/agents/analyst.agent.yaml +25 -22
  246. package/src/modules/bmm/agents/architect.agent.yaml +12 -14
  247. package/src/modules/bmm/agents/dev.agent.yaml +20 -16
  248. package/src/modules/bmm/agents/pm.agent.yaml +14 -32
  249. package/src/modules/bmm/agents/quick-flow-solo-dev.agent.yaml +36 -0
  250. package/src/modules/bmm/agents/sm.agent.yaml +13 -31
  251. package/src/modules/bmm/agents/tea.agent.yaml +10 -7
  252. package/src/modules/bmm/agents/tech-writer.agent.yaml +7 -20
  253. package/src/modules/bmm/agents/ux-designer.agent.yaml +12 -10
  254. package/src/modules/bmm/data/README.md +29 -0
  255. package/src/modules/bmm/data/project-context-template.md +40 -0
  256. package/src/modules/bmm/docs/README.md +44 -10
  257. package/src/modules/bmm/docs/agents-guide.md +80 -53
  258. package/src/modules/bmm/docs/bmad-quick-flow.md +528 -0
  259. package/src/modules/bmm/docs/brownfield-guide.md +25 -39
  260. package/src/modules/bmm/docs/enterprise-agentic-development.md +3 -3
  261. package/src/modules/bmm/docs/faq.md +6 -39
  262. package/src/modules/bmm/docs/glossary.md +12 -25
  263. package/src/modules/bmm/docs/images/README.md +37 -0
  264. package/src/modules/bmm/docs/images/workflow-method-greenfield.excalidraw +960 -1845
  265. package/src/modules/bmm/docs/images/workflow-method-greenfield.svg +4 -2
  266. package/src/modules/bmm/docs/quick-flow-solo-dev.md +337 -0
  267. package/src/modules/bmm/docs/quick-spec-flow.md +5 -5
  268. package/src/modules/bmm/docs/quick-start.md +9 -25
  269. package/src/modules/bmm/docs/scale-adaptive-system.md +5 -5
  270. package/src/modules/bmm/docs/test-architecture.md +90 -24
  271. package/src/modules/bmm/docs/troubleshooting.md +680 -0
  272. package/src/modules/bmm/docs/workflow-document-project-reference.md +1 -1
  273. package/src/modules/bmm/docs/workflows-analysis.md +36 -140
  274. package/src/modules/bmm/docs/workflows-implementation.md +175 -160
  275. package/src/modules/bmm/docs/workflows-planning.md +51 -212
  276. package/src/modules/bmm/docs/workflows-solutioning.md +26 -71
  277. package/src/modules/bmm/tasks/daily-standup.xml +85 -0
  278. package/src/modules/bmm/teams/default-party.csv +15 -14
  279. package/src/modules/bmm/teams/team-fullstack.yaml +0 -1
  280. package/src/modules/bmm/testarch/knowledge/api-request.md +303 -0
  281. package/src/modules/bmm/testarch/knowledge/auth-session.md +356 -0
  282. package/src/modules/bmm/testarch/knowledge/burn-in.md +273 -0
  283. package/src/modules/bmm/testarch/knowledge/ci-burn-in.md +1 -1
  284. package/src/modules/bmm/testarch/knowledge/file-utils.md +260 -0
  285. package/src/modules/bmm/testarch/knowledge/fixtures-composition.md +382 -0
  286. package/src/modules/bmm/testarch/knowledge/intercept-network-call.md +280 -0
  287. package/src/modules/bmm/testarch/knowledge/log.md +294 -0
  288. package/src/modules/bmm/testarch/knowledge/network-error-monitor.md +272 -0
  289. package/src/modules/bmm/testarch/knowledge/network-recorder.md +265 -0
  290. package/src/modules/bmm/testarch/knowledge/overview.md +284 -0
  291. package/src/modules/bmm/testarch/knowledge/recurse.md +296 -0
  292. package/src/modules/bmm/testarch/tea-index.csv +11 -0
  293. package/src/modules/bmm/workflows/1-analysis/product-brief/product-brief.template.md +8 -0
  294. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-01-init.md +192 -0
  295. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-01b-continue.md +167 -0
  296. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-02-vision.md +203 -0
  297. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-03-users.md +206 -0
  298. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-04-metrics.md +209 -0
  299. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-05-scope.md +223 -0
  300. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-06-complete.md +199 -0
  301. package/src/modules/bmm/workflows/1-analysis/product-brief/workflow.md +58 -0
  302. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-01-init.md +136 -0
  303. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-02-domain-analysis.md +228 -0
  304. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-03-competitive-landscape.md +237 -0
  305. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-04-regulatory-focus.md +205 -0
  306. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-05-technical-trends.md +233 -0
  307. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-06-research-synthesis.md +442 -0
  308. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-01-init.md +181 -0
  309. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-02-customer-behavior.md +236 -0
  310. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-02-customer-insights.md +199 -0
  311. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-03-customer-pain-points.md +248 -0
  312. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-04-customer-decisions.md +258 -0
  313. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-05-competitive-analysis.md +176 -0
  314. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-06-research-completion.md +474 -0
  315. package/src/modules/bmm/workflows/1-analysis/research/research.template.md +15 -0
  316. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-01-init.md +136 -0
  317. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-02-technical-overview.md +238 -0
  318. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-03-integration-patterns.md +247 -0
  319. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-04-architectural-patterns.md +201 -0
  320. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-05-implementation-research.md +238 -0
  321. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-06-research-synthesis.md +485 -0
  322. package/src/modules/bmm/workflows/1-analysis/research/workflow.md +204 -0
  323. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01-init.md +159 -0
  324. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01b-continue.md +126 -0
  325. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-02-discovery.md +209 -0
  326. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md +215 -0
  327. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md +218 -0
  328. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-05-inspiration.md +233 -0
  329. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-06-design-system.md +251 -0
  330. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-07-defining-experience.md +253 -0
  331. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-08-visual-foundation.md +223 -0
  332. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-09-design-directions.md +223 -0
  333. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-10-user-journeys.md +240 -0
  334. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-11-component-strategy.md +247 -0
  335. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-12-ux-patterns.md +236 -0
  336. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-13-responsive-accessibility.md +263 -0
  337. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md +226 -0
  338. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +6 -138
  339. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md +59 -0
  340. package/src/modules/bmm/workflows/2-plan-workflows/prd/prd-template.md +12 -200
  341. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-01-init.md +243 -0
  342. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-01b-continue.md +165 -0
  343. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-02-discovery.md +420 -0
  344. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-03-success.md +289 -0
  345. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-04-journeys.md +290 -0
  346. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-05-domain.md +270 -0
  347. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-06-innovation.md +261 -0
  348. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-07-project-type.md +257 -0
  349. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-08-scoping.md +298 -0
  350. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-09-functional.md +269 -0
  351. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-10-nonfunctional.md +293 -0
  352. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-11-complete.md +223 -0
  353. package/src/modules/bmm/workflows/2-plan-workflows/prd/workflow.md +61 -0
  354. package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-decision-template.md +13 -0
  355. package/src/modules/bmm/workflows/3-solutioning/architecture/data/domain-complexity.csv +11 -0
  356. package/src/modules/bmm/workflows/3-solutioning/architecture/data/project-types.csv +7 -0
  357. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-01-init.md +194 -0
  358. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-01b-continue.md +163 -0
  359. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-02-context.md +223 -0
  360. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-03-starter.md +330 -0
  361. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-04-decisions.md +317 -0
  362. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-05-patterns.md +358 -0
  363. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-06-structure.md +378 -0
  364. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-07-validation.md +358 -0
  365. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-08-complete.md +351 -0
  366. package/src/modules/bmm/workflows/3-solutioning/architecture/workflow.md +49 -0
  367. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-01-validate-prerequisites.md +258 -0
  368. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-02-design-epics.md +232 -0
  369. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-03-create-stories.md +271 -0
  370. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-04-final-validation.md +144 -0
  371. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/templates/epics-template.md +57 -0
  372. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md +58 -0
  373. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-01-document-discovery.md +189 -0
  374. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-02-prd-analysis.md +177 -0
  375. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-03-epic-coverage-validation.md +178 -0
  376. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-04-ux-alignment.md +138 -0
  377. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-05-epic-quality-review.md +251 -0
  378. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/steps/step-06-final-assessment.md +132 -0
  379. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/templates/readiness-report-template.md +4 -0
  380. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/workflow.md +54 -0
  381. package/src/modules/bmm/workflows/4-implementation/code-review/checklist.md +2 -1
  382. package/src/modules/bmm/workflows/4-implementation/code-review/instructions.xml +224 -0
  383. package/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml +4 -11
  384. package/src/modules/bmm/workflows/4-implementation/create-story/checklist.md +332 -214
  385. package/src/modules/bmm/workflows/4-implementation/create-story/instructions.xml +354 -0
  386. package/src/modules/bmm/workflows/4-implementation/create-story/workflow.yaml +21 -34
  387. package/src/modules/bmm/workflows/4-implementation/dev-story/checklist.md +65 -23
  388. package/src/modules/bmm/workflows/4-implementation/dev-story/instructions.xml +406 -0
  389. package/src/modules/bmm/workflows/4-implementation/dev-story/workflow.yaml +6 -37
  390. package/src/modules/bmm/workflows/4-implementation/retrospective/instructions.md +3 -3
  391. package/src/modules/bmm/workflows/4-implementation/sprint-planning/instructions.md +19 -21
  392. package/src/modules/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +11 -10
  393. package/src/modules/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +2 -0
  394. package/src/modules/bmm/workflows/4-implementation/sprint-status/instructions.md +174 -0
  395. package/src/modules/bmm/workflows/4-implementation/sprint-status/workflow.yaml +35 -0
  396. package/src/modules/bmm/workflows/bmad-quick-flow/create-tech-spec/instructions.md +115 -0
  397. package/src/modules/bmm/workflows/bmad-quick-flow/create-tech-spec/workflow.yaml +26 -0
  398. package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/checklist.md +25 -0
  399. package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/instructions.md +202 -0
  400. package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/workflow.yaml +33 -0
  401. package/src/modules/bmm/workflows/document-project/instructions.md +1 -1
  402. package/src/modules/bmm/workflows/document-project/workflows/deep-dive-instructions.md +2 -2
  403. package/src/modules/bmm/workflows/generate-project-context/project-context-template.md +20 -0
  404. package/src/modules/bmm/workflows/generate-project-context/steps/step-01-discover.md +193 -0
  405. package/src/modules/bmm/workflows/generate-project-context/steps/step-02-generate.md +317 -0
  406. package/src/modules/bmm/workflows/generate-project-context/steps/step-03-complete.md +277 -0
  407. package/src/modules/bmm/workflows/generate-project-context/workflow.md +48 -0
  408. package/src/modules/bmm/workflows/testarch/atdd/atdd-checklist-template.md +1 -1
  409. package/src/modules/bmm/workflows/testarch/atdd/instructions.md +23 -3
  410. package/src/modules/bmm/workflows/testarch/automate/instructions.md +23 -2
  411. package/src/modules/bmm/workflows/testarch/ci/checklist.md +1 -1
  412. package/src/modules/bmm/workflows/testarch/ci/github-actions-template.yaml +36 -3
  413. package/src/modules/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +25 -4
  414. package/src/modules/bmm/workflows/testarch/ci/instructions.md +20 -3
  415. package/src/modules/bmm/workflows/testarch/framework/instructions.md +27 -1
  416. package/src/modules/bmm/workflows/testarch/test-design/instructions.md +8 -2
  417. package/src/modules/bmm/workflows/testarch/test-review/instructions.md +29 -9
  418. package/src/modules/bmm/workflows/workflow-status/init/instructions.md +66 -54
  419. package/src/modules/bmm/workflows/workflow-status/instructions.md +11 -4
  420. package/src/modules/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +4 -8
  421. package/src/modules/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +4 -8
  422. package/src/modules/bmm/workflows/workflow-status/paths/method-brownfield.yaml +4 -8
  423. package/src/modules/bmm/workflows/workflow-status/paths/method-greenfield.yaml +4 -9
  424. package/src/modules/cis/agents/README.md +1 -1
  425. package/src/modules/cis/agents/brainstorming-coach.agent.yaml +3 -2
  426. package/src/modules/cis/agents/creative-problem-solver.agent.yaml +2 -1
  427. package/src/modules/cis/agents/design-thinking-coach.agent.yaml +2 -1
  428. package/src/modules/cis/agents/innovation-strategist.agent.yaml +2 -1
  429. package/src/modules/cis/agents/presentation-master.agent.yaml +3 -2
  430. package/src/modules/cis/agents/storyteller.agent.yaml +2 -1
  431. package/src/modules/cis/teams/default-party.csv +6 -5
  432. package/src/utility/models/agent-activation-ide.xml +4 -4
  433. package/src/utility/models/agent-activation-web.xml +1 -11
  434. package/src/utility/models/fragments/activation-rules.xml +5 -6
  435. package/src/utility/models/fragments/handler-exec.xml +6 -5
  436. package/src/utility/models/fragments/handler-multi.xml +14 -0
  437. package/test/README.md +1 -1
  438. package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +1 -3
  439. package/tools/cli/README.md +4 -3
  440. package/tools/cli/bundlers/web-bundler.js +3 -14
  441. package/tools/cli/commands/build.js +9 -184
  442. package/tools/cli/commands/install.js +42 -2
  443. package/tools/cli/installers/lib/core/config-collector.js +94 -10
  444. package/tools/cli/installers/lib/core/installer.js +389 -55
  445. package/tools/cli/installers/lib/core/manifest-generator.js +91 -30
  446. package/tools/cli/installers/lib/core/post-install-sidecar-replacement.js +79 -0
  447. package/tools/cli/installers/lib/custom/handler.js +266 -0
  448. package/tools/cli/installers/lib/ide/_base-ide.js +10 -0
  449. package/tools/cli/installers/lib/ide/antigravity.js +51 -7
  450. package/tools/cli/installers/lib/ide/auggie.js +72 -7
  451. package/tools/cli/installers/lib/ide/claude-code.js +1 -6
  452. package/tools/cli/installers/lib/ide/cline.js +49 -0
  453. package/tools/cli/installers/lib/ide/codex.js +2 -2
  454. package/tools/cli/installers/lib/ide/crush.js +66 -6
  455. package/tools/cli/installers/lib/ide/cursor.js +29 -13
  456. package/tools/cli/installers/lib/ide/gemini.js +96 -1
  457. package/tools/cli/installers/lib/ide/github-copilot.js +59 -48
  458. package/tools/cli/installers/lib/ide/iflow.js +67 -1
  459. package/tools/cli/installers/lib/ide/kilo.js +74 -0
  460. package/tools/cli/installers/lib/ide/kiro-cli.js +327 -0
  461. package/tools/cli/installers/lib/ide/opencode.js +3 -3
  462. package/tools/cli/installers/lib/ide/qwen.js +54 -0
  463. package/tools/cli/installers/lib/ide/roo.js +145 -138
  464. package/tools/cli/installers/lib/ide/rovo-dev.js +290 -0
  465. package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +8 -2
  466. package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +34 -19
  467. package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +18 -14
  468. package/tools/cli/installers/lib/ide/templates/agent-command-template.md +1 -1
  469. package/tools/cli/installers/lib/ide/templates/workflow-commander.md +5 -0
  470. package/tools/cli/installers/lib/ide/trae.js +47 -0
  471. package/tools/cli/installers/lib/modules/manager.js +486 -53
  472. package/tools/cli/lib/agent/compiler.js +210 -27
  473. package/tools/cli/lib/agent/installer.js +140 -30
  474. package/tools/cli/lib/agent-analyzer.js +46 -18
  475. package/tools/cli/lib/config.js +2 -1
  476. package/tools/cli/lib/ui.js +269 -13
  477. package/tools/cli/lib/yaml-xml-builder.js +123 -39
  478. package/tools/platform-codes.yaml +12 -0
  479. package/tools/schema/agent.js +229 -20
  480. package/tools/validate-svg-changes.sh +356 -0
  481. package/src/core/tasks/adv-elicit-methods.csv +0 -39
  482. package/src/core/workflows/brainstorming/README.md +0 -261
  483. package/src/core/workflows/brainstorming/instructions.md +0 -315
  484. package/src/core/workflows/brainstorming/workflow.yaml +0 -38
  485. package/src/core/workflows/party-mode/instructions.md +0 -183
  486. package/src/core/workflows/party-mode/workflow.yaml +0 -28
  487. package/src/modules/bmb/workflows/audit-workflow/checklist.md +0 -142
  488. package/src/modules/bmb/workflows/audit-workflow/instructions.md +0 -341
  489. package/src/modules/bmb/workflows/audit-workflow/template.md +0 -118
  490. package/src/modules/bmb/workflows/audit-workflow/workflow.yaml +0 -25
  491. package/src/modules/bmb/workflows/convert-legacy/README.md +0 -262
  492. package/src/modules/bmb/workflows/convert-legacy/checklist.md +0 -205
  493. package/src/modules/bmb/workflows/convert-legacy/instructions.md +0 -377
  494. package/src/modules/bmb/workflows/convert-legacy/workflow.yaml +0 -30
  495. package/src/modules/bmb/workflows/create-agent/instructions.md +0 -519
  496. package/src/modules/bmb/workflows/create-agent/workflow.yaml +0 -55
  497. package/src/modules/bmb/workflows/create-module/README.md +0 -229
  498. package/src/modules/bmb/workflows/create-module/brainstorm-context.md +0 -137
  499. package/src/modules/bmb/workflows/create-module/checklist.md +0 -235
  500. package/src/modules/bmb/workflows/create-module/installer-templates/install-config.yaml +0 -92
  501. package/src/modules/bmb/workflows/create-module/installer-templates/installer.js +0 -231
  502. package/src/modules/bmb/workflows/create-module/instructions.md +0 -577
  503. package/src/modules/bmb/workflows/create-module/module-structure.md +0 -400
  504. package/src/modules/bmb/workflows/create-module/workflow.yaml +0 -52
  505. package/src/modules/bmb/workflows/create-workflow/README.md +0 -277
  506. package/src/modules/bmb/workflows/create-workflow/brainstorm-context.md +0 -197
  507. package/src/modules/bmb/workflows/create-workflow/checklist.md +0 -94
  508. package/src/modules/bmb/workflows/create-workflow/instructions.md +0 -725
  509. package/src/modules/bmb/workflows/create-workflow/workflow-creation-guide.md +0 -1327
  510. package/src/modules/bmb/workflows/create-workflow/workflow-template/checklist.md +0 -24
  511. package/src/modules/bmb/workflows/create-workflow/workflow-template/instructions.md +0 -15
  512. package/src/modules/bmb/workflows/create-workflow/workflow-template/template.md +0 -9
  513. package/src/modules/bmb/workflows/create-workflow/workflow-template/workflow.yaml +0 -61
  514. package/src/modules/bmb/workflows/create-workflow/workflow.yaml +0 -41
  515. package/src/modules/bmb/workflows/edit-agent/README.md +0 -239
  516. package/src/modules/bmb/workflows/edit-agent/instructions.md +0 -654
  517. package/src/modules/bmb/workflows/edit-agent/workflow.yaml +0 -49
  518. package/src/modules/bmb/workflows/edit-workflow/README.md +0 -119
  519. package/src/modules/bmb/workflows/edit-workflow/checklist.md +0 -70
  520. package/src/modules/bmb/workflows/edit-workflow/instructions.md +0 -342
  521. package/src/modules/bmb/workflows/edit-workflow/workflow.yaml +0 -27
  522. package/src/modules/bmgd/workflows/4-production/code-review/checklist.md +0 -22
  523. package/src/modules/bmm/_module-installer/assets/bmm-kb.md +0 -1
  524. package/src/modules/bmm/_module-installer/assets/technical-decisions.md +0 -30
  525. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/instructions.md +0 -112
  526. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/project-context.md +0 -25
  527. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/workflow.yaml +0 -39
  528. package/src/modules/bmm/workflows/1-analysis/domain-research/instructions.md +0 -425
  529. package/src/modules/bmm/workflows/1-analysis/domain-research/template.md +0 -180
  530. package/src/modules/bmm/workflows/1-analysis/domain-research/workflow.yaml +0 -56
  531. package/src/modules/bmm/workflows/1-analysis/product-brief/checklist.md +0 -115
  532. package/src/modules/bmm/workflows/1-analysis/product-brief/instructions.md +0 -524
  533. package/src/modules/bmm/workflows/1-analysis/product-brief/template.md +0 -181
  534. package/src/modules/bmm/workflows/1-analysis/product-brief/workflow.yaml +0 -61
  535. package/src/modules/bmm/workflows/1-analysis/research/checklist-deep-prompt.md +0 -144
  536. package/src/modules/bmm/workflows/1-analysis/research/checklist-technical.md +0 -249
  537. package/src/modules/bmm/workflows/1-analysis/research/checklist.md +0 -299
  538. package/src/modules/bmm/workflows/1-analysis/research/claude-code/injections.yaml +0 -114
  539. package/src/modules/bmm/workflows/1-analysis/research/instructions-deep-prompt.md +0 -438
  540. package/src/modules/bmm/workflows/1-analysis/research/instructions-market.md +0 -675
  541. package/src/modules/bmm/workflows/1-analysis/research/instructions-router.md +0 -134
  542. package/src/modules/bmm/workflows/1-analysis/research/instructions-technical.md +0 -534
  543. package/src/modules/bmm/workflows/1-analysis/research/template-deep-prompt.md +0 -94
  544. package/src/modules/bmm/workflows/1-analysis/research/template-market.md +0 -347
  545. package/src/modules/bmm/workflows/1-analysis/research/template-technical.md +0 -245
  546. package/src/modules/bmm/workflows/1-analysis/research/workflow.yaml +0 -62
  547. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/checklist.md +0 -310
  548. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +0 -1308
  549. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/workflow.yaml +0 -93
  550. package/src/modules/bmm/workflows/2-plan-workflows/prd/checklist.md +0 -346
  551. package/src/modules/bmm/workflows/2-plan-workflows/prd/instructions.md +0 -703
  552. package/src/modules/bmm/workflows/2-plan-workflows/prd/workflow.yaml +0 -78
  553. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/checklist.md +0 -217
  554. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/epics-template.md +0 -74
  555. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions-generate-stories.md +0 -436
  556. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +0 -980
  557. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/tech-spec-template.md +0 -181
  558. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/user-story-template.md +0 -90
  559. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +0 -60
  560. package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-patterns.yaml +0 -321
  561. package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-template.md +0 -103
  562. package/src/modules/bmm/workflows/3-solutioning/architecture/checklist.md +0 -240
  563. package/src/modules/bmm/workflows/3-solutioning/architecture/decision-catalog.yaml +0 -222
  564. package/src/modules/bmm/workflows/3-solutioning/architecture/instructions.md +0 -768
  565. package/src/modules/bmm/workflows/3-solutioning/architecture/pattern-categories.csv +0 -13
  566. package/src/modules/bmm/workflows/3-solutioning/architecture/workflow.yaml +0 -100
  567. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/epics-template.md +0 -80
  568. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/instructions.md +0 -616
  569. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.yaml +0 -63
  570. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/checklist.md +0 -169
  571. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/instructions.md +0 -332
  572. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/template.md +0 -146
  573. package/src/modules/bmm/workflows/3-solutioning/implementation-readiness/workflow.yaml +0 -64
  574. package/src/modules/bmm/workflows/4-implementation/code-review/backlog_template.md +0 -12
  575. package/src/modules/bmm/workflows/4-implementation/code-review/instructions.md +0 -398
  576. package/src/modules/bmm/workflows/4-implementation/create-story/instructions.md +0 -256
  577. package/src/modules/bmm/workflows/4-implementation/dev-story/instructions.md +0 -267
  578. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/checklist.md +0 -17
  579. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/instructions.md +0 -164
  580. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/template.md +0 -76
  581. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/workflow.yaml +0 -58
  582. package/src/modules/bmm/workflows/4-implementation/story-context/checklist.md +0 -16
  583. package/src/modules/bmm/workflows/4-implementation/story-context/context-template.xml +0 -34
  584. package/src/modules/bmm/workflows/4-implementation/story-context/instructions.md +0 -209
  585. package/src/modules/bmm/workflows/4-implementation/story-context/workflow.yaml +0 -63
  586. package/src/modules/bmm/workflows/4-implementation/story-done/instructions.md +0 -111
  587. package/src/modules/bmm/workflows/4-implementation/story-done/workflow.yaml +0 -28
  588. package/src/modules/bmm/workflows/4-implementation/story-ready/instructions.md +0 -117
  589. package/src/modules/bmm/workflows/4-implementation/story-ready/workflow.yaml +0 -25
  590. package/src/modules/bmm/workflows/workflow-status/paths/quick-flow-brownfield.yaml +0 -58
  591. package/src/modules/bmm/workflows/workflow-status/paths/quick-flow-greenfield.yaml +0 -47
  592. package/tools/cli/commands/agent-install.js +0 -409
  593. /package/src/modules/bmb/docs/{agent-compilation.md → agents/agent-compilation.md} +0 -0
  594. /package/src/modules/bmb/docs/{index.md → agents/index.md} +0 -0
  595. /package/src/modules/bmb/docs/{understanding-agent-types.md → agents/understanding-agent-types.md} +0 -0
  596. /package/src/modules/bmb/reference/{readme.md → README.md} +0 -0
  597. /package/src/modules/bmb/workflows/create-agent/{agent-validation-checklist.md → data/agent-validation-checklist.md} +0 -0
  598. /package/src/modules/bmb/workflows/create-agent/{brainstorm-context.md → data/brainstorm-context.md} +0 -0
  599. /package/src/modules/bmb/workflows/create-agent/{communication-presets.csv → data/communication-presets.csv} +0 -0
  600. /package/src/modules/bmb/{workflows → workflows-legacy}/edit-module/README.md +0 -0
  601. /package/src/modules/bmb/{workflows → workflows-legacy}/edit-module/instructions.md +0 -0
  602. /package/src/modules/bmb/{workflows → workflows-legacy}/edit-module/workflow.yaml +0 -0
  603. /package/src/modules/bmb/{workflows → workflows-legacy}/module-brief/README.md +0 -0
  604. /package/src/modules/bmb/{workflows → workflows-legacy}/module-brief/checklist.md +0 -0
  605. /package/src/modules/bmb/{workflows → workflows-legacy}/module-brief/instructions.md +0 -0
  606. /package/src/modules/bmb/{workflows → workflows-legacy}/module-brief/template.md +0 -0
  607. /package/src/modules/bmb/{workflows → workflows-legacy}/module-brief/workflow.yaml +0 -0
  608. /package/src/modules/bmm/{workflows/techdoc → data}/documentation-standards.md +0 -0
@@ -450,17 +450,21 @@
450
450
  {
451
451
  "type": "arrow",
452
452
  "id": "arrow-brainstorm-research"
453
+ },
454
+ {
455
+ "id": "jv0rnlK2D9JKIGTO7pUtT",
456
+ "type": "arrow"
453
457
  }
454
458
  ],
455
459
  "locked": false,
456
- "version": 2,
457
- "versionNonce": 1836483413,
460
+ "version": 3,
461
+ "versionNonce": 115423290,
458
462
  "index": "aA",
459
463
  "isDeleted": false,
460
464
  "strokeStyle": "solid",
461
465
  "seed": 1,
462
466
  "frameId": null,
463
- "updated": 1763522171079,
467
+ "updated": 1764191341773,
464
468
  "link": null
465
469
  },
466
470
  {
@@ -506,9 +510,9 @@
506
510
  "id": "arrow-brainstorm-research",
507
511
  "type": "arrow",
508
512
  "x": 120,
509
- "y": 460,
513
+ "y": 460.45161416125165,
510
514
  "width": 0,
511
- "height": 30,
515
+ "height": 29.096771677496633,
512
516
  "angle": 0,
513
517
  "strokeColor": "#1976d2",
514
518
  "backgroundColor": "transparent",
@@ -534,12 +538,12 @@
534
538
  ],
535
539
  [
536
540
  0,
537
- 30
541
+ 29.096771677496633
538
542
  ]
539
543
  ],
540
544
  "lastCommittedPoint": null,
541
- "version": 2,
542
- "versionNonce": 1054167221,
545
+ "version": 3,
546
+ "versionNonce": 828709094,
543
547
  "index": "aC",
544
548
  "isDeleted": false,
545
549
  "strokeStyle": "solid",
@@ -547,7 +551,7 @@
547
551
  "frameId": null,
548
552
  "roundness": null,
549
553
  "boundElements": [],
550
- "updated": 1763522171079,
554
+ "updated": 1764191023838,
551
555
  "link": null,
552
556
  "locked": false,
553
557
  "startArrowhead": null,
@@ -586,25 +590,29 @@
586
590
  {
587
591
  "type": "arrow",
588
592
  "id": "arrow-research-brief"
593
+ },
594
+ {
595
+ "id": "RF10FfKbmG72P77I2IoP4",
596
+ "type": "arrow"
589
597
  }
590
598
  ],
591
599
  "locked": false,
592
- "version": 2,
593
- "versionNonce": 1080885531,
600
+ "version": 5,
601
+ "versionNonce": 987493562,
594
602
  "index": "aD",
595
603
  "isDeleted": false,
596
604
  "strokeStyle": "solid",
597
605
  "seed": 1,
598
606
  "frameId": null,
599
- "updated": 1763522171079,
607
+ "updated": 1764191042826,
600
608
  "link": null
601
609
  },
602
610
  {
603
611
  "id": "proc-research-text",
604
612
  "type": "text",
605
- "x": 50,
613
+ "x": 78.26604461669922,
606
614
  "y": 505,
607
- "width": 140,
615
+ "width": 83.46791076660156,
608
616
  "height": 50,
609
617
  "angle": 0,
610
618
  "strokeColor": "#1e1e1e",
@@ -623,8 +631,8 @@
623
631
  "verticalAlign": "middle",
624
632
  "containerId": "proc-research",
625
633
  "locked": false,
626
- "version": 2,
627
- "versionNonce": 162755093,
634
+ "version": 5,
635
+ "versionNonce": 92329914,
628
636
  "index": "aE",
629
637
  "isDeleted": false,
630
638
  "strokeStyle": "solid",
@@ -632,7 +640,7 @@
632
640
  "frameId": null,
633
641
  "roundness": null,
634
642
  "boundElements": [],
635
- "updated": 1763522171079,
643
+ "updated": 1764191023838,
636
644
  "link": null,
637
645
  "originalText": "Research\n<<optional>>",
638
646
  "autoResize": true,
@@ -641,7 +649,7 @@
641
649
  {
642
650
  "id": "arrow-research-brief",
643
651
  "type": "arrow",
644
- "x": 120,
652
+ "x": 120.00000000000001,
645
653
  "y": 570.4516141612517,
646
654
  "width": 0,
647
655
  "height": 29.09677167749669,
@@ -674,8 +682,8 @@
674
682
  ]
675
683
  ],
676
684
  "lastCommittedPoint": null,
677
- "version": 3,
678
- "versionNonce": 129474555,
685
+ "version": 4,
686
+ "versionNonce": 1012730918,
679
687
  "index": "aF",
680
688
  "isDeleted": false,
681
689
  "strokeStyle": "solid",
@@ -683,7 +691,7 @@
683
691
  "frameId": null,
684
692
  "roundness": null,
685
693
  "boundElements": [],
686
- "updated": 1763522366664,
694
+ "updated": 1764191023838,
687
695
  "link": null,
688
696
  "locked": false,
689
697
  "startArrowhead": null,
@@ -718,17 +726,21 @@
718
726
  {
719
727
  "type": "arrow",
720
728
  "id": "arrow-research-brief"
729
+ },
730
+ {
731
+ "id": "arrow-phase1-to-phase2",
732
+ "type": "arrow"
721
733
  }
722
734
  ],
723
735
  "locked": false,
724
- "version": 5,
725
- "versionNonce": 1883386587,
736
+ "version": 6,
737
+ "versionNonce": 1568298662,
726
738
  "index": "aG",
727
739
  "isDeleted": false,
728
740
  "strokeStyle": "solid",
729
741
  "seed": 1,
730
742
  "frameId": null,
731
- "updated": 1763522387503,
743
+ "updated": 1764190985483,
732
744
  "link": null
733
745
  },
734
746
  {
@@ -773,10 +785,10 @@
773
785
  {
774
786
  "id": "arrow-discovery-no",
775
787
  "type": "arrow",
776
- "x": 199.6894797300442,
777
- "y": 290.14816182452876,
778
- "width": 154.3876762800684,
779
- "height": 0.2869717617168135,
788
+ "x": 199.68944196572753,
789
+ "y": 290.14813727772287,
790
+ "width": 154.38771404438515,
791
+ "height": 0.2869361997344413,
780
792
  "angle": 0,
781
793
  "strokeColor": "#1976d2",
782
794
  "backgroundColor": "transparent",
@@ -801,13 +813,13 @@
801
813
  0
802
814
  ],
803
815
  [
804
- 154.3876762800684,
805
- 0.2869717617168135
816
+ 154.38771404438515,
817
+ 0.2869361997344413
806
818
  ]
807
819
  ],
808
820
  "lastCommittedPoint": null,
809
- "version": 133,
810
- "versionNonce": 384615061,
821
+ "version": 134,
822
+ "versionNonce": 1651808102,
811
823
  "index": "aI",
812
824
  "isDeleted": false,
813
825
  "strokeStyle": "solid",
@@ -815,7 +827,7 @@
815
827
  "frameId": null,
816
828
  "roundness": null,
817
829
  "boundElements": [],
818
- "updated": 1763522366664,
830
+ "updated": 1764191023838,
819
831
  "link": null,
820
832
  "locked": false,
821
833
  "startArrowhead": null,
@@ -861,10 +873,10 @@
861
873
  {
862
874
  "id": "arrow-phase1-to-phase2",
863
875
  "type": "arrow",
864
- "x": 200.83459733658879,
865
- "y": 647.2861823292017,
866
- "width": 155.24475704444893,
867
- "height": 343.9606227346032,
876
+ "x": 200.89221334296062,
877
+ "y": 647.2552625380853,
878
+ "width": 155.54926796151912,
879
+ "height": 344.1924874570816,
868
880
  "angle": 0,
869
881
  "strokeColor": "#1976d2",
870
882
  "backgroundColor": "transparent",
@@ -873,10 +885,14 @@
873
885
  "roughness": 0,
874
886
  "opacity": 100,
875
887
  "groupIds": [],
876
- "startBinding": null,
888
+ "startBinding": {
889
+ "elementId": "proc-product-brief",
890
+ "focus": 0.6109361701343846,
891
+ "gap": 1
892
+ },
877
893
  "endBinding": {
878
894
  "elementId": "proc-prd",
879
- "focus": 0.4199760568947118,
895
+ "focus": 0.48602478253370496,
880
896
  "gap": 3.21773034122549
881
897
  },
882
898
  "points": [
@@ -885,17 +901,21 @@
885
901
  0
886
902
  ],
887
903
  [
888
- 66.30442041579451,
889
- -291.0277369141115
904
+ 71.35560764925268,
905
+ -38.29318660613865
906
+ ],
907
+ [
908
+ 84.68337472706096,
909
+ -292.7672603376131
890
910
  ],
891
911
  [
892
- 155.24475704444893,
893
- -343.9606227346032
912
+ 155.54926796151912,
913
+ -344.1924874570816
894
914
  ]
895
915
  ],
896
916
  "lastCommittedPoint": null,
897
- "version": 1159,
898
- "versionNonce": 1603208699,
917
+ "version": 1393,
918
+ "versionNonce": 261518822,
899
919
  "index": "aK",
900
920
  "isDeleted": false,
901
921
  "strokeStyle": "solid",
@@ -905,7 +925,7 @@
905
925
  "type": 2
906
926
  },
907
927
  "boundElements": [],
908
- "updated": 1763522391047,
928
+ "updated": 1764191023838,
909
929
  "link": null,
910
930
  "locked": false,
911
931
  "startArrowhead": null,
@@ -1017,23 +1037,35 @@
1017
1037
  "id": "arrow-discovery-no"
1018
1038
  },
1019
1039
  {
1020
- "type": "arrow",
1021
- "id": "arrow-prd-validate"
1040
+ "id": "arrow-phase1-to-phase2",
1041
+ "type": "arrow"
1022
1042
  },
1023
1043
  {
1024
- "id": "arrow-phase1-to-phase2",
1044
+ "id": "RF10FfKbmG72P77I2IoP4",
1045
+ "type": "arrow"
1046
+ },
1047
+ {
1048
+ "id": "jv0rnlK2D9JKIGTO7pUtT",
1049
+ "type": "arrow"
1050
+ },
1051
+ {
1052
+ "id": "arrow-has-ui-no",
1053
+ "type": "arrow"
1054
+ },
1055
+ {
1056
+ "id": "arrow-prd-hasui",
1025
1057
  "type": "arrow"
1026
1058
  }
1027
1059
  ],
1028
1060
  "locked": false,
1029
- "version": 102,
1030
- "versionNonce": 1152453237,
1061
+ "version": 108,
1062
+ "versionNonce": 930129275,
1031
1063
  "index": "aN",
1032
1064
  "isDeleted": false,
1033
1065
  "strokeStyle": "solid",
1034
1066
  "seed": 1,
1035
1067
  "frameId": null,
1036
- "updated": 1763522366662,
1068
+ "updated": 1764952855000,
1037
1069
  "link": null
1038
1070
  },
1039
1071
  {
@@ -1060,8 +1092,8 @@
1060
1092
  "verticalAlign": "middle",
1061
1093
  "containerId": "proc-prd",
1062
1094
  "locked": false,
1063
- "version": 101,
1064
- "versionNonce": 1467085781,
1095
+ "version": 103,
1096
+ "versionNonce": 1402977702,
1065
1097
  "index": "aO",
1066
1098
  "isDeleted": false,
1067
1099
  "strokeStyle": "solid",
@@ -1069,199 +1101,12 @@
1069
1101
  "frameId": null,
1070
1102
  "roundness": null,
1071
1103
  "boundElements": [],
1072
- "updated": 1763522366663,
1104
+ "updated": 1764191023837,
1073
1105
  "link": null,
1074
1106
  "originalText": "PRD",
1075
1107
  "autoResize": true,
1076
1108
  "lineHeight": 1.25
1077
1109
  },
1078
- {
1079
- "id": "arrow-prd-validate",
1080
- "type": "arrow",
1081
- "x": 439.38101944508776,
1082
- "y": 331.0450590268819,
1083
- "width": 0.2006820852784017,
1084
- "height": 28.50332681186643,
1085
- "angle": 0,
1086
- "strokeColor": "#1976d2",
1087
- "backgroundColor": "transparent",
1088
- "fillStyle": "solid",
1089
- "strokeWidth": 2,
1090
- "roughness": 0,
1091
- "opacity": 100,
1092
- "groupIds": [],
1093
- "startBinding": {
1094
- "elementId": "proc-prd",
1095
- "focus": 0,
1096
- "gap": 1
1097
- },
1098
- "endBinding": {
1099
- "elementId": "proc-validate-prd",
1100
- "focus": 0,
1101
- "gap": 1
1102
- },
1103
- "points": [
1104
- [
1105
- 0,
1106
- 0
1107
- ],
1108
- [
1109
- 0.2006820852784017,
1110
- 28.50332681186643
1111
- ]
1112
- ],
1113
- "lastCommittedPoint": null,
1114
- "version": 101,
1115
- "versionNonce": 901883893,
1116
- "index": "aP",
1117
- "isDeleted": false,
1118
- "strokeStyle": "solid",
1119
- "seed": 1,
1120
- "frameId": null,
1121
- "roundness": null,
1122
- "boundElements": [],
1123
- "updated": 1763522366664,
1124
- "link": null,
1125
- "locked": false,
1126
- "startArrowhead": null,
1127
- "endArrowhead": "arrow"
1128
- },
1129
- {
1130
- "id": "proc-validate-prd",
1131
- "type": "rectangle",
1132
- "x": 360,
1133
- "y": 360,
1134
- "width": 160,
1135
- "height": 80,
1136
- "angle": 0,
1137
- "strokeColor": "#43a047",
1138
- "backgroundColor": "#c8e6c9",
1139
- "fillStyle": "solid",
1140
- "strokeWidth": 2,
1141
- "roughness": 0,
1142
- "opacity": 100,
1143
- "roundness": {
1144
- "type": 3,
1145
- "value": 8
1146
- },
1147
- "groupIds": [
1148
- "proc-validate-prd-group"
1149
- ],
1150
- "boundElements": [
1151
- {
1152
- "type": "text",
1153
- "id": "proc-validate-prd-text"
1154
- },
1155
- {
1156
- "type": "arrow",
1157
- "id": "arrow-prd-validate"
1158
- },
1159
- {
1160
- "type": "arrow",
1161
- "id": "arrow-validate-prd-hasui"
1162
- }
1163
- ],
1164
- "locked": false,
1165
- "version": 2,
1166
- "versionNonce": 1542331989,
1167
- "index": "aQ",
1168
- "isDeleted": false,
1169
- "strokeStyle": "solid",
1170
- "seed": 1,
1171
- "frameId": null,
1172
- "updated": 1763522171080,
1173
- "link": null
1174
- },
1175
- {
1176
- "id": "proc-validate-prd-text",
1177
- "type": "text",
1178
- "x": 370,
1179
- "y": 375,
1180
- "width": 140,
1181
- "height": 50,
1182
- "angle": 0,
1183
- "strokeColor": "#1e1e1e",
1184
- "backgroundColor": "transparent",
1185
- "fillStyle": "solid",
1186
- "strokeWidth": 2,
1187
- "roughness": 0,
1188
- "opacity": 100,
1189
- "groupIds": [
1190
- "proc-validate-prd-group"
1191
- ],
1192
- "fontSize": 14,
1193
- "fontFamily": 1,
1194
- "text": "Validate PRD\n<<optional>>",
1195
- "textAlign": "center",
1196
- "verticalAlign": "middle",
1197
- "containerId": "proc-validate-prd",
1198
- "locked": false,
1199
- "version": 2,
1200
- "versionNonce": 944332155,
1201
- "index": "aR",
1202
- "isDeleted": false,
1203
- "strokeStyle": "solid",
1204
- "seed": 1,
1205
- "frameId": null,
1206
- "roundness": null,
1207
- "boundElements": [],
1208
- "updated": 1763522171080,
1209
- "link": null,
1210
- "originalText": "Validate PRD\n<<optional>>",
1211
- "autoResize": true,
1212
- "lineHeight": 1.7857142857142858
1213
- },
1214
- {
1215
- "id": "arrow-validate-prd-hasui",
1216
- "type": "arrow",
1217
- "x": 440,
1218
- "y": 440,
1219
- "width": 0,
1220
- "height": 30,
1221
- "angle": 0,
1222
- "strokeColor": "#1976d2",
1223
- "backgroundColor": "transparent",
1224
- "fillStyle": "solid",
1225
- "strokeWidth": 2,
1226
- "roughness": 0,
1227
- "opacity": 100,
1228
- "groupIds": [],
1229
- "startBinding": {
1230
- "elementId": "proc-validate-prd",
1231
- "focus": 0,
1232
- "gap": 1
1233
- },
1234
- "endBinding": {
1235
- "elementId": "decision-has-ui",
1236
- "focus": 0,
1237
- "gap": 1
1238
- },
1239
- "points": [
1240
- [
1241
- 0,
1242
- 0
1243
- ],
1244
- [
1245
- 0,
1246
- 30
1247
- ]
1248
- ],
1249
- "lastCommittedPoint": null,
1250
- "version": 2,
1251
- "versionNonce": 1369541557,
1252
- "index": "aS",
1253
- "isDeleted": false,
1254
- "strokeStyle": "solid",
1255
- "seed": 1,
1256
- "frameId": null,
1257
- "roundness": null,
1258
- "boundElements": [],
1259
- "updated": 1763522171080,
1260
- "link": null,
1261
- "locked": false,
1262
- "startArrowhead": null,
1263
- "endArrowhead": "arrow"
1264
- },
1265
1110
  {
1266
1111
  "id": "decision-has-ui",
1267
1112
  "type": "diamond",
@@ -1286,7 +1131,7 @@
1286
1131
  },
1287
1132
  {
1288
1133
  "type": "arrow",
1289
- "id": "arrow-validate-prd-hasui"
1134
+ "id": "arrow-prd-hasui"
1290
1135
  },
1291
1136
  {
1292
1137
  "type": "arrow",
@@ -1298,15 +1143,15 @@
1298
1143
  }
1299
1144
  ],
1300
1145
  "locked": false,
1301
- "version": 2,
1302
- "versionNonce": 1003877915,
1146
+ "version": 3,
1147
+ "versionNonce": 1003877916,
1303
1148
  "index": "aT",
1304
1149
  "isDeleted": false,
1305
1150
  "strokeStyle": "solid",
1306
1151
  "seed": 1,
1307
1152
  "frameId": null,
1308
1153
  "roundness": null,
1309
- "updated": 1763522171080,
1154
+ "updated": 1764952855000,
1310
1155
  "link": null
1311
1156
  },
1312
1157
  {
@@ -1524,10 +1369,10 @@
1524
1369
  {
1525
1370
  "id": "arrow-has-ui-no",
1526
1371
  "type": "arrow",
1527
- "x": 520,
1528
- "y": 520,
1529
- "width": 140,
1530
- "height": 0,
1372
+ "x": 517.6863546461885,
1373
+ "y": 287.4640953051147,
1374
+ "width": 158.4487370618814,
1375
+ "height": 25.521141112371026,
1531
1376
  "angle": 0,
1532
1377
  "strokeColor": "#1976d2",
1533
1378
  "backgroundColor": "transparent",
@@ -1537,14 +1382,14 @@
1537
1382
  "opacity": 100,
1538
1383
  "groupIds": [],
1539
1384
  "startBinding": {
1540
- "elementId": "decision-has-ui",
1541
- "focus": 0,
1542
- "gap": 1
1385
+ "elementId": "proc-prd",
1386
+ "focus": -0.13686633304390483,
1387
+ "gap": 1.6107300760746739
1543
1388
  },
1544
1389
  "endBinding": {
1545
1390
  "elementId": "proc-architecture",
1546
- "focus": -0.3,
1547
- "gap": 1
1391
+ "focus": 0.16050512337240405,
1392
+ "gap": 6.573819526326588
1548
1393
  },
1549
1394
  "points": [
1550
1395
  [
@@ -1552,25 +1397,36 @@
1552
1397
  0
1553
1398
  ],
1554
1399
  [
1555
- 140,
1556
- 0
1400
+ 65.15287677643596,
1401
+ 2.2657676476494544
1402
+ ],
1403
+ [
1404
+ 111.59197355857077,
1405
+ 25.521141112371026
1406
+ ],
1407
+ [
1408
+ 158.4487370618814,
1409
+ 24.060724236900796
1557
1410
  ]
1558
1411
  ],
1559
1412
  "lastCommittedPoint": null,
1560
- "version": 2,
1561
- "versionNonce": 26036219,
1413
+ "version": 831,
1414
+ "versionNonce": 1382987110,
1562
1415
  "index": "aZ",
1563
1416
  "isDeleted": false,
1564
1417
  "strokeStyle": "solid",
1565
1418
  "seed": 1,
1566
1419
  "frameId": null,
1567
- "roundness": null,
1420
+ "roundness": {
1421
+ "type": 2
1422
+ },
1568
1423
  "boundElements": [],
1569
- "updated": 1763522171080,
1424
+ "updated": 1764191570205,
1570
1425
  "link": null,
1571
1426
  "locked": false,
1572
1427
  "startArrowhead": null,
1573
- "endArrowhead": "arrow"
1428
+ "endArrowhead": "arrow",
1429
+ "elbowed": false
1574
1430
  },
1575
1431
  {
1576
1432
  "id": "label-no-ui",
@@ -1593,16 +1449,21 @@
1593
1449
  "textAlign": "left",
1594
1450
  "verticalAlign": "top",
1595
1451
  "locked": false,
1596
- "version": 2,
1597
- "versionNonce": 516393269,
1452
+ "version": 5,
1453
+ "versionNonce": 183981370,
1598
1454
  "index": "aa",
1599
1455
  "isDeleted": false,
1600
1456
  "strokeStyle": "solid",
1601
1457
  "seed": 1,
1602
1458
  "frameId": null,
1603
1459
  "roundness": null,
1604
- "boundElements": [],
1605
- "updated": 1763522171080,
1460
+ "boundElements": [
1461
+ {
1462
+ "id": "arrow-has-ui-no",
1463
+ "type": "arrow"
1464
+ }
1465
+ ],
1466
+ "updated": 1764191508105,
1606
1467
  "link": null,
1607
1468
  "containerId": null,
1608
1469
  "originalText": "No",
@@ -1612,10 +1473,10 @@
1612
1473
  {
1613
1474
  "id": "arrow-ux-to-phase3",
1614
1475
  "type": "arrow",
1615
- "x": 520,
1616
- "y": 640,
1617
- "width": 140,
1618
- "height": 0,
1476
+ "x": 523.3221723982787,
1477
+ "y": 642.0805139439535,
1478
+ "width": 158.4945254931572,
1479
+ "height": 296.63050159541245,
1619
1480
  "angle": 0,
1620
1481
  "strokeColor": "#1976d2",
1621
1482
  "backgroundColor": "transparent",
@@ -1626,12 +1487,12 @@
1626
1487
  "groupIds": [],
1627
1488
  "startBinding": {
1628
1489
  "elementId": "proc-ux-design",
1629
- "focus": 0,
1630
- "gap": 1
1490
+ "focus": 0.5906867967554547,
1491
+ "gap": 3.322172398278667
1631
1492
  },
1632
1493
  "endBinding": {
1633
1494
  "elementId": "proc-architecture",
1634
- "focus": 0.3,
1495
+ "focus": 0.3856343135512404,
1635
1496
  "gap": 1
1636
1497
  },
1637
1498
  "points": [
@@ -1640,31 +1501,42 @@
1640
1501
  0
1641
1502
  ],
1642
1503
  [
1643
- 140,
1644
- 0
1504
+ 76.98345162139776,
1505
+ -45.99075822656016
1506
+ ],
1507
+ [
1508
+ 116.19277860378315,
1509
+ -258.3973533698057
1510
+ ],
1511
+ [
1512
+ 158.4945254931572,
1513
+ -296.63050159541245
1645
1514
  ]
1646
1515
  ],
1647
1516
  "lastCommittedPoint": null,
1648
- "version": 2,
1649
- "versionNonce": 976785563,
1517
+ "version": 328,
1518
+ "versionNonce": 517434918,
1650
1519
  "index": "ab",
1651
1520
  "isDeleted": false,
1652
1521
  "strokeStyle": "solid",
1653
1522
  "seed": 1,
1654
1523
  "frameId": null,
1655
- "roundness": null,
1524
+ "roundness": {
1525
+ "type": 2
1526
+ },
1656
1527
  "boundElements": [],
1657
- "updated": 1763522171080,
1528
+ "updated": 1764191529677,
1658
1529
  "link": null,
1659
1530
  "locked": false,
1660
1531
  "startArrowhead": null,
1661
- "endArrowhead": "arrow"
1662
- },
1532
+ "endArrowhead": "arrow",
1533
+ "elbowed": false
1534
+ },
1663
1535
  {
1664
1536
  "id": "phase3-header",
1665
1537
  "type": "text",
1666
- "x": 660,
1667
- "y": 180,
1538
+ "x": 709.0199784799299,
1539
+ "y": 181.88359184111607,
1668
1540
  "width": 200,
1669
1541
  "height": 30,
1670
1542
  "angle": 0,
@@ -1681,8 +1553,8 @@
1681
1553
  "textAlign": "left",
1682
1554
  "verticalAlign": "top",
1683
1555
  "locked": false,
1684
- "version": 2,
1685
- "versionNonce": 264936085,
1556
+ "version": 32,
1557
+ "versionNonce": 1258326202,
1686
1558
  "index": "ac",
1687
1559
  "isDeleted": false,
1688
1560
  "strokeStyle": "solid",
@@ -1690,7 +1562,7 @@
1690
1562
  "frameId": null,
1691
1563
  "roundness": null,
1692
1564
  "boundElements": [],
1693
- "updated": 1763522171080,
1565
+ "updated": 1764190667244,
1694
1566
  "link": null,
1695
1567
  "containerId": null,
1696
1568
  "originalText": "PHASE 3",
@@ -1700,8 +1572,8 @@
1700
1572
  {
1701
1573
  "id": "phase3-subtitle",
1702
1574
  "type": "text",
1703
- "x": 660,
1704
- "y": 210,
1575
+ "x": 687.4485256281371,
1576
+ "y": 215.63080811867223,
1705
1577
  "width": 220,
1706
1578
  "height": 20,
1707
1579
  "angle": 0,
@@ -1718,8 +1590,8 @@
1718
1590
  "textAlign": "left",
1719
1591
  "verticalAlign": "top",
1720
1592
  "locked": false,
1721
- "version": 2,
1722
- "versionNonce": 464635195,
1593
+ "version": 35,
1594
+ "versionNonce": 360954426,
1723
1595
  "index": "ad",
1724
1596
  "isDeleted": false,
1725
1597
  "strokeStyle": "solid",
@@ -1727,7 +1599,7 @@
1727
1599
  "frameId": null,
1728
1600
  "roundness": null,
1729
1601
  "boundElements": [],
1730
- "updated": 1763522171080,
1602
+ "updated": 1764190669111,
1731
1603
  "link": null,
1732
1604
  "containerId": null,
1733
1605
  "originalText": "Solutioning (Required)",
@@ -1737,8 +1609,8 @@
1737
1609
  {
1738
1610
  "id": "proc-architecture",
1739
1611
  "type": "rectangle",
1740
- "x": 680,
1741
- "y": 480,
1612
+ "x": 682.7089112343965,
1613
+ "y": 275.64692474279855,
1742
1614
  "width": 160,
1743
1615
  "height": 80,
1744
1616
  "angle": 0,
@@ -1760,10 +1632,6 @@
1760
1632
  "type": "text",
1761
1633
  "id": "proc-architecture-text"
1762
1634
  },
1763
- {
1764
- "type": "arrow",
1765
- "id": "arrow-has-ui-no"
1766
- },
1767
1635
  {
1768
1636
  "type": "arrow",
1769
1637
  "id": "arrow-ux-to-phase3"
@@ -1771,24 +1639,28 @@
1771
1639
  {
1772
1640
  "type": "arrow",
1773
1641
  "id": "arrow-arch-epics"
1642
+ },
1643
+ {
1644
+ "id": "arrow-has-ui-no",
1645
+ "type": "arrow"
1774
1646
  }
1775
1647
  ],
1776
1648
  "locked": false,
1777
- "version": 2,
1778
- "versionNonce": 86278133,
1649
+ "version": 90,
1650
+ "versionNonce": 1912262330,
1779
1651
  "index": "ae",
1780
1652
  "isDeleted": false,
1781
1653
  "strokeStyle": "solid",
1782
1654
  "seed": 1,
1783
1655
  "frameId": null,
1784
- "updated": 1763522171080,
1656
+ "updated": 1764191508105,
1785
1657
  "link": null
1786
1658
  },
1787
1659
  {
1788
1660
  "id": "proc-architecture-text",
1789
1661
  "type": "text",
1790
- "x": 690,
1791
- "y": 508,
1662
+ "x": 692.7089112343965,
1663
+ "y": 303.64692474279855,
1792
1664
  "width": 140,
1793
1665
  "height": 25,
1794
1666
  "angle": 0,
@@ -1808,8 +1680,8 @@
1808
1680
  "verticalAlign": "middle",
1809
1681
  "containerId": "proc-architecture",
1810
1682
  "locked": false,
1811
- "version": 2,
1812
- "versionNonce": 760964571,
1683
+ "version": 88,
1684
+ "versionNonce": 452440186,
1813
1685
  "index": "af",
1814
1686
  "isDeleted": false,
1815
1687
  "strokeStyle": "solid",
@@ -1817,7 +1689,7 @@
1817
1689
  "frameId": null,
1818
1690
  "roundness": null,
1819
1691
  "boundElements": [],
1820
- "updated": 1763522171080,
1692
+ "updated": 1764191451669,
1821
1693
  "link": null,
1822
1694
  "originalText": "Architecture",
1823
1695
  "autoResize": true,
@@ -1826,10 +1698,10 @@
1826
1698
  {
1827
1699
  "id": "arrow-arch-epics",
1828
1700
  "type": "arrow",
1829
- "x": 760,
1830
- "y": 560,
1831
- "width": 0,
1832
- "height": 30,
1701
+ "x": 760.6640738654764,
1702
+ "y": 358.02872135607737,
1703
+ "width": 0.007789277755136936,
1704
+ "height": 35.679359419065065,
1833
1705
  "angle": 0,
1834
1706
  "strokeColor": "#1976d2",
1835
1707
  "backgroundColor": "transparent",
@@ -1840,13 +1712,13 @@
1840
1712
  "groupIds": [],
1841
1713
  "startBinding": {
1842
1714
  "elementId": "proc-architecture",
1843
- "focus": 0,
1844
- "gap": 1
1715
+ "focus": 0.025673321057619772,
1716
+ "gap": 2.381796613278823
1845
1717
  },
1846
1718
  "endBinding": {
1847
- "elementId": "proc-epics",
1848
- "focus": 0,
1849
- "gap": 1
1719
+ "elementId": "proc-validate-arch",
1720
+ "focus": -0.09156227842994098,
1721
+ "gap": 2.5273595258319688
1850
1722
  },
1851
1723
  "points": [
1852
1724
  [
@@ -1854,13 +1726,13 @@
1854
1726
  0
1855
1727
  ],
1856
1728
  [
1857
- 0,
1858
- 30
1729
+ 0.007789277755136936,
1730
+ 35.679359419065065
1859
1731
  ]
1860
1732
  ],
1861
1733
  "lastCommittedPoint": null,
1862
- "version": 2,
1863
- "versionNonce": 1960491349,
1734
+ "version": 549,
1735
+ "versionNonce": 1665519674,
1864
1736
  "index": "ag",
1865
1737
  "isDeleted": false,
1866
1738
  "strokeStyle": "solid",
@@ -1868,7 +1740,7 @@
1868
1740
  "frameId": null,
1869
1741
  "roundness": null,
1870
1742
  "boundElements": [],
1871
- "updated": 1763522171080,
1743
+ "updated": 1764191459184,
1872
1744
  "link": null,
1873
1745
  "locked": false,
1874
1746
  "startArrowhead": null,
@@ -1877,8 +1749,8 @@
1877
1749
  {
1878
1750
  "id": "proc-epics",
1879
1751
  "type": "rectangle",
1880
- "x": 680,
1881
- "y": 590,
1752
+ "x": 670.1028230821919,
1753
+ "y": 510.76268244350774,
1882
1754
  "width": 160,
1883
1755
  "height": 80,
1884
1756
  "angle": 0,
@@ -1907,24 +1779,28 @@
1907
1779
  {
1908
1780
  "type": "arrow",
1909
1781
  "id": "arrow-epics-test"
1782
+ },
1783
+ {
1784
+ "id": "arrow-validate-ready",
1785
+ "type": "arrow"
1910
1786
  }
1911
1787
  ],
1912
1788
  "locked": false,
1913
- "version": 2,
1914
- "versionNonce": 1715991163,
1789
+ "version": 178,
1790
+ "versionNonce": 1597058278,
1915
1791
  "index": "ah",
1916
1792
  "isDeleted": false,
1917
1793
  "strokeStyle": "solid",
1918
1794
  "seed": 1,
1919
1795
  "frameId": null,
1920
- "updated": 1763522171080,
1796
+ "updated": 1764191442604,
1921
1797
  "link": null
1922
1798
  },
1923
1799
  {
1924
1800
  "id": "proc-epics-text",
1925
1801
  "type": "text",
1926
- "x": 690,
1927
- "y": 618,
1802
+ "x": 680.1028230821919,
1803
+ "y": 538.7626824435077,
1928
1804
  "width": 140,
1929
1805
  "height": 25,
1930
1806
  "angle": 0,
@@ -1944,8 +1820,8 @@
1944
1820
  "verticalAlign": "middle",
1945
1821
  "containerId": "proc-epics",
1946
1822
  "locked": false,
1947
- "version": 2,
1948
- "versionNonce": 2017642165,
1823
+ "version": 177,
1824
+ "versionNonce": 2105920614,
1949
1825
  "index": "ai",
1950
1826
  "isDeleted": false,
1951
1827
  "strokeStyle": "solid",
@@ -1953,7 +1829,7 @@
1953
1829
  "frameId": null,
1954
1830
  "roundness": null,
1955
1831
  "boundElements": [],
1956
- "updated": 1763522171080,
1832
+ "updated": 1764191427908,
1957
1833
  "link": null,
1958
1834
  "originalText": "Epics/Stories",
1959
1835
  "autoResize": true,
@@ -1962,10 +1838,10 @@
1962
1838
  {
1963
1839
  "id": "arrow-epics-test",
1964
1840
  "type": "arrow",
1965
- "x": 760,
1966
- "y": 670,
1967
- "width": 0,
1968
- "height": 30,
1841
+ "x": 750.5489606775325,
1842
+ "y": 591.2142966047594,
1843
+ "width": 0.4387418927216231,
1844
+ "height": 60.43894121748178,
1969
1845
  "angle": 0,
1970
1846
  "strokeColor": "#1976d2",
1971
1847
  "backgroundColor": "transparent",
@@ -1990,13 +1866,13 @@
1990
1866
  0
1991
1867
  ],
1992
1868
  [
1993
- 0,
1994
- 30
1869
+ 0.4387418927216231,
1870
+ 60.43894121748178
1995
1871
  ]
1996
1872
  ],
1997
1873
  "lastCommittedPoint": null,
1998
- "version": 2,
1999
- "versionNonce": 926542619,
1874
+ "version": 358,
1875
+ "versionNonce": 1168009958,
2000
1876
  "index": "aj",
2001
1877
  "isDeleted": false,
2002
1878
  "strokeStyle": "solid",
@@ -2004,7 +1880,7 @@
2004
1880
  "frameId": null,
2005
1881
  "roundness": null,
2006
1882
  "boundElements": [],
2007
- "updated": 1763522171080,
1883
+ "updated": 1764191427908,
2008
1884
  "link": null,
2009
1885
  "locked": false,
2010
1886
  "startArrowhead": null,
@@ -2013,8 +1889,8 @@
2013
1889
  {
2014
1890
  "id": "proc-test-design",
2015
1891
  "type": "rectangle",
2016
- "x": 680,
2017
- "y": 700,
1892
+ "x": 671.2209977440557,
1893
+ "y": 652.1048519834928,
2018
1894
  "width": 160,
2019
1895
  "height": 80,
2020
1896
  "angle": 0,
@@ -2046,22 +1922,22 @@
2046
1922
  }
2047
1923
  ],
2048
1924
  "locked": false,
2049
- "version": 2,
2050
- "versionNonce": 1644308501,
1925
+ "version": 124,
1926
+ "versionNonce": 456543462,
2051
1927
  "index": "ak",
2052
1928
  "isDeleted": false,
2053
1929
  "strokeStyle": "solid",
2054
1930
  "seed": 1,
2055
1931
  "frameId": null,
2056
- "updated": 1763522171080,
1932
+ "updated": 1764191425140,
2057
1933
  "link": null
2058
1934
  },
2059
1935
  {
2060
1936
  "id": "proc-test-design-text",
2061
1937
  "type": "text",
2062
- "x": 690,
2063
- "y": 715,
2064
- "width": 140,
1938
+ "x": 709.1090363793096,
1939
+ "y": 667.1048519834928,
1940
+ "width": 84.22392272949219,
2065
1941
  "height": 50,
2066
1942
  "angle": 0,
2067
1943
  "strokeColor": "#1e1e1e",
@@ -2075,13 +1951,13 @@
2075
1951
  ],
2076
1952
  "fontSize": 14,
2077
1953
  "fontFamily": 1,
2078
- "text": "Test Design\n<<recommended>>",
1954
+ "text": "Test Design\n<<optional>>",
2079
1955
  "textAlign": "center",
2080
1956
  "verticalAlign": "middle",
2081
1957
  "containerId": "proc-test-design",
2082
1958
  "locked": false,
2083
- "version": 2,
2084
- "versionNonce": 1420021691,
1959
+ "version": 133,
1960
+ "versionNonce": 1038598182,
2085
1961
  "index": "al",
2086
1962
  "isDeleted": false,
2087
1963
  "strokeStyle": "solid",
@@ -2089,19 +1965,19 @@
2089
1965
  "frameId": null,
2090
1966
  "roundness": null,
2091
1967
  "boundElements": [],
2092
- "updated": 1763522171080,
1968
+ "updated": 1764191425140,
2093
1969
  "link": null,
2094
- "originalText": "Test Design\n<<recommended>>",
1970
+ "originalText": "Test Design\n<<optional>>",
2095
1971
  "autoResize": true,
2096
1972
  "lineHeight": 1.7857142857142858
2097
1973
  },
2098
1974
  {
2099
1975
  "id": "arrow-test-validate",
2100
1976
  "type": "arrow",
2101
- "x": 760,
2102
- "y": 780,
2103
- "width": 0,
2104
- "height": 30,
1977
+ "x": 742.3164554890545,
1978
+ "y": 732.7428812826017,
1979
+ "width": 0.2331013464803391,
1980
+ "height": 41.16039866169126,
2105
1981
  "angle": 0,
2106
1982
  "strokeColor": "#1976d2",
2107
1983
  "backgroundColor": "transparent",
@@ -2112,13 +1988,13 @@
2112
1988
  "groupIds": [],
2113
1989
  "startBinding": {
2114
1990
  "elementId": "proc-test-design",
2115
- "focus": 0,
2116
- "gap": 1
1991
+ "focus": 0.11090307971902064,
1992
+ "gap": 1.407314849962063
2117
1993
  },
2118
1994
  "endBinding": {
2119
- "elementId": "proc-validate-arch",
2120
- "focus": 0,
2121
- "gap": 1
1995
+ "elementId": "proc-impl-ready",
1996
+ "focus": -0.07891534010655449,
1997
+ "gap": 6.845537084300759
2122
1998
  },
2123
1999
  "points": [
2124
2000
  [
@@ -2126,13 +2002,13 @@
2126
2002
  0
2127
2003
  ],
2128
2004
  [
2129
- 0,
2130
- 30
2005
+ 0.2331013464803391,
2006
+ 41.16039866169126
2131
2007
  ]
2132
2008
  ],
2133
2009
  "lastCommittedPoint": null,
2134
- "version": 2,
2135
- "versionNonce": 336485749,
2010
+ "version": 482,
2011
+ "versionNonce": 362456762,
2136
2012
  "index": "am",
2137
2013
  "isDeleted": false,
2138
2014
  "strokeStyle": "solid",
@@ -2140,7 +2016,7 @@
2140
2016
  "frameId": null,
2141
2017
  "roundness": null,
2142
2018
  "boundElements": [],
2143
- "updated": 1763522171080,
2019
+ "updated": 1764191475964,
2144
2020
  "link": null,
2145
2021
  "locked": false,
2146
2022
  "startArrowhead": null,
@@ -2149,8 +2025,8 @@
2149
2025
  {
2150
2026
  "id": "proc-validate-arch",
2151
2027
  "type": "rectangle",
2152
- "x": 680,
2153
- "y": 810,
2028
+ "x": 688.0069292751327,
2029
+ "y": 396.2354403009744,
2154
2030
  "width": 160,
2155
2031
  "height": 80,
2156
2032
  "angle": 0,
@@ -2179,24 +2055,28 @@
2179
2055
  {
2180
2056
  "type": "arrow",
2181
2057
  "id": "arrow-validate-ready"
2058
+ },
2059
+ {
2060
+ "id": "arrow-arch-epics",
2061
+ "type": "arrow"
2182
2062
  }
2183
2063
  ],
2184
2064
  "locked": false,
2185
- "version": 2,
2186
- "versionNonce": 1084760155,
2065
+ "version": 234,
2066
+ "versionNonce": 940473658,
2187
2067
  "index": "an",
2188
2068
  "isDeleted": false,
2189
2069
  "strokeStyle": "solid",
2190
2070
  "seed": 1,
2191
2071
  "frameId": null,
2192
- "updated": 1763522171080,
2072
+ "updated": 1764191449834,
2193
2073
  "link": null
2194
2074
  },
2195
2075
  {
2196
2076
  "id": "proc-validate-arch-text",
2197
2077
  "type": "text",
2198
- "x": 690,
2199
- "y": 825,
2078
+ "x": 698.0069292751327,
2079
+ "y": 411.2354403009744,
2200
2080
  "width": 140,
2201
2081
  "height": 50,
2202
2082
  "angle": 0,
@@ -2216,8 +2096,8 @@
2216
2096
  "verticalAlign": "middle",
2217
2097
  "containerId": "proc-validate-arch",
2218
2098
  "locked": false,
2219
- "version": 2,
2220
- "versionNonce": 363652821,
2099
+ "version": 233,
2100
+ "versionNonce": 41862650,
2221
2101
  "index": "ao",
2222
2102
  "isDeleted": false,
2223
2103
  "strokeStyle": "solid",
@@ -2225,7 +2105,7 @@
2225
2105
  "frameId": null,
2226
2106
  "roundness": null,
2227
2107
  "boundElements": [],
2228
- "updated": 1763522171080,
2108
+ "updated": 1764191449834,
2229
2109
  "link": null,
2230
2110
  "originalText": "Validate Arch\n<<optional>>",
2231
2111
  "autoResize": true,
@@ -2234,10 +2114,10 @@
2234
2114
  {
2235
2115
  "id": "arrow-validate-ready",
2236
2116
  "type": "arrow",
2237
- "x": 760,
2238
- "y": 890,
2239
- "width": 0,
2240
- "height": 30,
2117
+ "x": 756.1926048905458,
2118
+ "y": 477.82525825285865,
2119
+ "width": 2.6030810941729214,
2120
+ "height": 34.90186599521081,
2241
2121
  "angle": 0,
2242
2122
  "strokeColor": "#1976d2",
2243
2123
  "backgroundColor": "transparent",
@@ -2248,13 +2128,13 @@
2248
2128
  "groupIds": [],
2249
2129
  "startBinding": {
2250
2130
  "elementId": "proc-validate-arch",
2251
- "focus": 0,
2252
- "gap": 1
2131
+ "focus": 0.10499022285337105,
2132
+ "gap": 1.5898179518842426
2253
2133
  },
2254
2134
  "endBinding": {
2255
- "elementId": "proc-impl-ready",
2256
- "focus": 0,
2257
- "gap": 1
2135
+ "elementId": "proc-epics",
2136
+ "focus": 0.007831693483179265,
2137
+ "gap": 1.9644418045617158
2258
2138
  },
2259
2139
  "points": [
2260
2140
  [
@@ -2262,13 +2142,13 @@
2262
2142
  0
2263
2143
  ],
2264
2144
  [
2265
- 0,
2266
- 30
2145
+ -2.6030810941729214,
2146
+ 34.90186599521081
2267
2147
  ]
2268
2148
  ],
2269
2149
  "lastCommittedPoint": null,
2270
- "version": 2,
2271
- "versionNonce": 353983739,
2150
+ "version": 527,
2151
+ "versionNonce": 679932090,
2272
2152
  "index": "ap",
2273
2153
  "isDeleted": false,
2274
2154
  "strokeStyle": "solid",
@@ -2276,7 +2156,7 @@
2276
2156
  "frameId": null,
2277
2157
  "roundness": null,
2278
2158
  "boundElements": [],
2279
- "updated": 1763522171080,
2159
+ "updated": 1764191469649,
2280
2160
  "link": null,
2281
2161
  "locked": false,
2282
2162
  "startArrowhead": null,
@@ -2285,8 +2165,8 @@
2285
2165
  {
2286
2166
  "id": "proc-impl-ready",
2287
2167
  "type": "rectangle",
2288
- "x": 680,
2289
- "y": 920,
2168
+ "x": 669.3773407122919,
2169
+ "y": 777.1531869468762,
2290
2170
  "width": 160,
2291
2171
  "height": 80,
2292
2172
  "angle": 0,
@@ -2315,24 +2195,28 @@
2315
2195
  {
2316
2196
  "type": "arrow",
2317
2197
  "id": "arrow-phase3-to-phase4"
2198
+ },
2199
+ {
2200
+ "id": "arrow-test-validate",
2201
+ "type": "arrow"
2318
2202
  }
2319
2203
  ],
2320
2204
  "locked": false,
2321
- "version": 2,
2322
- "versionNonce": 1769161781,
2205
+ "version": 102,
2206
+ "versionNonce": 1799933050,
2323
2207
  "index": "aq",
2324
2208
  "isDeleted": false,
2325
2209
  "strokeStyle": "solid",
2326
2210
  "seed": 1,
2327
2211
  "frameId": null,
2328
- "updated": 1763522171080,
2212
+ "updated": 1764191475963,
2329
2213
  "link": null
2330
2214
  },
2331
2215
  {
2332
2216
  "id": "proc-impl-ready-text",
2333
2217
  "type": "text",
2334
- "x": 690,
2335
- "y": 935,
2218
+ "x": 679.3773407122919,
2219
+ "y": 792.1531869468762,
2336
2220
  "width": 140,
2337
2221
  "height": 50,
2338
2222
  "angle": 0,
@@ -2352,8 +2236,8 @@
2352
2236
  "verticalAlign": "middle",
2353
2237
  "containerId": "proc-impl-ready",
2354
2238
  "locked": false,
2355
- "version": 2,
2356
- "versionNonce": 226100635,
2239
+ "version": 101,
2240
+ "versionNonce": 1345137978,
2357
2241
  "index": "ar",
2358
2242
  "isDeleted": false,
2359
2243
  "strokeStyle": "solid",
@@ -2361,7 +2245,7 @@
2361
2245
  "frameId": null,
2362
2246
  "roundness": null,
2363
2247
  "boundElements": [],
2364
- "updated": 1763522171080,
2248
+ "updated": 1764191475963,
2365
2249
  "link": null,
2366
2250
  "originalText": "Implementation\nReadiness",
2367
2251
  "autoResize": true,
@@ -2370,10 +2254,10 @@
2370
2254
  {
2371
2255
  "id": "arrow-phase3-to-phase4",
2372
2256
  "type": "arrow",
2373
- "x": 840,
2374
- "y": 960,
2375
- "width": 180,
2376
- "height": 0,
2257
+ "x": 832.3758366994932,
2258
+ "y": 828.1314512149465,
2259
+ "width": 332.79883769023445,
2260
+ "height": 519.9927682908395,
2377
2261
  "angle": 0,
2378
2262
  "strokeColor": "#1976d2",
2379
2263
  "backgroundColor": "transparent",
@@ -2384,13 +2268,13 @@
2384
2268
  "groupIds": [],
2385
2269
  "startBinding": {
2386
2270
  "elementId": "proc-impl-ready",
2387
- "focus": 0,
2388
- "gap": 1
2271
+ "focus": 0.8094917779899522,
2272
+ "gap": 3.380037483859951
2389
2273
  },
2390
2274
  "endBinding": {
2391
2275
  "elementId": "proc-sprint-planning",
2392
- "focus": 0,
2393
- "gap": 1
2276
+ "focus": 0.538276991056649,
2277
+ "gap": 1.1436349518342013
2394
2278
  },
2395
2279
  "points": [
2396
2280
  [
@@ -2398,31 +2282,42 @@
2398
2282
  0
2399
2283
  ],
2400
2284
  [
2401
- 180,
2402
- 0
2285
+ 80.82567439689569,
2286
+ -94.83900216621896
2287
+ ],
2288
+ [
2289
+ 159.28426317101867,
2290
+ -458.225799867337
2291
+ ],
2292
+ [
2293
+ 332.79883769023445,
2294
+ -519.9927682908395
2403
2295
  ]
2404
2296
  ],
2405
2297
  "lastCommittedPoint": null,
2406
- "version": 2,
2407
- "versionNonce": 591852949,
2298
+ "version": 1116,
2299
+ "versionNonce": 55014906,
2408
2300
  "index": "as",
2409
2301
  "isDeleted": false,
2410
2302
  "strokeStyle": "solid",
2411
2303
  "seed": 1,
2412
2304
  "frameId": null,
2413
- "roundness": null,
2305
+ "roundness": {
2306
+ "type": 2
2307
+ },
2414
2308
  "boundElements": [],
2415
- "updated": 1763522171080,
2309
+ "updated": 1764191475964,
2416
2310
  "link": null,
2417
2311
  "locked": false,
2418
2312
  "startArrowhead": null,
2419
- "endArrowhead": "arrow"
2313
+ "endArrowhead": "arrow",
2314
+ "elbowed": false
2420
2315
  },
2421
2316
  {
2422
2317
  "id": "phase4-header",
2423
2318
  "type": "text",
2424
- "x": 1020,
2425
- "y": 180,
2319
+ "x": 1175.3730315866237,
2320
+ "y": 167.81322734599433,
2426
2321
  "width": 200,
2427
2322
  "height": 30,
2428
2323
  "angle": 0,
@@ -2439,8 +2334,8 @@
2439
2334
  "textAlign": "left",
2440
2335
  "verticalAlign": "top",
2441
2336
  "locked": false,
2442
- "version": 2,
2443
- "versionNonce": 1358731835,
2337
+ "version": 271,
2338
+ "versionNonce": 866534438,
2444
2339
  "index": "at",
2445
2340
  "isDeleted": false,
2446
2341
  "strokeStyle": "solid",
@@ -2448,7 +2343,7 @@
2448
2343
  "frameId": null,
2449
2344
  "roundness": null,
2450
2345
  "boundElements": [],
2451
- "updated": 1763522171080,
2346
+ "updated": 1764190763204,
2452
2347
  "link": null,
2453
2348
  "containerId": null,
2454
2349
  "originalText": "PHASE 4",
@@ -2458,8 +2353,8 @@
2458
2353
  {
2459
2354
  "id": "phase4-subtitle",
2460
2355
  "type": "text",
2461
- "x": 1020,
2462
- "y": 210,
2356
+ "x": 1139.1188804963076,
2357
+ "y": 204.18282943768378,
2463
2358
  "width": 260,
2464
2359
  "height": 20,
2465
2360
  "angle": 0,
@@ -2476,8 +2371,8 @@
2476
2371
  "textAlign": "left",
2477
2372
  "verticalAlign": "top",
2478
2373
  "locked": false,
2479
- "version": 2,
2480
- "versionNonce": 1046313717,
2374
+ "version": 238,
2375
+ "versionNonce": 198627174,
2481
2376
  "index": "au",
2482
2377
  "isDeleted": false,
2483
2378
  "strokeStyle": "solid",
@@ -2485,7 +2380,7 @@
2485
2380
  "frameId": null,
2486
2381
  "roundness": null,
2487
2382
  "boundElements": [],
2488
- "updated": 1763522171080,
2383
+ "updated": 1764190763204,
2489
2384
  "link": null,
2490
2385
  "containerId": null,
2491
2386
  "originalText": "Implementation (Required)",
@@ -2495,8 +2390,8 @@
2495
2390
  {
2496
2391
  "id": "proc-sprint-planning",
2497
2392
  "type": "rectangle",
2498
- "x": 1020,
2499
- "y": 920,
2393
+ "x": 1166.1946812371566,
2394
+ "y": 276.1576920193427,
2500
2395
  "width": 160,
2501
2396
  "height": 80,
2502
2397
  "angle": 0,
@@ -2523,26 +2418,26 @@
2523
2418
  "id": "arrow-phase3-to-phase4"
2524
2419
  },
2525
2420
  {
2526
- "type": "arrow",
2527
- "id": "arrow-sprint-epic"
2421
+ "id": "arrow-validate-epic-story",
2422
+ "type": "arrow"
2528
2423
  }
2529
2424
  ],
2530
2425
  "locked": false,
2531
- "version": 2,
2532
- "versionNonce": 2088999643,
2426
+ "version": 379,
2427
+ "versionNonce": 2085876390,
2533
2428
  "index": "av",
2534
2429
  "isDeleted": false,
2535
2430
  "strokeStyle": "solid",
2536
2431
  "seed": 1,
2537
2432
  "frameId": null,
2538
- "updated": 1763522171080,
2433
+ "updated": 1764190763204,
2539
2434
  "link": null
2540
2435
  },
2541
2436
  {
2542
2437
  "id": "proc-sprint-planning-text",
2543
2438
  "type": "text",
2544
- "x": 1030,
2545
- "y": 948,
2439
+ "x": 1176.1946812371566,
2440
+ "y": 304.1576920193427,
2546
2441
  "width": 140,
2547
2442
  "height": 25,
2548
2443
  "angle": 0,
@@ -2562,8 +2457,8 @@
2562
2457
  "verticalAlign": "middle",
2563
2458
  "containerId": "proc-sprint-planning",
2564
2459
  "locked": false,
2565
- "version": 2,
2566
- "versionNonce": 859591765,
2460
+ "version": 377,
2461
+ "versionNonce": 2143989222,
2567
2462
  "index": "aw",
2568
2463
  "isDeleted": false,
2569
2464
  "strokeStyle": "solid",
@@ -2571,21 +2466,21 @@
2571
2466
  "frameId": null,
2572
2467
  "roundness": null,
2573
2468
  "boundElements": [],
2574
- "updated": 1763522171080,
2469
+ "updated": 1764190763204,
2575
2470
  "link": null,
2576
2471
  "originalText": "Sprint Plan",
2577
2472
  "autoResize": true,
2578
2473
  "lineHeight": 1.25
2579
2474
  },
2580
2475
  {
2581
- "id": "label-epic-cycle",
2476
+ "id": "label-story-loop",
2582
2477
  "type": "text",
2583
- "x": 1020,
2584
- "y": 1030,
2585
- "width": 200,
2478
+ "x": 1176.2977877917795,
2479
+ "y": 441.904906795244,
2480
+ "width": 130.87991333007812,
2586
2481
  "height": 25,
2587
2482
  "angle": 0,
2588
- "strokeColor": "#6a1b9a",
2483
+ "strokeColor": "#e65100",
2589
2484
  "backgroundColor": "transparent",
2590
2485
  "fillStyle": "solid",
2591
2486
  "strokeWidth": 2,
@@ -2594,33 +2489,33 @@
2594
2489
  "groupIds": [],
2595
2490
  "fontSize": 20,
2596
2491
  "fontFamily": 1,
2597
- "text": " EPIC CYCLE",
2492
+ "text": "STORY LOOP",
2598
2493
  "textAlign": "left",
2599
2494
  "verticalAlign": "top",
2600
2495
  "locked": false,
2601
- "version": 2,
2602
- "versionNonce": 1822525307,
2603
- "index": "ax",
2496
+ "version": 603,
2497
+ "versionNonce": 40529830,
2498
+ "index": "b04",
2604
2499
  "isDeleted": false,
2605
2500
  "strokeStyle": "solid",
2606
2501
  "seed": 1,
2607
2502
  "frameId": null,
2608
2503
  "roundness": null,
2609
2504
  "boundElements": [],
2610
- "updated": 1763522171080,
2505
+ "updated": 1764190763204,
2611
2506
  "link": null,
2612
2507
  "containerId": null,
2613
- "originalText": " EPIC CYCLE",
2508
+ "originalText": "STORY LOOP",
2614
2509
  "autoResize": true,
2615
2510
  "lineHeight": 1.25
2616
2511
  },
2617
2512
  {
2618
- "id": "arrow-sprint-epic",
2513
+ "id": "arrow-validate-epic-story",
2619
2514
  "type": "arrow",
2620
- "x": 1100,
2621
- "y": 1000,
2622
- "width": 0,
2623
- "height": 70,
2515
+ "x": 1249.6597155437828,
2516
+ "y": 357.36880197268204,
2517
+ "width": 2.9293448190794606,
2518
+ "height": 208.61271744725804,
2624
2519
  "angle": 0,
2625
2520
  "strokeColor": "#1976d2",
2626
2521
  "backgroundColor": "transparent",
@@ -2631,12 +2526,12 @@
2631
2526
  "groupIds": [],
2632
2527
  "startBinding": {
2633
2528
  "elementId": "proc-sprint-planning",
2634
- "focus": 0,
2635
- "gap": 1
2529
+ "focus": -0.050194107916528306,
2530
+ "gap": 1.21110995333936
2636
2531
  },
2637
2532
  "endBinding": {
2638
- "elementId": "proc-epic-context",
2639
- "focus": 0,
2533
+ "elementId": "proc-create-story",
2534
+ "focus": -0.004614835874420464,
2640
2535
  "gap": 1
2641
2536
  },
2642
2537
  "points": [
@@ -2645,31 +2540,31 @@
2645
2540
  0
2646
2541
  ],
2647
2542
  [
2648
- 0,
2649
- 70
2543
+ -2.9293448190794606,
2544
+ 208.61271744725804
2650
2545
  ]
2651
2546
  ],
2652
2547
  "lastCommittedPoint": null,
2653
- "version": 2,
2654
- "versionNonce": 1303970229,
2655
- "index": "ay",
2548
+ "version": 951,
2549
+ "versionNonce": 1394233274,
2550
+ "index": "b05",
2656
2551
  "isDeleted": false,
2657
2552
  "strokeStyle": "solid",
2658
2553
  "seed": 1,
2659
2554
  "frameId": null,
2660
2555
  "roundness": null,
2661
2556
  "boundElements": [],
2662
- "updated": 1763522171080,
2557
+ "updated": 1764190763619,
2663
2558
  "link": null,
2664
2559
  "locked": false,
2665
2560
  "startArrowhead": null,
2666
2561
  "endArrowhead": "arrow"
2667
2562
  },
2668
2563
  {
2669
- "id": "proc-epic-context",
2564
+ "id": "proc-create-story",
2670
2565
  "type": "rectangle",
2671
- "x": 1020,
2672
- "y": 1070,
2566
+ "x": 1166.5341271166512,
2567
+ "y": 566.4331335811917,
2673
2568
  "width": 160,
2674
2569
  "height": 80,
2675
2570
  "angle": 0,
@@ -2684,38 +2579,42 @@
2684
2579
  "value": 8
2685
2580
  },
2686
2581
  "groupIds": [
2687
- "proc-epic-context-group"
2582
+ "proc-create-story-group"
2688
2583
  ],
2689
2584
  "boundElements": [
2690
2585
  {
2691
2586
  "type": "text",
2692
- "id": "proc-epic-context-text"
2587
+ "id": "proc-create-story-text"
2588
+ },
2589
+ {
2590
+ "type": "arrow",
2591
+ "id": "arrow-validate-epic-story"
2693
2592
  },
2694
2593
  {
2695
2594
  "type": "arrow",
2696
- "id": "arrow-sprint-epic"
2595
+ "id": "arrow-create-validate-story"
2697
2596
  },
2698
2597
  {
2699
2598
  "type": "arrow",
2700
- "id": "arrow-epic-validate-epic"
2599
+ "id": "arrow-more-stories-yes"
2701
2600
  }
2702
2601
  ],
2703
2602
  "locked": false,
2704
- "version": 2,
2705
- "versionNonce": 1201201179,
2706
- "index": "az",
2603
+ "version": 282,
2604
+ "versionNonce": 966999590,
2605
+ "index": "b06",
2707
2606
  "isDeleted": false,
2708
2607
  "strokeStyle": "solid",
2709
2608
  "seed": 1,
2710
2609
  "frameId": null,
2711
- "updated": 1763522171080,
2610
+ "updated": 1764190763204,
2712
2611
  "link": null
2713
2612
  },
2714
2613
  {
2715
- "id": "proc-epic-context-text",
2614
+ "id": "proc-create-story-text",
2716
2615
  "type": "text",
2717
- "x": 1030,
2718
- "y": 1098,
2616
+ "x": 1176.5341271166512,
2617
+ "y": 594.4331335811917,
2719
2618
  "width": 140,
2720
2619
  "height": 25,
2721
2620
  "angle": 0,
@@ -2726,35 +2625,35 @@
2726
2625
  "roughness": 0,
2727
2626
  "opacity": 100,
2728
2627
  "groupIds": [
2729
- "proc-epic-context-group"
2628
+ "proc-create-story-group"
2730
2629
  ],
2731
2630
  "fontSize": 20,
2732
2631
  "fontFamily": 1,
2733
- "text": "Epic Context",
2632
+ "text": "Create Story",
2734
2633
  "textAlign": "center",
2735
2634
  "verticalAlign": "middle",
2736
- "containerId": "proc-epic-context",
2635
+ "containerId": "proc-create-story",
2737
2636
  "locked": false,
2738
- "version": 2,
2739
- "versionNonce": 1123615509,
2740
- "index": "b00",
2637
+ "version": 282,
2638
+ "versionNonce": 2082769254,
2639
+ "index": "b07",
2741
2640
  "isDeleted": false,
2742
2641
  "strokeStyle": "solid",
2743
2642
  "seed": 1,
2744
2643
  "frameId": null,
2745
2644
  "roundness": null,
2746
2645
  "boundElements": [],
2747
- "updated": 1763522171080,
2646
+ "updated": 1764190763204,
2748
2647
  "link": null,
2749
- "originalText": "Epic Context",
2648
+ "originalText": "Create Story",
2750
2649
  "autoResize": true,
2751
2650
  "lineHeight": 1.25
2752
2651
  },
2753
2652
  {
2754
- "id": "arrow-epic-validate-epic",
2653
+ "id": "arrow-create-validate-story",
2755
2654
  "type": "arrow",
2756
- "x": 1100,
2757
- "y": 1150,
2655
+ "x": 1246.5341271166512,
2656
+ "y": 646.4331335811917,
2758
2657
  "width": 0,
2759
2658
  "height": 30,
2760
2659
  "angle": 0,
@@ -2766,12 +2665,12 @@
2766
2665
  "opacity": 100,
2767
2666
  "groupIds": [],
2768
2667
  "startBinding": {
2769
- "elementId": "proc-epic-context",
2668
+ "elementId": "proc-create-story",
2770
2669
  "focus": 0,
2771
2670
  "gap": 1
2772
2671
  },
2773
2672
  "endBinding": {
2774
- "elementId": "proc-validate-epic",
2673
+ "elementId": "proc-validate-story",
2775
2674
  "focus": 0,
2776
2675
  "gap": 1
2777
2676
  },
@@ -2786,26 +2685,26 @@
2786
2685
  ]
2787
2686
  ],
2788
2687
  "lastCommittedPoint": null,
2789
- "version": 2,
2790
- "versionNonce": 1197221051,
2791
- "index": "b01",
2688
+ "version": 848,
2689
+ "versionNonce": 1820404026,
2690
+ "index": "b08",
2792
2691
  "isDeleted": false,
2793
2692
  "strokeStyle": "solid",
2794
2693
  "seed": 1,
2795
2694
  "frameId": null,
2796
2695
  "roundness": null,
2797
2696
  "boundElements": [],
2798
- "updated": 1763522171080,
2697
+ "updated": 1764190763619,
2799
2698
  "link": null,
2800
2699
  "locked": false,
2801
2700
  "startArrowhead": null,
2802
2701
  "endArrowhead": "arrow"
2803
2702
  },
2804
2703
  {
2805
- "id": "proc-validate-epic",
2704
+ "id": "proc-validate-story",
2806
2705
  "type": "rectangle",
2807
- "x": 1020,
2808
- "y": 1180,
2706
+ "x": 1166.5341271166512,
2707
+ "y": 676.4331335811917,
2809
2708
  "width": 160,
2810
2709
  "height": 80,
2811
2710
  "angle": 0,
@@ -2820,38 +2719,38 @@
2820
2719
  "value": 8
2821
2720
  },
2822
2721
  "groupIds": [
2823
- "proc-validate-epic-group"
2722
+ "proc-validate-story-group"
2824
2723
  ],
2825
2724
  "boundElements": [
2826
2725
  {
2827
2726
  "type": "text",
2828
- "id": "proc-validate-epic-text"
2727
+ "id": "proc-validate-story-text"
2829
2728
  },
2830
2729
  {
2831
2730
  "type": "arrow",
2832
- "id": "arrow-epic-validate-epic"
2731
+ "id": "arrow-create-validate-story"
2833
2732
  },
2834
2733
  {
2835
2734
  "type": "arrow",
2836
- "id": "arrow-validate-epic-story"
2735
+ "id": "arrow-validate-story-decision"
2837
2736
  }
2838
2737
  ],
2839
2738
  "locked": false,
2840
- "version": 2,
2841
- "versionNonce": 124901493,
2842
- "index": "b02",
2739
+ "version": 282,
2740
+ "versionNonce": 282699366,
2741
+ "index": "b09",
2843
2742
  "isDeleted": false,
2844
2743
  "strokeStyle": "solid",
2845
2744
  "seed": 1,
2846
2745
  "frameId": null,
2847
- "updated": 1763522171080,
2746
+ "updated": 1764190763204,
2848
2747
  "link": null
2849
2748
  },
2850
2749
  {
2851
- "id": "proc-validate-epic-text",
2750
+ "id": "proc-validate-story-text",
2852
2751
  "type": "text",
2853
- "x": 1030,
2854
- "y": 1195,
2752
+ "x": 1176.5341271166512,
2753
+ "y": 691.4331335811917,
2855
2754
  "width": 140,
2856
2755
  "height": 50,
2857
2756
  "angle": 0,
@@ -2862,74 +2761,37 @@
2862
2761
  "roughness": 0,
2863
2762
  "opacity": 100,
2864
2763
  "groupIds": [
2865
- "proc-validate-epic-group"
2764
+ "proc-validate-story-group"
2866
2765
  ],
2867
2766
  "fontSize": 14,
2868
2767
  "fontFamily": 1,
2869
- "text": "Validate Epic\n<<optional>>",
2768
+ "text": "Validate Story\n<<optional>>",
2870
2769
  "textAlign": "center",
2871
2770
  "verticalAlign": "middle",
2872
- "containerId": "proc-validate-epic",
2771
+ "containerId": "proc-validate-story",
2873
2772
  "locked": false,
2874
- "version": 2,
2875
- "versionNonce": 1133368667,
2876
- "index": "b03",
2773
+ "version": 282,
2774
+ "versionNonce": 686025126,
2775
+ "index": "b0A",
2877
2776
  "isDeleted": false,
2878
2777
  "strokeStyle": "solid",
2879
2778
  "seed": 1,
2880
2779
  "frameId": null,
2881
2780
  "roundness": null,
2882
2781
  "boundElements": [],
2883
- "updated": 1763522171080,
2782
+ "updated": 1764190763204,
2884
2783
  "link": null,
2885
- "originalText": "Validate Epic\n<<optional>>",
2784
+ "originalText": "Validate Story\n<<optional>>",
2886
2785
  "autoResize": true,
2887
2786
  "lineHeight": 1.7857142857142858
2888
2787
  },
2889
2788
  {
2890
- "id": "label-story-loop",
2891
- "type": "text",
2892
- "x": 1020,
2893
- "y": 1290,
2894
- "width": 200,
2895
- "height": 25,
2896
- "angle": 0,
2897
- "strokeColor": "#e65100",
2898
- "backgroundColor": "transparent",
2899
- "fillStyle": "solid",
2900
- "strokeWidth": 2,
2901
- "roughness": 0,
2902
- "opacity": 100,
2903
- "groupIds": [],
2904
- "fontSize": 20,
2905
- "fontFamily": 1,
2906
- "text": "→ STORY LOOP",
2907
- "textAlign": "left",
2908
- "verticalAlign": "top",
2909
- "locked": false,
2910
- "version": 2,
2911
- "versionNonce": 1692991957,
2912
- "index": "b04",
2913
- "isDeleted": false,
2914
- "strokeStyle": "solid",
2915
- "seed": 1,
2916
- "frameId": null,
2917
- "roundness": null,
2918
- "boundElements": [],
2919
- "updated": 1763522171080,
2920
- "link": null,
2921
- "containerId": null,
2922
- "originalText": "→ STORY LOOP",
2923
- "autoResize": true,
2924
- "lineHeight": 1.25
2925
- },
2926
- {
2927
- "id": "arrow-validate-epic-story",
2789
+ "id": "arrow-validate-story-decision",
2928
2790
  "type": "arrow",
2929
- "x": 1100,
2930
- "y": 1260,
2791
+ "x": 1246.5341271166512,
2792
+ "y": 756.4331335811917,
2931
2793
  "width": 0,
2932
- "height": 70,
2794
+ "height": 30,
2933
2795
  "angle": 0,
2934
2796
  "strokeColor": "#1976d2",
2935
2797
  "backgroundColor": "transparent",
@@ -2939,15 +2801,11 @@
2939
2801
  "opacity": 100,
2940
2802
  "groupIds": [],
2941
2803
  "startBinding": {
2942
- "elementId": "proc-validate-epic",
2943
- "focus": 0,
2944
- "gap": 1
2945
- },
2946
- "endBinding": {
2947
- "elementId": "proc-create-story",
2804
+ "elementId": "proc-validate-story",
2948
2805
  "focus": 0,
2949
2806
  "gap": 1
2950
2807
  },
2808
+ "endBinding": null,
2951
2809
  "points": [
2952
2810
  [
2953
2811
  0,
@@ -2955,35 +2813,35 @@
2955
2813
  ],
2956
2814
  [
2957
2815
  0,
2958
- 70
2816
+ 30
2959
2817
  ]
2960
2818
  ],
2961
2819
  "lastCommittedPoint": null,
2962
- "version": 2,
2963
- "versionNonce": 2072015355,
2964
- "index": "b05",
2820
+ "version": 566,
2821
+ "versionNonce": 1807479290,
2822
+ "index": "b0B",
2965
2823
  "isDeleted": false,
2966
2824
  "strokeStyle": "solid",
2967
2825
  "seed": 1,
2968
2826
  "frameId": null,
2969
2827
  "roundness": null,
2970
2828
  "boundElements": [],
2971
- "updated": 1763522171080,
2829
+ "updated": 1764190763619,
2972
2830
  "link": null,
2973
2831
  "locked": false,
2974
2832
  "startArrowhead": null,
2975
2833
  "endArrowhead": "arrow"
2976
2834
  },
2977
2835
  {
2978
- "id": "proc-create-story",
2836
+ "id": "proc-dev-story",
2979
2837
  "type": "rectangle",
2980
- "x": 1020,
2981
- "y": 1330,
2838
+ "x": 1164.0395418694,
2839
+ "y": 788.7867016847945,
2982
2840
  "width": 160,
2983
2841
  "height": 80,
2984
2842
  "angle": 0,
2985
- "strokeColor": "#1e88e5",
2986
- "backgroundColor": "#bbdefb",
2843
+ "strokeColor": "#3f51b5",
2844
+ "backgroundColor": "#c5cae9",
2987
2845
  "fillStyle": "solid",
2988
2846
  "strokeWidth": 2,
2989
2847
  "roughness": 0,
@@ -2993,42 +2851,34 @@
2993
2851
  "value": 8
2994
2852
  },
2995
2853
  "groupIds": [
2996
- "proc-create-story-group"
2854
+ "proc-dev-story-group"
2997
2855
  ],
2998
2856
  "boundElements": [
2999
2857
  {
3000
2858
  "type": "text",
3001
- "id": "proc-create-story-text"
3002
- },
3003
- {
3004
- "type": "arrow",
3005
- "id": "arrow-validate-epic-story"
3006
- },
3007
- {
3008
- "type": "arrow",
3009
- "id": "arrow-create-validate-story"
2859
+ "id": "proc-dev-story-text"
3010
2860
  },
3011
2861
  {
3012
2862
  "type": "arrow",
3013
- "id": "arrow-more-stories-yes"
2863
+ "id": "arrow-dev-review"
3014
2864
  }
3015
2865
  ],
3016
2866
  "locked": false,
3017
- "version": 2,
3018
- "versionNonce": 1349779253,
3019
- "index": "b06",
2867
+ "version": 367,
2868
+ "versionNonce": 935782054,
2869
+ "index": "b0R",
3020
2870
  "isDeleted": false,
3021
2871
  "strokeStyle": "solid",
3022
2872
  "seed": 1,
3023
2873
  "frameId": null,
3024
- "updated": 1763522171080,
2874
+ "updated": 1764190763204,
3025
2875
  "link": null
3026
2876
  },
3027
2877
  {
3028
- "id": "proc-create-story-text",
2878
+ "id": "proc-dev-story-text",
3029
2879
  "type": "text",
3030
- "x": 1030,
3031
- "y": 1358,
2880
+ "x": 1174.0395418694,
2881
+ "y": 816.7867016847945,
3032
2882
  "width": 140,
3033
2883
  "height": 25,
3034
2884
  "angle": 0,
@@ -3039,957 +2889,7 @@
3039
2889
  "roughness": 0,
3040
2890
  "opacity": 100,
3041
2891
  "groupIds": [
3042
- "proc-create-story-group"
3043
- ],
3044
- "fontSize": 20,
3045
- "fontFamily": 1,
3046
- "text": "Create Story",
3047
- "textAlign": "center",
3048
- "verticalAlign": "middle",
3049
- "containerId": "proc-create-story",
3050
- "locked": false,
3051
- "version": 2,
3052
- "versionNonce": 540441243,
3053
- "index": "b07",
3054
- "isDeleted": false,
3055
- "strokeStyle": "solid",
3056
- "seed": 1,
3057
- "frameId": null,
3058
- "roundness": null,
3059
- "boundElements": [],
3060
- "updated": 1763522171080,
3061
- "link": null,
3062
- "originalText": "Create Story",
3063
- "autoResize": true,
3064
- "lineHeight": 1.25
3065
- },
3066
- {
3067
- "id": "arrow-create-validate-story",
3068
- "type": "arrow",
3069
- "x": 1100,
3070
- "y": 1410,
3071
- "width": 0,
3072
- "height": 30,
3073
- "angle": 0,
3074
- "strokeColor": "#1976d2",
3075
- "backgroundColor": "transparent",
3076
- "fillStyle": "solid",
3077
- "strokeWidth": 2,
3078
- "roughness": 0,
3079
- "opacity": 100,
3080
- "groupIds": [],
3081
- "startBinding": {
3082
- "elementId": "proc-create-story",
3083
- "focus": 0,
3084
- "gap": 1
3085
- },
3086
- "endBinding": {
3087
- "elementId": "proc-validate-story",
3088
- "focus": 0,
3089
- "gap": 1
3090
- },
3091
- "points": [
3092
- [
3093
- 0,
3094
- 0
3095
- ],
3096
- [
3097
- 0,
3098
- 30
3099
- ]
3100
- ],
3101
- "lastCommittedPoint": null,
3102
- "version": 2,
3103
- "versionNonce": 7884949,
3104
- "index": "b08",
3105
- "isDeleted": false,
3106
- "strokeStyle": "solid",
3107
- "seed": 1,
3108
- "frameId": null,
3109
- "roundness": null,
3110
- "boundElements": [],
3111
- "updated": 1763522171080,
3112
- "link": null,
3113
- "locked": false,
3114
- "startArrowhead": null,
3115
- "endArrowhead": "arrow"
3116
- },
3117
- {
3118
- "id": "proc-validate-story",
3119
- "type": "rectangle",
3120
- "x": 1020,
3121
- "y": 1440,
3122
- "width": 160,
3123
- "height": 80,
3124
- "angle": 0,
3125
- "strokeColor": "#1e88e5",
3126
- "backgroundColor": "#bbdefb",
3127
- "fillStyle": "solid",
3128
- "strokeWidth": 2,
3129
- "roughness": 0,
3130
- "opacity": 100,
3131
- "roundness": {
3132
- "type": 3,
3133
- "value": 8
3134
- },
3135
- "groupIds": [
3136
- "proc-validate-story-group"
3137
- ],
3138
- "boundElements": [
3139
- {
3140
- "type": "text",
3141
- "id": "proc-validate-story-text"
3142
- },
3143
- {
3144
- "type": "arrow",
3145
- "id": "arrow-create-validate-story"
3146
- },
3147
- {
3148
- "type": "arrow",
3149
- "id": "arrow-validate-story-decision"
3150
- }
3151
- ],
3152
- "locked": false,
3153
- "version": 2,
3154
- "versionNonce": 509767483,
3155
- "index": "b09",
3156
- "isDeleted": false,
3157
- "strokeStyle": "solid",
3158
- "seed": 1,
3159
- "frameId": null,
3160
- "updated": 1763522171080,
3161
- "link": null
3162
- },
3163
- {
3164
- "id": "proc-validate-story-text",
3165
- "type": "text",
3166
- "x": 1030,
3167
- "y": 1455,
3168
- "width": 140,
3169
- "height": 50,
3170
- "angle": 0,
3171
- "strokeColor": "#1e1e1e",
3172
- "backgroundColor": "transparent",
3173
- "fillStyle": "solid",
3174
- "strokeWidth": 2,
3175
- "roughness": 0,
3176
- "opacity": 100,
3177
- "groupIds": [
3178
- "proc-validate-story-group"
3179
- ],
3180
- "fontSize": 14,
3181
- "fontFamily": 1,
3182
- "text": "Validate Story\n<<optional>>",
3183
- "textAlign": "center",
3184
- "verticalAlign": "middle",
3185
- "containerId": "proc-validate-story",
3186
- "locked": false,
3187
- "version": 2,
3188
- "versionNonce": 1118533109,
3189
- "index": "b0A",
3190
- "isDeleted": false,
3191
- "strokeStyle": "solid",
3192
- "seed": 1,
3193
- "frameId": null,
3194
- "roundness": null,
3195
- "boundElements": [],
3196
- "updated": 1763522171080,
3197
- "link": null,
3198
- "originalText": "Validate Story\n<<optional>>",
3199
- "autoResize": true,
3200
- "lineHeight": 1.7857142857142858
3201
- },
3202
- {
3203
- "id": "arrow-validate-story-decision",
3204
- "type": "arrow",
3205
- "x": 1100,
3206
- "y": 1520,
3207
- "width": 0,
3208
- "height": 30,
3209
- "angle": 0,
3210
- "strokeColor": "#1976d2",
3211
- "backgroundColor": "transparent",
3212
- "fillStyle": "solid",
3213
- "strokeWidth": 2,
3214
- "roughness": 0,
3215
- "opacity": 100,
3216
- "groupIds": [],
3217
- "startBinding": {
3218
- "elementId": "proc-validate-story",
3219
- "focus": 0,
3220
- "gap": 1
3221
- },
3222
- "endBinding": {
3223
- "elementId": "decision-context-or-ready",
3224
- "focus": 0,
3225
- "gap": 1
3226
- },
3227
- "points": [
3228
- [
3229
- 0,
3230
- 0
3231
- ],
3232
- [
3233
- 0,
3234
- 30
3235
- ]
3236
- ],
3237
- "lastCommittedPoint": null,
3238
- "version": 2,
3239
- "versionNonce": 677826523,
3240
- "index": "b0B",
3241
- "isDeleted": false,
3242
- "strokeStyle": "solid",
3243
- "seed": 1,
3244
- "frameId": null,
3245
- "roundness": null,
3246
- "boundElements": [],
3247
- "updated": 1763522171080,
3248
- "link": null,
3249
- "locked": false,
3250
- "startArrowhead": null,
3251
- "endArrowhead": "arrow"
3252
- },
3253
- {
3254
- "id": "decision-context-or-ready",
3255
- "type": "diamond",
3256
- "x": 1010,
3257
- "y": 1550,
3258
- "width": 180,
3259
- "height": 120,
3260
- "angle": 0,
3261
- "strokeColor": "#f57c00",
3262
- "backgroundColor": "#fff3e0",
3263
- "fillStyle": "solid",
3264
- "strokeWidth": 2,
3265
- "roughness": 0,
3266
- "opacity": 100,
3267
- "groupIds": [
3268
- "decision-context-or-ready-group"
3269
- ],
3270
- "boundElements": [
3271
- {
3272
- "type": "text",
3273
- "id": "decision-context-or-ready-text"
3274
- },
3275
- {
3276
- "type": "arrow",
3277
- "id": "arrow-validate-story-decision"
3278
- },
3279
- {
3280
- "type": "arrow",
3281
- "id": "arrow-context-path"
3282
- },
3283
- {
3284
- "type": "arrow",
3285
- "id": "arrow-ready-path"
3286
- }
3287
- ],
3288
- "locked": false,
3289
- "version": 2,
3290
- "versionNonce": 303230805,
3291
- "index": "b0C",
3292
- "isDeleted": false,
3293
- "strokeStyle": "solid",
3294
- "seed": 1,
3295
- "frameId": null,
3296
- "roundness": null,
3297
- "updated": 1763522171080,
3298
- "link": null
3299
- },
3300
- {
3301
- "id": "decision-context-or-ready-text",
3302
- "type": "text",
3303
- "x": 1025,
3304
- "y": 1585,
3305
- "width": 150,
3306
- "height": 50,
3307
- "angle": 0,
3308
- "strokeColor": "#1e1e1e",
3309
- "backgroundColor": "transparent",
3310
- "fillStyle": "solid",
3311
- "strokeWidth": 2,
3312
- "roughness": 0,
3313
- "opacity": 100,
3314
- "groupIds": [
3315
- "decision-context-or-ready-group"
3316
- ],
3317
- "fontSize": 16,
3318
- "fontFamily": 1,
3319
- "text": "Context OR\nReady?",
3320
- "textAlign": "center",
3321
- "verticalAlign": "middle",
3322
- "containerId": "decision-context-or-ready",
3323
- "locked": false,
3324
- "version": 2,
3325
- "versionNonce": 5643387,
3326
- "index": "b0D",
3327
- "isDeleted": false,
3328
- "strokeStyle": "solid",
3329
- "seed": 1,
3330
- "frameId": null,
3331
- "roundness": null,
3332
- "boundElements": [],
3333
- "updated": 1763522171080,
3334
- "link": null,
3335
- "originalText": "Context OR\nReady?",
3336
- "autoResize": true,
3337
- "lineHeight": 1.5625
3338
- },
3339
- {
3340
- "id": "arrow-context-path",
3341
- "type": "arrow",
3342
- "x": 1010,
3343
- "y": 1610,
3344
- "width": 70,
3345
- "height": 0,
3346
- "angle": 0,
3347
- "strokeColor": "#1976d2",
3348
- "backgroundColor": "transparent",
3349
- "fillStyle": "solid",
3350
- "strokeWidth": 2,
3351
- "roughness": 0,
3352
- "opacity": 100,
3353
- "groupIds": [],
3354
- "startBinding": {
3355
- "elementId": "decision-context-or-ready",
3356
- "focus": 0,
3357
- "gap": 1
3358
- },
3359
- "endBinding": {
3360
- "elementId": "proc-story-context",
3361
- "focus": 0,
3362
- "gap": 1
3363
- },
3364
- "points": [
3365
- [
3366
- 0,
3367
- 0
3368
- ],
3369
- [
3370
- -70,
3371
- 0
3372
- ]
3373
- ],
3374
- "lastCommittedPoint": null,
3375
- "version": 2,
3376
- "versionNonce": 1828994229,
3377
- "index": "b0E",
3378
- "isDeleted": false,
3379
- "strokeStyle": "solid",
3380
- "seed": 1,
3381
- "frameId": null,
3382
- "roundness": null,
3383
- "boundElements": [],
3384
- "updated": 1763522171080,
3385
- "link": null,
3386
- "locked": false,
3387
- "startArrowhead": null,
3388
- "endArrowhead": "arrow"
3389
- },
3390
- {
3391
- "id": "label-context",
3392
- "type": "text",
3393
- "x": 951.14453125,
3394
- "y": 1580.75390625,
3395
- "width": 60,
3396
- "height": 20,
3397
- "angle": 0,
3398
- "strokeColor": "#2e7d32",
3399
- "backgroundColor": "transparent",
3400
- "fillStyle": "solid",
3401
- "strokeWidth": 2,
3402
- "roughness": 0,
3403
- "opacity": 100,
3404
- "groupIds": [],
3405
- "fontSize": 16,
3406
- "fontFamily": 1,
3407
- "text": "Context",
3408
- "textAlign": "left",
3409
- "verticalAlign": "top",
3410
- "locked": false,
3411
- "version": 133,
3412
- "versionNonce": 619956571,
3413
- "index": "b0F",
3414
- "isDeleted": false,
3415
- "strokeStyle": "solid",
3416
- "seed": 1,
3417
- "frameId": null,
3418
- "roundness": null,
3419
- "boundElements": [],
3420
- "updated": 1763522254711,
3421
- "link": null,
3422
- "containerId": null,
3423
- "originalText": "Context",
3424
- "autoResize": true,
3425
- "lineHeight": 1.25
3426
- },
3427
- {
3428
- "id": "proc-story-context",
3429
- "type": "rectangle",
3430
- "x": 760,
3431
- "y": 1570,
3432
- "width": 180,
3433
- "height": 80,
3434
- "angle": 0,
3435
- "strokeColor": "#1e88e5",
3436
- "backgroundColor": "#bbdefb",
3437
- "fillStyle": "solid",
3438
- "strokeWidth": 2,
3439
- "roughness": 0,
3440
- "opacity": 100,
3441
- "roundness": {
3442
- "type": 3,
3443
- "value": 8
3444
- },
3445
- "groupIds": [
3446
- "proc-story-context-group"
3447
- ],
3448
- "boundElements": [
3449
- {
3450
- "type": "text",
3451
- "id": "proc-story-context-text"
3452
- },
3453
- {
3454
- "type": "arrow",
3455
- "id": "arrow-context-path"
3456
- },
3457
- {
3458
- "type": "arrow",
3459
- "id": "arrow-context-validate"
3460
- }
3461
- ],
3462
- "locked": false,
3463
- "version": 2,
3464
- "versionNonce": 1797578261,
3465
- "index": "b0G",
3466
- "isDeleted": false,
3467
- "strokeStyle": "solid",
3468
- "seed": 1,
3469
- "frameId": null,
3470
- "updated": 1763522171080,
3471
- "link": null
3472
- },
3473
- {
3474
- "id": "proc-story-context-text",
3475
- "type": "text",
3476
- "x": 770,
3477
- "y": 1598,
3478
- "width": 160,
3479
- "height": 25,
3480
- "angle": 0,
3481
- "strokeColor": "#1e1e1e",
3482
- "backgroundColor": "transparent",
3483
- "fillStyle": "solid",
3484
- "strokeWidth": 2,
3485
- "roughness": 0,
3486
- "opacity": 100,
3487
- "groupIds": [
3488
- "proc-story-context-group"
3489
- ],
3490
- "fontSize": 20,
3491
- "fontFamily": 1,
3492
- "text": "Story Context",
3493
- "textAlign": "center",
3494
- "verticalAlign": "middle",
3495
- "containerId": "proc-story-context",
3496
- "locked": false,
3497
- "version": 2,
3498
- "versionNonce": 1823439291,
3499
- "index": "b0H",
3500
- "isDeleted": false,
3501
- "strokeStyle": "solid",
3502
- "seed": 1,
3503
- "frameId": null,
3504
- "roundness": null,
3505
- "boundElements": [],
3506
- "updated": 1763522171080,
3507
- "link": null,
3508
- "originalText": "Story Context",
3509
- "autoResize": true,
3510
- "lineHeight": 1.25
3511
- },
3512
- {
3513
- "id": "arrow-context-validate",
3514
- "type": "arrow",
3515
- "x": 850,
3516
- "y": 1650,
3517
- "width": 0,
3518
- "height": 30,
3519
- "angle": 0,
3520
- "strokeColor": "#1976d2",
3521
- "backgroundColor": "transparent",
3522
- "fillStyle": "solid",
3523
- "strokeWidth": 2,
3524
- "roughness": 0,
3525
- "opacity": 100,
3526
- "groupIds": [],
3527
- "startBinding": {
3528
- "elementId": "proc-story-context",
3529
- "focus": 0,
3530
- "gap": 1
3531
- },
3532
- "endBinding": {
3533
- "elementId": "proc-validate-context",
3534
- "focus": 0,
3535
- "gap": 1
3536
- },
3537
- "points": [
3538
- [
3539
- 0,
3540
- 0
3541
- ],
3542
- [
3543
- 0,
3544
- 30
3545
- ]
3546
- ],
3547
- "lastCommittedPoint": null,
3548
- "version": 2,
3549
- "versionNonce": 325735285,
3550
- "index": "b0I",
3551
- "isDeleted": false,
3552
- "strokeStyle": "solid",
3553
- "seed": 1,
3554
- "frameId": null,
3555
- "roundness": null,
3556
- "boundElements": [],
3557
- "updated": 1763522171080,
3558
- "link": null,
3559
- "locked": false,
3560
- "startArrowhead": null,
3561
- "endArrowhead": "arrow"
3562
- },
3563
- {
3564
- "id": "proc-validate-context",
3565
- "type": "rectangle",
3566
- "x": 760,
3567
- "y": 1680,
3568
- "width": 180,
3569
- "height": 80,
3570
- "angle": 0,
3571
- "strokeColor": "#1e88e5",
3572
- "backgroundColor": "#bbdefb",
3573
- "fillStyle": "solid",
3574
- "strokeWidth": 2,
3575
- "roughness": 0,
3576
- "opacity": 100,
3577
- "roundness": {
3578
- "type": 3,
3579
- "value": 8
3580
- },
3581
- "groupIds": [
3582
- "proc-validate-context-group"
3583
- ],
3584
- "boundElements": [
3585
- {
3586
- "type": "text",
3587
- "id": "proc-validate-context-text"
3588
- },
3589
- {
3590
- "type": "arrow",
3591
- "id": "arrow-context-validate"
3592
- },
3593
- {
3594
- "type": "arrow",
3595
- "id": "arrow-validate-context-dev"
3596
- }
3597
- ],
3598
- "locked": false,
3599
- "version": 2,
3600
- "versionNonce": 1840155227,
3601
- "index": "b0J",
3602
- "isDeleted": false,
3603
- "strokeStyle": "solid",
3604
- "seed": 1,
3605
- "frameId": null,
3606
- "updated": 1763522171080,
3607
- "link": null
3608
- },
3609
- {
3610
- "id": "proc-validate-context-text",
3611
- "type": "text",
3612
- "x": 770,
3613
- "y": 1695,
3614
- "width": 160,
3615
- "height": 50,
3616
- "angle": 0,
3617
- "strokeColor": "#1e1e1e",
3618
- "backgroundColor": "transparent",
3619
- "fillStyle": "solid",
3620
- "strokeWidth": 2,
3621
- "roughness": 0,
3622
- "opacity": 100,
3623
- "groupIds": [
3624
- "proc-validate-context-group"
3625
- ],
3626
- "fontSize": 14,
3627
- "fontFamily": 1,
3628
- "text": "Validate Context\n<<optional>>",
3629
- "textAlign": "center",
3630
- "verticalAlign": "middle",
3631
- "containerId": "proc-validate-context",
3632
- "locked": false,
3633
- "version": 2,
3634
- "versionNonce": 1914313941,
3635
- "index": "b0K",
3636
- "isDeleted": false,
3637
- "strokeStyle": "solid",
3638
- "seed": 1,
3639
- "frameId": null,
3640
- "roundness": null,
3641
- "boundElements": [],
3642
- "updated": 1763522171080,
3643
- "link": null,
3644
- "originalText": "Validate Context\n<<optional>>",
3645
- "autoResize": true,
3646
- "lineHeight": 1.7857142857142858
3647
- },
3648
- {
3649
- "id": "arrow-validate-context-dev",
3650
- "type": "arrow",
3651
- "x": 940,
3652
- "y": 1720,
3653
- "width": 80,
3654
- "height": 0,
3655
- "angle": 0,
3656
- "strokeColor": "#1976d2",
3657
- "backgroundColor": "transparent",
3658
- "fillStyle": "solid",
3659
- "strokeWidth": 2,
3660
- "roughness": 0,
3661
- "opacity": 100,
3662
- "groupIds": [],
3663
- "startBinding": {
3664
- "elementId": "proc-validate-context",
3665
- "focus": 0,
3666
- "gap": 1
3667
- },
3668
- "endBinding": {
3669
- "elementId": "proc-dev-story",
3670
- "focus": -0.2,
3671
- "gap": 1
3672
- },
3673
- "points": [
3674
- [
3675
- 0,
3676
- 0
3677
- ],
3678
- [
3679
- 80,
3680
- 0
3681
- ]
3682
- ],
3683
- "lastCommittedPoint": null,
3684
- "version": 2,
3685
- "versionNonce": 1774356219,
3686
- "index": "b0L",
3687
- "isDeleted": false,
3688
- "strokeStyle": "solid",
3689
- "seed": 1,
3690
- "frameId": null,
3691
- "roundness": null,
3692
- "boundElements": [],
3693
- "updated": 1763522171080,
3694
- "link": null,
3695
- "locked": false,
3696
- "startArrowhead": null,
3697
- "endArrowhead": "arrow"
3698
- },
3699
- {
3700
- "id": "arrow-ready-path",
3701
- "type": "arrow",
3702
- "x": 1100,
3703
- "y": 1670,
3704
- "width": 0,
3705
- "height": 30,
3706
- "angle": 0,
3707
- "strokeColor": "#1976d2",
3708
- "backgroundColor": "transparent",
3709
- "fillStyle": "solid",
3710
- "strokeWidth": 2,
3711
- "roughness": 0,
3712
- "opacity": 100,
3713
- "groupIds": [],
3714
- "startBinding": {
3715
- "elementId": "decision-context-or-ready",
3716
- "focus": 0,
3717
- "gap": 1
3718
- },
3719
- "endBinding": {
3720
- "elementId": "proc-story-ready",
3721
- "focus": 0,
3722
- "gap": 1
3723
- },
3724
- "points": [
3725
- [
3726
- 0,
3727
- 0
3728
- ],
3729
- [
3730
- 0,
3731
- 30
3732
- ]
3733
- ],
3734
- "lastCommittedPoint": null,
3735
- "version": 2,
3736
- "versionNonce": 1858714165,
3737
- "index": "b0M",
3738
- "isDeleted": false,
3739
- "strokeStyle": "solid",
3740
- "seed": 1,
3741
- "frameId": null,
3742
- "roundness": null,
3743
- "boundElements": [],
3744
- "updated": 1763522171080,
3745
- "link": null,
3746
- "locked": false,
3747
- "startArrowhead": null,
3748
- "endArrowhead": "arrow"
3749
- },
3750
- {
3751
- "id": "label-ready",
3752
- "type": "text",
3753
- "x": 1110,
3754
- "y": 1680,
3755
- "width": 50,
3756
- "height": 20,
3757
- "angle": 0,
3758
- "strokeColor": "#2e7d32",
3759
- "backgroundColor": "transparent",
3760
- "fillStyle": "solid",
3761
- "strokeWidth": 2,
3762
- "roughness": 0,
3763
- "opacity": 100,
3764
- "groupIds": [],
3765
- "fontSize": 16,
3766
- "fontFamily": 1,
3767
- "text": "Ready",
3768
- "textAlign": "left",
3769
- "verticalAlign": "top",
3770
- "locked": false,
3771
- "version": 2,
3772
- "versionNonce": 124645275,
3773
- "index": "b0N",
3774
- "isDeleted": false,
3775
- "strokeStyle": "solid",
3776
- "seed": 1,
3777
- "frameId": null,
3778
- "roundness": null,
3779
- "boundElements": [],
3780
- "updated": 1763522171080,
3781
- "link": null,
3782
- "containerId": null,
3783
- "originalText": "Ready",
3784
- "autoResize": true,
3785
- "lineHeight": 1.25
3786
- },
3787
- {
3788
- "id": "proc-story-ready",
3789
- "type": "rectangle",
3790
- "x": 1020,
3791
- "y": 1700,
3792
- "width": 160,
3793
- "height": 80,
3794
- "angle": 0,
3795
- "strokeColor": "#1e88e5",
3796
- "backgroundColor": "#bbdefb",
3797
- "fillStyle": "solid",
3798
- "strokeWidth": 2,
3799
- "roughness": 0,
3800
- "opacity": 100,
3801
- "roundness": {
3802
- "type": 3,
3803
- "value": 8
3804
- },
3805
- "groupIds": [
3806
- "proc-story-ready-group"
3807
- ],
3808
- "boundElements": [
3809
- {
3810
- "type": "text",
3811
- "id": "proc-story-ready-text"
3812
- },
3813
- {
3814
- "type": "arrow",
3815
- "id": "arrow-ready-path"
3816
- },
3817
- {
3818
- "type": "arrow",
3819
- "id": "arrow-ready-dev"
3820
- }
3821
- ],
3822
- "locked": false,
3823
- "version": 2,
3824
- "versionNonce": 1650371477,
3825
- "index": "b0O",
3826
- "isDeleted": false,
3827
- "strokeStyle": "solid",
3828
- "seed": 1,
3829
- "frameId": null,
3830
- "updated": 1763522171080,
3831
- "link": null
3832
- },
3833
- {
3834
- "id": "proc-story-ready-text",
3835
- "type": "text",
3836
- "x": 1030,
3837
- "y": 1728,
3838
- "width": 140,
3839
- "height": 25,
3840
- "angle": 0,
3841
- "strokeColor": "#1e1e1e",
3842
- "backgroundColor": "transparent",
3843
- "fillStyle": "solid",
3844
- "strokeWidth": 2,
3845
- "roughness": 0,
3846
- "opacity": 100,
3847
- "groupIds": [
3848
- "proc-story-ready-group"
3849
- ],
3850
- "fontSize": 20,
3851
- "fontFamily": 1,
3852
- "text": "Story Ready",
3853
- "textAlign": "center",
3854
- "verticalAlign": "middle",
3855
- "containerId": "proc-story-ready",
3856
- "locked": false,
3857
- "version": 2,
3858
- "versionNonce": 2028160059,
3859
- "index": "b0P",
3860
- "isDeleted": false,
3861
- "strokeStyle": "solid",
3862
- "seed": 1,
3863
- "frameId": null,
3864
- "roundness": null,
3865
- "boundElements": [],
3866
- "updated": 1763522171080,
3867
- "link": null,
3868
- "originalText": "Story Ready",
3869
- "autoResize": true,
3870
- "lineHeight": 1.25
3871
- },
3872
- {
3873
- "id": "arrow-ready-dev",
3874
- "type": "arrow",
3875
- "x": 1100,
3876
- "y": 1780,
3877
- "width": 0,
3878
- "height": 30,
3879
- "angle": 0,
3880
- "strokeColor": "#1976d2",
3881
- "backgroundColor": "transparent",
3882
- "fillStyle": "solid",
3883
- "strokeWidth": 2,
3884
- "roughness": 0,
3885
- "opacity": 100,
3886
- "groupIds": [],
3887
- "startBinding": {
3888
- "elementId": "proc-story-ready",
3889
- "focus": 0,
3890
- "gap": 1
3891
- },
3892
- "endBinding": {
3893
- "elementId": "proc-dev-story",
3894
- "focus": 0.2,
3895
- "gap": 1
3896
- },
3897
- "points": [
3898
- [
3899
- 0,
3900
- 0
3901
- ],
3902
- [
3903
- 0,
3904
- 30
3905
- ]
3906
- ],
3907
- "lastCommittedPoint": null,
3908
- "version": 2,
3909
- "versionNonce": 1829662965,
3910
- "index": "b0Q",
3911
- "isDeleted": false,
3912
- "strokeStyle": "solid",
3913
- "seed": 1,
3914
- "frameId": null,
3915
- "roundness": null,
3916
- "boundElements": [],
3917
- "updated": 1763522171080,
3918
- "link": null,
3919
- "locked": false,
3920
- "startArrowhead": null,
3921
- "endArrowhead": "arrow"
3922
- },
3923
- {
3924
- "id": "proc-dev-story",
3925
- "type": "rectangle",
3926
- "x": 1020,
3927
- "y": 1810,
3928
- "width": 160,
3929
- "height": 80,
3930
- "angle": 0,
3931
- "strokeColor": "#3f51b5",
3932
- "backgroundColor": "#c5cae9",
3933
- "fillStyle": "solid",
3934
- "strokeWidth": 2,
3935
- "roughness": 0,
3936
- "opacity": 100,
3937
- "roundness": {
3938
- "type": 3,
3939
- "value": 8
3940
- },
3941
- "groupIds": [
3942
- "proc-dev-story-group"
3943
- ],
3944
- "boundElements": [
3945
- {
3946
- "type": "text",
3947
- "id": "proc-dev-story-text"
3948
- },
3949
- {
3950
- "type": "arrow",
3951
- "id": "arrow-validate-context-dev"
3952
- },
3953
- {
3954
- "type": "arrow",
3955
- "id": "arrow-ready-dev"
3956
- },
3957
- {
3958
- "type": "arrow",
3959
- "id": "arrow-dev-review"
3960
- },
3961
- {
3962
- "type": "arrow",
3963
- "id": "arrow-review-fail-loop"
3964
- }
3965
- ],
3966
- "locked": false,
3967
- "version": 2,
3968
- "versionNonce": 100992219,
3969
- "index": "b0R",
3970
- "isDeleted": false,
3971
- "strokeStyle": "solid",
3972
- "seed": 1,
3973
- "frameId": null,
3974
- "updated": 1763522171080,
3975
- "link": null
3976
- },
3977
- {
3978
- "id": "proc-dev-story-text",
3979
- "type": "text",
3980
- "x": 1030,
3981
- "y": 1838,
3982
- "width": 140,
3983
- "height": 25,
3984
- "angle": 0,
3985
- "strokeColor": "#1e1e1e",
3986
- "backgroundColor": "transparent",
3987
- "fillStyle": "solid",
3988
- "strokeWidth": 2,
3989
- "roughness": 0,
3990
- "opacity": 100,
3991
- "groupIds": [
3992
- "proc-dev-story-group"
2892
+ "proc-dev-story-group"
3993
2893
  ],
3994
2894
  "fontSize": 20,
3995
2895
  "fontFamily": 1,
@@ -3998,8 +2898,8 @@
3998
2898
  "verticalAlign": "middle",
3999
2899
  "containerId": "proc-dev-story",
4000
2900
  "locked": false,
4001
- "version": 2,
4002
- "versionNonce": 207522389,
2901
+ "version": 364,
2902
+ "versionNonce": 952050150,
4003
2903
  "index": "b0S",
4004
2904
  "isDeleted": false,
4005
2905
  "strokeStyle": "solid",
@@ -4007,7 +2907,7 @@
4007
2907
  "frameId": null,
4008
2908
  "roundness": null,
4009
2909
  "boundElements": [],
4010
- "updated": 1763522171080,
2910
+ "updated": 1764190763204,
4011
2911
  "link": null,
4012
2912
  "originalText": "Develop Story",
4013
2913
  "autoResize": true,
@@ -4016,10 +2916,10 @@
4016
2916
  {
4017
2917
  "id": "arrow-dev-review",
4018
2918
  "type": "arrow",
4019
- "x": 1100,
4020
- "y": 1890,
4021
- "width": 0,
4022
- "height": 30,
2919
+ "x": 1244.2149450712877,
2920
+ "y": 869.2383158460461,
2921
+ "width": 5.032331195699953,
2922
+ "height": 76.6679634046609,
4023
2923
  "angle": 0,
4024
2924
  "strokeColor": "#1976d2",
4025
2925
  "backgroundColor": "transparent",
@@ -4030,13 +2930,13 @@
4030
2930
  "groupIds": [],
4031
2931
  "startBinding": {
4032
2932
  "elementId": "proc-dev-story",
4033
- "focus": 0,
2933
+ "focus": 0.030012029555609845,
4034
2934
  "gap": 1
4035
2935
  },
4036
2936
  "endBinding": {
4037
- "elementId": "decision-code-review",
4038
- "focus": 0,
4039
- "gap": 1
2937
+ "elementId": "proc-story-done",
2938
+ "focus": 0.04241833499478815,
2939
+ "gap": 1.3466869862454587
4040
2940
  },
4041
2941
  "points": [
4042
2942
  [
@@ -4044,13 +2944,13 @@
4044
2944
  0
4045
2945
  ],
4046
2946
  [
4047
- 0,
4048
- 30
2947
+ 5.032331195699953,
2948
+ 76.6679634046609
4049
2949
  ]
4050
2950
  ],
4051
2951
  "lastCommittedPoint": null,
4052
- "version": 2,
4053
- "versionNonce": 1449505147,
2952
+ "version": 1191,
2953
+ "versionNonce": 2052012922,
4054
2954
  "index": "b0T",
4055
2955
  "isDeleted": false,
4056
2956
  "strokeStyle": "solid",
@@ -4058,7 +2958,7 @@
4058
2958
  "frameId": null,
4059
2959
  "roundness": null,
4060
2960
  "boundElements": [],
4061
- "updated": 1763522171080,
2961
+ "updated": 1764190763619,
4062
2962
  "link": null,
4063
2963
  "locked": false,
4064
2964
  "startArrowhead": null,
@@ -4067,8 +2967,8 @@
4067
2967
  {
4068
2968
  "id": "decision-code-review",
4069
2969
  "type": "diamond",
4070
- "x": 1010,
4071
- "y": 1920,
2970
+ "x": 1156.5341271166512,
2971
+ "y": 1156.4331335811917,
4072
2972
  "width": 180,
4073
2973
  "height": 120,
4074
2974
  "angle": 0,
@@ -4092,30 +2992,34 @@
4092
2992
  },
4093
2993
  {
4094
2994
  "type": "arrow",
4095
- "id": "arrow-review-pass"
2995
+ "id": "arrow-review-fail"
4096
2996
  },
4097
2997
  {
4098
- "type": "arrow",
4099
- "id": "arrow-review-fail"
2998
+ "id": "arrow-done-more-stories",
2999
+ "type": "arrow"
3000
+ },
3001
+ {
3002
+ "id": "4chQ7PksRKpPe5YX-TfFJ",
3003
+ "type": "arrow"
4100
3004
  }
4101
3005
  ],
4102
3006
  "locked": false,
4103
- "version": 2,
4104
- "versionNonce": 1898215349,
3007
+ "version": 285,
3008
+ "versionNonce": 46359462,
4105
3009
  "index": "b0U",
4106
3010
  "isDeleted": false,
4107
3011
  "strokeStyle": "solid",
4108
3012
  "seed": 1,
4109
3013
  "frameId": null,
4110
3014
  "roundness": null,
4111
- "updated": 1763522171080,
3015
+ "updated": 1764190763204,
4112
3016
  "link": null
4113
3017
  },
4114
3018
  {
4115
3019
  "id": "decision-code-review-text",
4116
3020
  "type": "text",
4117
- "x": 1025,
4118
- "y": 1955,
3021
+ "x": 1171.5341271166512,
3022
+ "y": 1191.4331335811917,
4119
3023
  "width": 150,
4120
3024
  "height": 50,
4121
3025
  "angle": 0,
@@ -4135,8 +3039,8 @@
4135
3039
  "verticalAlign": "middle",
4136
3040
  "containerId": "decision-code-review",
4137
3041
  "locked": false,
4138
- "version": 2,
4139
- "versionNonce": 2068302363,
3042
+ "version": 282,
3043
+ "versionNonce": 1227095782,
4140
3044
  "index": "b0V",
4141
3045
  "isDeleted": false,
4142
3046
  "strokeStyle": "solid",
@@ -4144,7 +3048,7 @@
4144
3048
  "frameId": null,
4145
3049
  "roundness": null,
4146
3050
  "boundElements": [],
4147
- "updated": 1763522171080,
3051
+ "updated": 1764190763204,
4148
3052
  "link": null,
4149
3053
  "originalText": "Code Review\nPass?",
4150
3054
  "autoResize": true,
@@ -4153,10 +3057,10 @@
4153
3057
  {
4154
3058
  "id": "arrow-review-fail",
4155
3059
  "type": "arrow",
4156
- "x": 1010,
4157
- "y": 1980,
4158
- "width": 70,
4159
- "height": 170,
3060
+ "x": 1151.5341271166512,
3061
+ "y": 1216.3331335811918,
3062
+ "width": 42.50541475274872,
3063
+ "height": 387.6464318963972,
4160
3064
  "angle": 0,
4161
3065
  "strokeColor": "#1976d2",
4162
3066
  "backgroundColor": "transparent",
@@ -4173,83 +3077,43 @@
4173
3077
  0
4174
3078
  ],
4175
3079
  [
4176
- -70,
3080
+ -35,
4177
3081
  0
4178
3082
  ],
4179
3083
  [
4180
- -70,
4181
- -170
4182
- ]
4183
- ],
4184
- "lastCommittedPoint": null,
4185
- "elbowed": true,
4186
- "version": 2,
4187
- "versionNonce": 361085205,
4188
- "index": "b0W",
4189
- "isDeleted": false,
4190
- "strokeStyle": "solid",
4191
- "seed": 1,
4192
- "frameId": null,
4193
- "roundness": null,
4194
- "boundElements": [],
4195
- "updated": 1763522171080,
4196
- "link": null,
4197
- "locked": false,
4198
- "startArrowhead": null,
4199
- "endArrowhead": "arrow"
4200
- },
4201
- {
4202
- "id": "arrow-review-fail-loop",
4203
- "type": "arrow",
4204
- "x": 940,
4205
- "y": 1810,
4206
- "width": 80,
4207
- "height": 0,
4208
- "angle": 0,
4209
- "strokeColor": "#1976d2",
4210
- "backgroundColor": "transparent",
4211
- "fillStyle": "solid",
4212
- "strokeWidth": 2,
4213
- "roughness": 0,
4214
- "opacity": 100,
4215
- "groupIds": [],
4216
- "startBinding": null,
4217
- "endBinding": {
4218
- "elementId": "proc-dev-story",
4219
- "focus": -0.5,
4220
- "gap": 1
4221
- },
4222
- "points": [
4223
- [
4224
- 0,
4225
- 0
3084
+ -35,
3085
+ -387.6464318963972
4226
3086
  ],
4227
3087
  [
4228
- 80,
4229
- 0
3088
+ 7.50541475274872,
3089
+ -387.6464318963972
4230
3090
  ]
4231
3091
  ],
4232
3092
  "lastCommittedPoint": null,
4233
- "version": 2,
4234
- "versionNonce": 966643387,
4235
- "index": "b0X",
3093
+ "elbowed": true,
3094
+ "version": 319,
3095
+ "versionNonce": 405929318,
3096
+ "index": "b0W",
4236
3097
  "isDeleted": false,
4237
3098
  "strokeStyle": "solid",
4238
3099
  "seed": 1,
4239
3100
  "frameId": null,
4240
3101
  "roundness": null,
4241
3102
  "boundElements": [],
4242
- "updated": 1763522171080,
3103
+ "updated": 1764190763204,
4243
3104
  "link": null,
4244
3105
  "locked": false,
4245
3106
  "startArrowhead": null,
4246
- "endArrowhead": "arrow"
3107
+ "endArrowhead": "arrow",
3108
+ "fixedSegments": null,
3109
+ "startIsSpecial": null,
3110
+ "endIsSpecial": null
4247
3111
  },
4248
3112
  {
4249
3113
  "id": "label-fail",
4250
3114
  "type": "text",
4251
- "x": 880,
4252
- "y": 1960,
3115
+ "x": 1065.6231186673836,
3116
+ "y": 1185.462969542075,
4253
3117
  "width": 35,
4254
3118
  "height": 20,
4255
3119
  "angle": 0,
@@ -4266,8 +3130,8 @@
4266
3130
  "textAlign": "left",
4267
3131
  "verticalAlign": "top",
4268
3132
  "locked": false,
4269
- "version": 2,
4270
- "versionNonce": 318230133,
3133
+ "version": 316,
3134
+ "versionNonce": 1897488550,
4271
3135
  "index": "b0Y",
4272
3136
  "isDeleted": false,
4273
3137
  "strokeStyle": "solid",
@@ -4275,69 +3139,18 @@
4275
3139
  "frameId": null,
4276
3140
  "roundness": null,
4277
3141
  "boundElements": [],
4278
- "updated": 1763522171080,
3142
+ "updated": 1764190763204,
4279
3143
  "link": null,
4280
3144
  "containerId": null,
4281
3145
  "originalText": "Fail",
4282
3146
  "autoResize": true,
4283
3147
  "lineHeight": 1.25
4284
3148
  },
4285
- {
4286
- "id": "arrow-review-pass",
4287
- "type": "arrow",
4288
- "x": 1100,
4289
- "y": 2040,
4290
- "width": 0,
4291
- "height": 30,
4292
- "angle": 0,
4293
- "strokeColor": "#1976d2",
4294
- "backgroundColor": "transparent",
4295
- "fillStyle": "solid",
4296
- "strokeWidth": 2,
4297
- "roughness": 0,
4298
- "opacity": 100,
4299
- "groupIds": [],
4300
- "startBinding": {
4301
- "elementId": "decision-code-review",
4302
- "focus": 0,
4303
- "gap": 1
4304
- },
4305
- "endBinding": {
4306
- "elementId": "proc-story-done",
4307
- "focus": 0,
4308
- "gap": 1
4309
- },
4310
- "points": [
4311
- [
4312
- 0,
4313
- 0
4314
- ],
4315
- [
4316
- 0,
4317
- 30
4318
- ]
4319
- ],
4320
- "lastCommittedPoint": null,
4321
- "version": 2,
4322
- "versionNonce": 336215899,
4323
- "index": "b0Z",
4324
- "isDeleted": false,
4325
- "strokeStyle": "solid",
4326
- "seed": 1,
4327
- "frameId": null,
4328
- "roundness": null,
4329
- "boundElements": [],
4330
- "updated": 1763522171080,
4331
- "link": null,
4332
- "locked": false,
4333
- "startArrowhead": null,
4334
- "endArrowhead": "arrow"
4335
- },
4336
3149
  {
4337
3150
  "id": "label-pass",
4338
3151
  "type": "text",
4339
- "x": 1110,
4340
- "y": 2050,
3152
+ "x": 1229.6819134569105,
3153
+ "y": 1281.2421635916448,
4341
3154
  "width": 40,
4342
3155
  "height": 20,
4343
3156
  "angle": 0,
@@ -4354,16 +3167,21 @@
4354
3167
  "textAlign": "left",
4355
3168
  "verticalAlign": "top",
4356
3169
  "locked": false,
4357
- "version": 2,
4358
- "versionNonce": 943732693,
3170
+ "version": 408,
3171
+ "versionNonce": 1437752294,
4359
3172
  "index": "b0a",
4360
3173
  "isDeleted": false,
4361
3174
  "strokeStyle": "solid",
4362
3175
  "seed": 1,
4363
3176
  "frameId": null,
4364
3177
  "roundness": null,
4365
- "boundElements": [],
4366
- "updated": 1763522171080,
3178
+ "boundElements": [
3179
+ {
3180
+ "id": "4chQ7PksRKpPe5YX-TfFJ",
3181
+ "type": "arrow"
3182
+ }
3183
+ ],
3184
+ "updated": 1764190763204,
4367
3185
  "link": null,
4368
3186
  "containerId": null,
4369
3187
  "originalText": "Pass",
@@ -4373,10 +3191,10 @@
4373
3191
  {
4374
3192
  "id": "proc-story-done",
4375
3193
  "type": "rectangle",
4376
- "x": 1020,
4377
- "y": 2070,
3194
+ "x": 1169.3991588878014,
3195
+ "y": 947.2529662369525,
4378
3196
  "width": 160,
4379
- "height": 80,
3197
+ "height": 110,
4380
3198
  "angle": 0,
4381
3199
  "strokeColor": "#3f51b5",
4382
3200
  "backgroundColor": "#c5cae9",
@@ -4398,31 +3216,31 @@
4398
3216
  },
4399
3217
  {
4400
3218
  "type": "arrow",
4401
- "id": "arrow-review-pass"
3219
+ "id": "arrow-done-more-stories"
4402
3220
  },
4403
3221
  {
4404
- "type": "arrow",
4405
- "id": "arrow-done-more-stories"
3222
+ "id": "arrow-dev-review",
3223
+ "type": "arrow"
4406
3224
  }
4407
3225
  ],
4408
3226
  "locked": false,
4409
- "version": 2,
4410
- "versionNonce": 350198779,
3227
+ "version": 453,
3228
+ "versionNonce": 277682790,
4411
3229
  "index": "b0b",
4412
3230
  "isDeleted": false,
4413
3231
  "strokeStyle": "solid",
4414
3232
  "seed": 1,
4415
3233
  "frameId": null,
4416
- "updated": 1763522171080,
3234
+ "updated": 1764190763204,
4417
3235
  "link": null
4418
3236
  },
4419
3237
  {
4420
3238
  "id": "proc-story-done-text",
4421
3239
  "type": "text",
4422
- "x": 1030,
4423
- "y": 2098,
4424
- "width": 140,
4425
- "height": 25,
3240
+ "x": 1187.9272045420983,
3241
+ "y": 972.2529662369525,
3242
+ "width": 122.94390869140625,
3243
+ "height": 60,
4426
3244
  "angle": 0,
4427
3245
  "strokeColor": "#1e1e1e",
4428
3246
  "backgroundColor": "transparent",
@@ -4433,15 +3251,15 @@
4433
3251
  "groupIds": [
4434
3252
  "proc-story-done-group"
4435
3253
  ],
4436
- "fontSize": 20,
3254
+ "fontSize": 16,
4437
3255
  "fontFamily": 1,
4438
- "text": "Story Done",
3256
+ "text": "Code Review\n<<use different\nLLM>>",
4439
3257
  "textAlign": "center",
4440
3258
  "verticalAlign": "middle",
4441
3259
  "containerId": "proc-story-done",
4442
3260
  "locked": false,
4443
- "version": 2,
4444
- "versionNonce": 1601467701,
3261
+ "version": 502,
3262
+ "versionNonce": 1242095014,
4445
3263
  "index": "b0c",
4446
3264
  "isDeleted": false,
4447
3265
  "strokeStyle": "solid",
@@ -4449,19 +3267,19 @@
4449
3267
  "frameId": null,
4450
3268
  "roundness": null,
4451
3269
  "boundElements": [],
4452
- "updated": 1763522171080,
3270
+ "updated": 1764190763204,
4453
3271
  "link": null,
4454
- "originalText": "Story Done",
3272
+ "originalText": "Code Review\n<<use different LLM>>",
4455
3273
  "autoResize": true,
4456
3274
  "lineHeight": 1.25
4457
3275
  },
4458
3276
  {
4459
3277
  "id": "arrow-done-more-stories",
4460
3278
  "type": "arrow",
4461
- "x": 1100,
4462
- "y": 2150,
4463
- "width": 0,
4464
- "height": 30,
3279
+ "x": 1249.4681490735618,
3280
+ "y": 1065.5372616587838,
3281
+ "width": 1.7879398006109568,
3282
+ "height": 90.97426236326123,
4465
3283
  "angle": 0,
4466
3284
  "strokeColor": "#1976d2",
4467
3285
  "backgroundColor": "transparent",
@@ -4472,13 +3290,13 @@
4472
3290
  "groupIds": [],
4473
3291
  "startBinding": {
4474
3292
  "elementId": "proc-story-done",
4475
- "focus": 0,
4476
- "gap": 1
3293
+ "focus": 0.014488632877232727,
3294
+ "gap": 8.284295421831303
4477
3295
  },
4478
3296
  "endBinding": {
4479
- "elementId": "decision-more-stories",
4480
- "focus": 0,
4481
- "gap": 1
3297
+ "elementId": "decision-code-review",
3298
+ "focus": 0.09832693417954867,
3299
+ "gap": 2.039543956918169
4482
3300
  },
4483
3301
  "points": [
4484
3302
  [
@@ -4486,13 +3304,13 @@
4486
3304
  0
4487
3305
  ],
4488
3306
  [
4489
- 0,
4490
- 30
3307
+ 1.7879398006109568,
3308
+ 90.97426236326123
4491
3309
  ]
4492
3310
  ],
4493
3311
  "lastCommittedPoint": null,
4494
- "version": 2,
4495
- "versionNonce": 1478517915,
3312
+ "version": 1093,
3313
+ "versionNonce": 146679034,
4496
3314
  "index": "b0d",
4497
3315
  "isDeleted": false,
4498
3316
  "strokeStyle": "solid",
@@ -4500,7 +3318,7 @@
4500
3318
  "frameId": null,
4501
3319
  "roundness": null,
4502
3320
  "boundElements": [],
4503
- "updated": 1763522171080,
3321
+ "updated": 1764190763619,
4504
3322
  "link": null,
4505
3323
  "locked": false,
4506
3324
  "startArrowhead": null,
@@ -4509,8 +3327,8 @@
4509
3327
  {
4510
3328
  "id": "decision-more-stories",
4511
3329
  "type": "diamond",
4512
- "x": 1010,
4513
- "y": 2180,
3330
+ "x": 1163.8719002449689,
3331
+ "y": 1363.600308336051,
4514
3332
  "width": 180,
4515
3333
  "height": 120,
4516
3334
  "angle": 0,
@@ -4539,25 +3357,29 @@
4539
3357
  {
4540
3358
  "type": "arrow",
4541
3359
  "id": "arrow-more-stories-no"
3360
+ },
3361
+ {
3362
+ "id": "4chQ7PksRKpPe5YX-TfFJ",
3363
+ "type": "arrow"
4542
3364
  }
4543
3365
  ],
4544
3366
  "locked": false,
4545
- "version": 2,
4546
- "versionNonce": 66717333,
3367
+ "version": 441,
3368
+ "versionNonce": 886168230,
4547
3369
  "index": "b0e",
4548
3370
  "isDeleted": false,
4549
3371
  "strokeStyle": "solid",
4550
3372
  "seed": 1,
4551
3373
  "frameId": null,
4552
3374
  "roundness": null,
4553
- "updated": 1763522171080,
3375
+ "updated": 1764190763204,
4554
3376
  "link": null
4555
3377
  },
4556
3378
  {
4557
3379
  "id": "decision-more-stories-text",
4558
3380
  "type": "text",
4559
- "x": 1025,
4560
- "y": 2215,
3381
+ "x": 1178.8719002449689,
3382
+ "y": 1398.600308336051,
4561
3383
  "width": 150,
4562
3384
  "height": 50,
4563
3385
  "angle": 0,
@@ -4577,8 +3399,8 @@
4577
3399
  "verticalAlign": "middle",
4578
3400
  "containerId": "decision-more-stories",
4579
3401
  "locked": false,
4580
- "version": 2,
4581
- "versionNonce": 1434392891,
3402
+ "version": 440,
3403
+ "versionNonce": 1078695398,
4582
3404
  "index": "b0f",
4583
3405
  "isDeleted": false,
4584
3406
  "strokeStyle": "solid",
@@ -4586,7 +3408,7 @@
4586
3408
  "frameId": null,
4587
3409
  "roundness": null,
4588
3410
  "boundElements": [],
4589
- "updated": 1763522171080,
3411
+ "updated": 1764190763204,
4590
3412
  "link": null,
4591
3413
  "originalText": "More Stories\nin Epic?",
4592
3414
  "autoResize": true,
@@ -4595,10 +3417,10 @@
4595
3417
  {
4596
3418
  "id": "arrow-more-stories-yes",
4597
3419
  "type": "arrow",
4598
- "x": 1005,
4599
- "y": 2239.9,
4600
- "width": 280.5703125,
4601
- "height": 879.8335937500001,
3420
+ "x": 1158.8719002449689,
3421
+ "y": 1423.5003083360511,
3422
+ "width": 141.95595587699154,
3423
+ "height": 827.0007685048595,
4602
3424
  "angle": 0,
4603
3425
  "strokeColor": "#1976d2",
4604
3426
  "backgroundColor": "transparent",
@@ -4607,7 +3429,15 @@
4607
3429
  "roughness": 0,
4608
3430
  "opacity": 100,
4609
3431
  "groupIds": [],
4610
- "startBinding": null,
3432
+ "startBinding": {
3433
+ "elementId": "decision-more-stories",
3434
+ "fixedPoint": [
3435
+ -0.027777777777777776,
3436
+ 0.4991666666666674
3437
+ ],
3438
+ "focus": 0,
3439
+ "gap": 0
3440
+ },
4611
3441
  "endBinding": null,
4612
3442
  "points": [
4613
3443
  [
@@ -4615,22 +3445,22 @@
4615
3445
  0
4616
3446
  ],
4617
3447
  [
4618
- -271.71875,
3448
+ -140.44216650530916,
4619
3449
  0
4620
3450
  ],
4621
3451
  [
4622
- -271.71875,
4623
- -879.8335937500001
3452
+ -140.44216650530916,
3453
+ -827.0007685048595
4624
3454
  ],
4625
3455
  [
4626
- 8.8515625,
4627
- -879.8335937500001
3456
+ 1.5137893716823783,
3457
+ -827.0007685048595
4628
3458
  ]
4629
3459
  ],
4630
3460
  "lastCommittedPoint": null,
4631
3461
  "elbowed": true,
4632
- "version": 266,
4633
- "versionNonce": 2028204117,
3462
+ "version": 954,
3463
+ "versionNonce": 2094428902,
4634
3464
  "index": "b0g",
4635
3465
  "isDeleted": false,
4636
3466
  "strokeStyle": "solid",
@@ -4638,7 +3468,7 @@
4638
3468
  "frameId": null,
4639
3469
  "roundness": null,
4640
3470
  "boundElements": [],
4641
- "updated": 1763522251385,
3471
+ "updated": 1764190763204,
4642
3472
  "link": null,
4643
3473
  "locked": false,
4644
3474
  "startArrowhead": null,
@@ -4647,12 +3477,12 @@
4647
3477
  {
4648
3478
  "index": 2,
4649
3479
  "start": [
4650
- -271.71875,
3480
+ -140.44216650530916,
4651
3481
  0
4652
3482
  ],
4653
3483
  "end": [
4654
- -271.71875,
4655
- -879.8335937500001
3484
+ -140.44216650530916,
3485
+ -827.0007685048595
4656
3486
  ]
4657
3487
  }
4658
3488
  ],
@@ -4662,8 +3492,8 @@
4662
3492
  {
4663
3493
  "id": "label-more-stories-yes",
4664
3494
  "type": "text",
4665
- "x": 820,
4666
- "y": 2220,
3495
+ "x": 1024.8322929694286,
3496
+ "y": 1455.9672274720815,
4667
3497
  "width": 30,
4668
3498
  "height": 20,
4669
3499
  "angle": 0,
@@ -4680,8 +3510,8 @@
4680
3510
  "textAlign": "left",
4681
3511
  "verticalAlign": "top",
4682
3512
  "locked": false,
4683
- "version": 2,
4684
- "versionNonce": 1784560091,
3513
+ "version": 320,
3514
+ "versionNonce": 76752422,
4685
3515
  "index": "b0h",
4686
3516
  "isDeleted": false,
4687
3517
  "strokeStyle": "solid",
@@ -4689,7 +3519,7 @@
4689
3519
  "frameId": null,
4690
3520
  "roundness": null,
4691
3521
  "boundElements": [],
4692
- "updated": 1763522171080,
3522
+ "updated": 1764190763204,
4693
3523
  "link": null,
4694
3524
  "containerId": null,
4695
3525
  "originalText": "Yes",
@@ -4699,10 +3529,10 @@
4699
3529
  {
4700
3530
  "id": "arrow-more-stories-no",
4701
3531
  "type": "arrow",
4702
- "x": 1100,
4703
- "y": 2300,
4704
- "width": 0,
4705
- "height": 30,
3532
+ "x": 1254.2299747445697,
3533
+ "y": 1484.1816612705734,
3534
+ "width": 0.09067340460524065,
3535
+ "height": 69.22388536244944,
4706
3536
  "angle": 0,
4707
3537
  "strokeColor": "#1976d2",
4708
3538
  "backgroundColor": "transparent",
@@ -4713,12 +3543,12 @@
4713
3543
  "groupIds": [],
4714
3544
  "startBinding": {
4715
3545
  "elementId": "decision-more-stories",
4716
- "focus": 0,
3546
+ "focus": -0.004645359638607261,
4717
3547
  "gap": 1
4718
3548
  },
4719
3549
  "endBinding": {
4720
3550
  "elementId": "proc-retrospective",
4721
- "focus": 0,
3551
+ "focus": -0.000007722345339971072,
4722
3552
  "gap": 1
4723
3553
  },
4724
3554
  "points": [
@@ -4727,13 +3557,13 @@
4727
3557
  0
4728
3558
  ],
4729
3559
  [
4730
- 0,
4731
- 30
3560
+ 0.09067340460524065,
3561
+ 69.22388536244944
4732
3562
  ]
4733
3563
  ],
4734
3564
  "lastCommittedPoint": null,
4735
- "version": 2,
4736
- "versionNonce": 488580437,
3565
+ "version": 1115,
3566
+ "versionNonce": 1285598842,
4737
3567
  "index": "b0i",
4738
3568
  "isDeleted": false,
4739
3569
  "strokeStyle": "solid",
@@ -4741,7 +3571,7 @@
4741
3571
  "frameId": null,
4742
3572
  "roundness": null,
4743
3573
  "boundElements": [],
4744
- "updated": 1763522171080,
3574
+ "updated": 1764190763619,
4745
3575
  "link": null,
4746
3576
  "locked": false,
4747
3577
  "startArrowhead": null,
@@ -4750,8 +3580,8 @@
4750
3580
  {
4751
3581
  "id": "label-more-stories-no",
4752
3582
  "type": "text",
4753
- "x": 1110,
4754
- "y": 2310,
3583
+ "x": 1273.6656161640394,
3584
+ "y": 1506.317970130127,
4755
3585
  "width": 25,
4756
3586
  "height": 20,
4757
3587
  "angle": 0,
@@ -4768,8 +3598,8 @@
4768
3598
  "textAlign": "left",
4769
3599
  "verticalAlign": "top",
4770
3600
  "locked": false,
4771
- "version": 2,
4772
- "versionNonce": 600852091,
3601
+ "version": 327,
3602
+ "versionNonce": 1022383270,
4773
3603
  "index": "b0j",
4774
3604
  "isDeleted": false,
4775
3605
  "strokeStyle": "solid",
@@ -4777,7 +3607,7 @@
4777
3607
  "frameId": null,
4778
3608
  "roundness": null,
4779
3609
  "boundElements": [],
4780
- "updated": 1763522171080,
3610
+ "updated": 1764190763204,
4781
3611
  "link": null,
4782
3612
  "containerId": null,
4783
3613
  "originalText": "No",
@@ -4787,8 +3617,8 @@
4787
3617
  {
4788
3618
  "id": "proc-retrospective",
4789
3619
  "type": "rectangle",
4790
- "x": 1020,
4791
- "y": 2330,
3620
+ "x": 1174.3742521794413,
3621
+ "y": 1553.8571607942745,
4792
3622
  "width": 160,
4793
3623
  "height": 80,
4794
3624
  "angle": 0,
@@ -4820,21 +3650,21 @@
4820
3650
  }
4821
3651
  ],
4822
3652
  "locked": false,
4823
- "version": 2,
4824
- "versionNonce": 1964618421,
3653
+ "version": 391,
3654
+ "versionNonce": 1921699814,
4825
3655
  "index": "b0k",
4826
3656
  "isDeleted": false,
4827
3657
  "strokeStyle": "solid",
4828
3658
  "seed": 1,
4829
3659
  "frameId": null,
4830
- "updated": 1763522171080,
3660
+ "updated": 1764190763204,
4831
3661
  "link": null
4832
3662
  },
4833
3663
  {
4834
3664
  "id": "proc-retrospective-text",
4835
3665
  "type": "text",
4836
- "x": 1030,
4837
- "y": 2358,
3666
+ "x": 1184.3742521794413,
3667
+ "y": 1581.8571607942745,
4838
3668
  "width": 140,
4839
3669
  "height": 25,
4840
3670
  "angle": 0,
@@ -4854,8 +3684,8 @@
4854
3684
  "verticalAlign": "middle",
4855
3685
  "containerId": "proc-retrospective",
4856
3686
  "locked": false,
4857
- "version": 2,
4858
- "versionNonce": 1217904411,
3687
+ "version": 391,
3688
+ "versionNonce": 1572070182,
4859
3689
  "index": "b0l",
4860
3690
  "isDeleted": false,
4861
3691
  "strokeStyle": "solid",
@@ -4863,7 +3693,7 @@
4863
3693
  "frameId": null,
4864
3694
  "roundness": null,
4865
3695
  "boundElements": [],
4866
- "updated": 1763522171080,
3696
+ "updated": 1764190763204,
4867
3697
  "link": null,
4868
3698
  "originalText": "Retrospective",
4869
3699
  "autoResize": true,
@@ -4872,10 +3702,10 @@
4872
3702
  {
4873
3703
  "id": "arrow-retro-more-epics",
4874
3704
  "type": "arrow",
4875
- "x": 1100,
4876
- "y": 2410,
4877
- "width": 0,
4878
- "height": 30,
3705
+ "x": 1252.261821627823,
3706
+ "y": 1634.3087749555261,
3707
+ "width": 2.2496323163620673,
3708
+ "height": 42.83146813764597,
4879
3709
  "angle": 0,
4880
3710
  "strokeColor": "#1976d2",
4881
3711
  "backgroundColor": "transparent",
@@ -4886,12 +3716,12 @@
4886
3716
  "groupIds": [],
4887
3717
  "startBinding": {
4888
3718
  "elementId": "proc-retrospective",
4889
- "focus": 0,
3719
+ "focus": -0.00014865809573961995,
4890
3720
  "gap": 1
4891
3721
  },
4892
3722
  "endBinding": {
4893
3723
  "elementId": "decision-more-epics",
4894
- "focus": 0,
3724
+ "focus": 0.006063807827498143,
4895
3725
  "gap": 1
4896
3726
  },
4897
3727
  "points": [
@@ -4900,13 +3730,13 @@
4900
3730
  0
4901
3731
  ],
4902
3732
  [
4903
- 0,
4904
- 30
3733
+ -2.2496323163620673,
3734
+ 42.83146813764597
4905
3735
  ]
4906
3736
  ],
4907
3737
  "lastCommittedPoint": null,
4908
- "version": 2,
4909
- "versionNonce": 2098959381,
3738
+ "version": 957,
3739
+ "versionNonce": 1972295674,
4910
3740
  "index": "b0m",
4911
3741
  "isDeleted": false,
4912
3742
  "strokeStyle": "solid",
@@ -4914,7 +3744,7 @@
4914
3744
  "frameId": null,
4915
3745
  "roundness": null,
4916
3746
  "boundElements": [],
4917
- "updated": 1763522171080,
3747
+ "updated": 1764190763619,
4918
3748
  "link": null,
4919
3749
  "locked": false,
4920
3750
  "startArrowhead": null,
@@ -4923,8 +3753,8 @@
4923
3753
  {
4924
3754
  "id": "decision-more-epics",
4925
3755
  "type": "diamond",
4926
- "x": 1010,
4927
- "y": 2440,
3756
+ "x": 1156.5341271166512,
3757
+ "y": 1676.4331335811917,
4928
3758
  "width": 180,
4929
3759
  "height": 120,
4930
3760
  "angle": 0,
@@ -4956,22 +3786,22 @@
4956
3786
  }
4957
3787
  ],
4958
3788
  "locked": false,
4959
- "version": 2,
4960
- "versionNonce": 589767611,
3789
+ "version": 282,
3790
+ "versionNonce": 101589030,
4961
3791
  "index": "b0n",
4962
3792
  "isDeleted": false,
4963
3793
  "strokeStyle": "solid",
4964
3794
  "seed": 1,
4965
3795
  "frameId": null,
4966
3796
  "roundness": null,
4967
- "updated": 1763522171080,
3797
+ "updated": 1764190763204,
4968
3798
  "link": null
4969
3799
  },
4970
3800
  {
4971
3801
  "id": "decision-more-epics-text",
4972
3802
  "type": "text",
4973
- "x": 1025,
4974
- "y": 2475,
3803
+ "x": 1171.5341271166512,
3804
+ "y": 1711.4331335811917,
4975
3805
  "width": 150,
4976
3806
  "height": 50,
4977
3807
  "angle": 0,
@@ -4991,8 +3821,8 @@
4991
3821
  "verticalAlign": "middle",
4992
3822
  "containerId": "decision-more-epics",
4993
3823
  "locked": false,
4994
- "version": 2,
4995
- "versionNonce": 1629112693,
3824
+ "version": 282,
3825
+ "versionNonce": 2095262566,
4996
3826
  "index": "b0o",
4997
3827
  "isDeleted": false,
4998
3828
  "strokeStyle": "solid",
@@ -5000,7 +3830,7 @@
5000
3830
  "frameId": null,
5001
3831
  "roundness": null,
5002
3832
  "boundElements": [],
5003
- "updated": 1763522171080,
3833
+ "updated": 1764190763204,
5004
3834
  "link": null,
5005
3835
  "originalText": "More Epics?",
5006
3836
  "autoResize": true,
@@ -5009,10 +3839,10 @@
5009
3839
  {
5010
3840
  "id": "arrow-more-epics-yes",
5011
3841
  "type": "arrow",
5012
- "x": 1005,
5013
- "y": 2499.9,
5014
- "width": 335.74609375,
5015
- "height": 1390,
3842
+ "x": 1151.5341271166512,
3843
+ "y": 1736.3331335811918,
3844
+ "width": 194.92191691435096,
3845
+ "height": 1138.0678409916745,
5016
3846
  "angle": 0,
5017
3847
  "strokeColor": "#1976d2",
5018
3848
  "backgroundColor": "transparent",
@@ -5037,22 +3867,22 @@
5037
3867
  0
5038
3868
  ],
5039
3869
  [
5040
- -325.74609375,
3870
+ -184.89984110690511,
5041
3871
  0
5042
3872
  ],
5043
3873
  [
5044
- -325.74609375,
5045
- -1390
3874
+ -184.89984110690511,
3875
+ -1138.0678409916745
5046
3876
  ],
5047
3877
  [
5048
- 10,
5049
- -1390
3878
+ 10.022075807445844,
3879
+ -1138.0678409916745
5050
3880
  ]
5051
3881
  ],
5052
3882
  "lastCommittedPoint": null,
5053
3883
  "elbowed": true,
5054
- "version": 818,
5055
- "versionNonce": 1779029653,
3884
+ "version": 1805,
3885
+ "versionNonce": 1424088358,
5056
3886
  "index": "b0p",
5057
3887
  "isDeleted": false,
5058
3888
  "strokeStyle": "solid",
@@ -5060,7 +3890,7 @@
5060
3890
  "frameId": null,
5061
3891
  "roundness": null,
5062
3892
  "boundElements": [],
5063
- "updated": 1763522236433,
3893
+ "updated": 1764190763204,
5064
3894
  "link": null,
5065
3895
  "locked": false,
5066
3896
  "startArrowhead": null,
@@ -5069,12 +3899,12 @@
5069
3899
  {
5070
3900
  "index": 2,
5071
3901
  "start": [
5072
- -326.6484375,
5073
- -723.95
3902
+ -184.89984110690511,
3903
+ 0
5074
3904
  ],
5075
3905
  "end": [
5076
- -326.6484375,
5077
- -1390
3906
+ -184.89984110690511,
3907
+ -1138.0678409916745
5078
3908
  ]
5079
3909
  }
5080
3910
  ],
@@ -5084,8 +3914,8 @@
5084
3914
  {
5085
3915
  "id": "label-more-epics-yes",
5086
3916
  "type": "text",
5087
- "x": 712.078125,
5088
- "y": 2478.50390625,
3917
+ "x": 1016.7607529532588,
3918
+ "y": 1704.1213622982812,
5089
3919
  "width": 30,
5090
3920
  "height": 20,
5091
3921
  "angle": 0,
@@ -5102,8 +3932,8 @@
5102
3932
  "textAlign": "left",
5103
3933
  "verticalAlign": "top",
5104
3934
  "locked": false,
5105
- "version": 56,
5106
- "versionNonce": 1238151355,
3935
+ "version": 395,
3936
+ "versionNonce": 339167334,
5107
3937
  "index": "b0q",
5108
3938
  "isDeleted": false,
5109
3939
  "strokeStyle": "solid",
@@ -5111,7 +3941,7 @@
5111
3941
  "frameId": null,
5112
3942
  "roundness": null,
5113
3943
  "boundElements": [],
5114
- "updated": 1763522225296,
3944
+ "updated": 1764190763204,
5115
3945
  "link": null,
5116
3946
  "containerId": null,
5117
3947
  "originalText": "Yes",
@@ -5121,8 +3951,8 @@
5121
3951
  {
5122
3952
  "id": "arrow-more-epics-no",
5123
3953
  "type": "arrow",
5124
- "x": 1100,
5125
- "y": 2560,
3954
+ "x": 1246.5341271166512,
3955
+ "y": 1796.4331335811921,
5126
3956
  "width": 0,
5127
3957
  "height": 50,
5128
3958
  "angle": 0,
@@ -5134,9 +3964,9 @@
5134
3964
  "opacity": 100,
5135
3965
  "groupIds": [],
5136
3966
  "startBinding": {
5137
- "elementId": "decision-more-epics",
3967
+ "elementId": "label-more-epics-no",
5138
3968
  "focus": 0,
5139
- "gap": 1
3969
+ "gap": 14.142135623730951
5140
3970
  },
5141
3971
  "endBinding": {
5142
3972
  "elementId": "end-ellipse",
@@ -5154,8 +3984,8 @@
5154
3984
  ]
5155
3985
  ],
5156
3986
  "lastCommittedPoint": null,
5157
- "version": 2,
5158
- "versionNonce": 836219131,
3987
+ "version": 848,
3988
+ "versionNonce": 757113210,
5159
3989
  "index": "b0r",
5160
3990
  "isDeleted": false,
5161
3991
  "strokeStyle": "solid",
@@ -5163,7 +3993,7 @@
5163
3993
  "frameId": null,
5164
3994
  "roundness": null,
5165
3995
  "boundElements": [],
5166
- "updated": 1763522171080,
3996
+ "updated": 1764190763620,
5167
3997
  "link": null,
5168
3998
  "locked": false,
5169
3999
  "startArrowhead": null,
@@ -5172,8 +4002,8 @@
5172
4002
  {
5173
4003
  "id": "label-more-epics-no",
5174
4004
  "type": "text",
5175
- "x": 1110,
5176
- "y": 2570,
4005
+ "x": 1256.5341271166512,
4006
+ "y": 1806.4331335811921,
5177
4007
  "width": 25,
5178
4008
  "height": 20,
5179
4009
  "angle": 0,
@@ -5190,16 +4020,21 @@
5190
4020
  "textAlign": "left",
5191
4021
  "verticalAlign": "top",
5192
4022
  "locked": false,
5193
- "version": 2,
5194
- "versionNonce": 1031024693,
4023
+ "version": 283,
4024
+ "versionNonce": 1126229734,
5195
4025
  "index": "b0s",
5196
4026
  "isDeleted": false,
5197
4027
  "strokeStyle": "solid",
5198
4028
  "seed": 1,
5199
4029
  "frameId": null,
5200
4030
  "roundness": null,
5201
- "boundElements": [],
5202
- "updated": 1763522171080,
4031
+ "boundElements": [
4032
+ {
4033
+ "id": "arrow-more-epics-no",
4034
+ "type": "arrow"
4035
+ }
4036
+ ],
4037
+ "updated": 1764190763204,
5203
4038
  "link": null,
5204
4039
  "containerId": null,
5205
4040
  "originalText": "No",
@@ -5209,8 +4044,8 @@
5209
4044
  {
5210
4045
  "id": "end-ellipse",
5211
4046
  "type": "ellipse",
5212
- "x": 1040,
5213
- "y": 2610,
4047
+ "x": 1186.5341271166512,
4048
+ "y": 1846.4331335811921,
5214
4049
  "width": 120,
5215
4050
  "height": 60,
5216
4051
  "angle": 0,
@@ -5234,22 +4069,22 @@
5234
4069
  }
5235
4070
  ],
5236
4071
  "locked": false,
5237
- "version": 2,
5238
- "versionNonce": 659413403,
4072
+ "version": 282,
4073
+ "versionNonce": 370468198,
5239
4074
  "index": "b0t",
5240
4075
  "isDeleted": false,
5241
4076
  "strokeStyle": "solid",
5242
4077
  "seed": 1,
5243
4078
  "frameId": null,
5244
4079
  "roundness": null,
5245
- "updated": 1763522171080,
4080
+ "updated": 1764190763204,
5246
4081
  "link": null
5247
4082
  },
5248
4083
  {
5249
4084
  "id": "end-text",
5250
4085
  "type": "text",
5251
- "x": 1077,
5252
- "y": 2628,
4086
+ "x": 1223.5341271166512,
4087
+ "y": 1864.4331335811921,
5253
4088
  "width": 46,
5254
4089
  "height": 25,
5255
4090
  "angle": 0,
@@ -5269,8 +4104,8 @@
5269
4104
  "verticalAlign": "middle",
5270
4105
  "containerId": "end-ellipse",
5271
4106
  "locked": false,
5272
- "version": 2,
5273
- "versionNonce": 541745557,
4107
+ "version": 282,
4108
+ "versionNonce": 39798950,
5274
4109
  "index": "b0u",
5275
4110
  "isDeleted": false,
5276
4111
  "strokeStyle": "solid",
@@ -5278,7 +4113,7 @@
5278
4113
  "frameId": null,
5279
4114
  "roundness": null,
5280
4115
  "boundElements": [],
5281
- "updated": 1763522171080,
4116
+ "updated": 1764190763204,
5282
4117
  "link": null,
5283
4118
  "originalText": "End",
5284
4119
  "autoResize": true,
@@ -5907,6 +4742,286 @@
5907
4742
  "originalText": "Decision",
5908
4743
  "autoResize": true,
5909
4744
  "lineHeight": 1.25
4745
+ },
4746
+ {
4747
+ "id": "4chQ7PksRKpPe5YX-TfFJ",
4748
+ "type": "arrow",
4749
+ "x": 1250.9718703296421,
4750
+ "y": 1311.0799578560604,
4751
+ "width": 3.1071377799139555,
4752
+ "height": 47.57227388165256,
4753
+ "angle": 0,
4754
+ "strokeColor": "#1976d2",
4755
+ "backgroundColor": "transparent",
4756
+ "fillStyle": "solid",
4757
+ "strokeWidth": 2,
4758
+ "roughness": 0,
4759
+ "opacity": 100,
4760
+ "groupIds": [],
4761
+ "startBinding": {
4762
+ "elementId": "label-pass",
4763
+ "focus": 0.0002774287102738527,
4764
+ "gap": 9.837794264415606
4765
+ },
4766
+ "endBinding": {
4767
+ "elementId": "decision-more-stories",
4768
+ "focus": 0.07415216095379644,
4769
+ "gap": 5.01120144889627
4770
+ },
4771
+ "points": [
4772
+ [
4773
+ 0,
4774
+ 0
4775
+ ],
4776
+ [
4777
+ 3.1071377799139555,
4778
+ 47.57227388165256
4779
+ ]
4780
+ ],
4781
+ "lastCommittedPoint": null,
4782
+ "version": 1485,
4783
+ "versionNonce": 384699130,
4784
+ "index": "b1D",
4785
+ "isDeleted": false,
4786
+ "strokeStyle": "solid",
4787
+ "seed": 1128360742,
4788
+ "frameId": null,
4789
+ "roundness": null,
4790
+ "boundElements": [],
4791
+ "updated": 1764190763620,
4792
+ "link": null,
4793
+ "locked": false,
4794
+ "startArrowhead": null,
4795
+ "endArrowhead": "arrow"
4796
+ },
4797
+ {
4798
+ "id": "jv0rnlK2D9JKIGTO7pUtT",
4799
+ "type": "arrow",
4800
+ "x": 199.95091169427553,
4801
+ "y": 434.3642722686245,
4802
+ "width": 152.18808817436843,
4803
+ "height": 126.81486476828513,
4804
+ "angle": 0,
4805
+ "strokeColor": "#1976d2",
4806
+ "backgroundColor": "transparent",
4807
+ "fillStyle": "solid",
4808
+ "strokeWidth": 2,
4809
+ "roughness": 0,
4810
+ "opacity": 100,
4811
+ "groupIds": [],
4812
+ "startBinding": {
4813
+ "elementId": "proc-brainstorm",
4814
+ "focus": 0.3249856938901564,
4815
+ "gap": 1
4816
+ },
4817
+ "endBinding": {
4818
+ "elementId": "proc-prd",
4819
+ "focus": 0.40022808683972894,
4820
+ "gap": 7.158084853619243
4821
+ },
4822
+ "points": [
4823
+ [
4824
+ 0,
4825
+ 0
4826
+ ],
4827
+ [
4828
+ 69.77818267983719,
4829
+ 0.8988822936652241
4830
+ ],
4831
+ [
4832
+ 84.43045426782976,
4833
+ -84.30283196996788
4834
+ ],
4835
+ [
4836
+ 152.18808817436843,
4837
+ -125.91598247461991
4838
+ ]
4839
+ ],
4840
+ "lastCommittedPoint": null,
4841
+ "version": 2008,
4842
+ "versionNonce": 1304633062,
4843
+ "index": "b1F",
4844
+ "isDeleted": false,
4845
+ "strokeStyle": "solid",
4846
+ "seed": 753809018,
4847
+ "frameId": null,
4848
+ "roundness": {
4849
+ "type": 2
4850
+ },
4851
+ "boundElements": [],
4852
+ "updated": 1764191372763,
4853
+ "link": null,
4854
+ "locked": false,
4855
+ "startArrowhead": null,
4856
+ "endArrowhead": "arrow",
4857
+ "elbowed": false
4858
+ },
4859
+ {
4860
+ "id": "RF10FfKbmG72P77I2IoP4",
4861
+ "type": "arrow",
4862
+ "x": 200.50999902520755,
4863
+ "y": 524.3440535408814,
4864
+ "width": 155.72897460360434,
4865
+ "height": 217.43940257292877,
4866
+ "angle": 0,
4867
+ "strokeColor": "#1976d2",
4868
+ "backgroundColor": "transparent",
4869
+ "fillStyle": "solid",
4870
+ "strokeWidth": 2,
4871
+ "roughness": 0,
4872
+ "opacity": 100,
4873
+ "groupIds": [],
4874
+ "startBinding": {
4875
+ "elementId": "proc-research",
4876
+ "focus": 0.2547348377789515,
4877
+ "gap": 1
4878
+ },
4879
+ "endBinding": {
4880
+ "elementId": "proc-prd",
4881
+ "focus": 0.3948133447078272,
4882
+ "gap": 3.0581110934513163
4883
+ },
4884
+ "points": [
4885
+ [
4886
+ 0,
4887
+ 0
4888
+ ],
4889
+ [
4890
+ 71.74164413965786,
4891
+ -18.904836665604307
4892
+ ],
4893
+ [
4894
+ 83.93792495248488,
4895
+ -172.66332121061578
4896
+ ],
4897
+ [
4898
+ 155.72897460360434,
4899
+ -217.43940257292877
4900
+ ]
4901
+ ],
4902
+ "lastCommittedPoint": null,
4903
+ "version": 2022,
4904
+ "versionNonce": 1289623162,
4905
+ "index": "b1G",
4906
+ "isDeleted": false,
4907
+ "strokeStyle": "solid",
4908
+ "seed": 389493926,
4909
+ "frameId": null,
4910
+ "roundness": {
4911
+ "type": 2
4912
+ },
4913
+ "boundElements": [],
4914
+ "updated": 1764191336778,
4915
+ "link": null,
4916
+ "locked": false,
4917
+ "startArrowhead": null,
4918
+ "endArrowhead": "arrow",
4919
+ "elbowed": false
4920
+ },
4921
+ {
4922
+ "id": "FDR4ZvEvNmPvkP3HfQMY4",
4923
+ "type": "arrow",
4924
+ "x": 523.1179307657023,
4925
+ "y": 528.6598293249855,
4926
+ "width": 156.49193140361945,
4927
+ "height": 211.37494429949584,
4928
+ "angle": 0,
4929
+ "strokeColor": "#1976d2",
4930
+ "backgroundColor": "transparent",
4931
+ "fillStyle": "solid",
4932
+ "strokeWidth": 2,
4933
+ "roughness": 0,
4934
+ "opacity": 100,
4935
+ "groupIds": [],
4936
+ "startBinding": null,
4937
+ "endBinding": null,
4938
+ "points": [
4939
+ [
4940
+ 0,
4941
+ 0
4942
+ ],
4943
+ [
4944
+ 67.6421465593952,
4945
+ -30.201232355758236
4946
+ ],
4947
+ [
4948
+ 96.50992722652438,
4949
+ -178.58566948715793
4950
+ ],
4951
+ [
4952
+ 156.49193140361945,
4953
+ -211.37494429949584
4954
+ ]
4955
+ ],
4956
+ "lastCommittedPoint": null,
4957
+ "version": 672,
4958
+ "versionNonce": 1827754470,
4959
+ "index": "b1I",
4960
+ "isDeleted": false,
4961
+ "strokeStyle": "solid",
4962
+ "seed": 310318758,
4963
+ "frameId": null,
4964
+ "roundness": {
4965
+ "type": 2
4966
+ },
4967
+ "boundElements": [],
4968
+ "updated": 1764191558236,
4969
+ "link": null,
4970
+ "locked": false,
4971
+ "startArrowhead": null,
4972
+ "endArrowhead": "arrow",
4973
+ "elbowed": false
4974
+ },
4975
+ {
4976
+ "id": "arrow-prd-hasui",
4977
+ "type": "arrow",
4978
+ "x": 440,
4979
+ "y": 330,
4980
+ "width": 0,
4981
+ "height": 140,
4982
+ "angle": 0,
4983
+ "strokeColor": "#1976d2",
4984
+ "backgroundColor": "transparent",
4985
+ "fillStyle": "solid",
4986
+ "strokeWidth": 2,
4987
+ "roughness": 0,
4988
+ "opacity": 100,
4989
+ "groupIds": [],
4990
+ "startBinding": {
4991
+ "elementId": "proc-prd",
4992
+ "focus": 0,
4993
+ "gap": 1
4994
+ },
4995
+ "endBinding": {
4996
+ "elementId": "decision-has-ui",
4997
+ "focus": 0,
4998
+ "gap": 1
4999
+ },
5000
+ "points": [
5001
+ [
5002
+ 0,
5003
+ 0
5004
+ ],
5005
+ [
5006
+ 0,
5007
+ 140
5008
+ ]
5009
+ ],
5010
+ "lastCommittedPoint": null,
5011
+ "version": 1,
5012
+ "versionNonce": 1,
5013
+ "index": "b1J",
5014
+ "isDeleted": false,
5015
+ "strokeStyle": "solid",
5016
+ "seed": 1,
5017
+ "frameId": null,
5018
+ "roundness": null,
5019
+ "boundElements": [],
5020
+ "updated": 1764952855000,
5021
+ "link": null,
5022
+ "locked": false,
5023
+ "startArrowhead": null,
5024
+ "endArrowhead": "arrow"
5910
5025
  }
5911
5026
  ],
5912
5027
  "appState": {