bmad-method 6.0.0-alpha.11 → 6.0.0-alpha.13

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 (491) hide show
  1. package/.github/workflows/bundle-latest.yaml +79 -27
  2. package/CHANGELOG.md +167 -1
  3. package/README.md +3 -1
  4. package/custom/src/agents/commit-poet/commit-poet.agent.yaml +129 -0
  5. package/custom/src/agents/commit-poet/installation-guide.md +36 -0
  6. package/custom/src/agents/toolsmith/installation-guide.md +36 -0
  7. package/custom/src/agents/toolsmith/toolsmith-sidecar/instructions.md +70 -0
  8. package/custom/src/agents/toolsmith/toolsmith-sidecar/knowledge/bundlers.md +111 -0
  9. package/custom/src/agents/toolsmith/toolsmith-sidecar/knowledge/deploy.md +70 -0
  10. package/custom/src/agents/toolsmith/toolsmith-sidecar/knowledge/docs.md +114 -0
  11. package/custom/src/agents/toolsmith/toolsmith-sidecar/knowledge/installers.md +134 -0
  12. package/custom/src/agents/toolsmith/toolsmith-sidecar/knowledge/modules.md +161 -0
  13. package/custom/src/agents/toolsmith/toolsmith-sidecar/knowledge/tests.md +103 -0
  14. package/custom/src/agents/toolsmith/toolsmith-sidecar/memories.md +17 -0
  15. package/custom/src/agents/toolsmith/toolsmith.agent.yaml +108 -0
  16. package/docs/custom-agent-installation.md +31 -17
  17. package/docs/ide-info/rovo-dev.md +388 -0
  18. package/docs/index.md +6 -81
  19. package/docs/installers-bundlers/installers-modules-platforms-reference.md +1 -1
  20. package/package.json +3 -2
  21. package/src/core/agents/bmad-master.agent.yaml +1 -1
  22. package/src/core/agents/bmad-web-orchestrator.agent.xml +1 -1
  23. package/src/core/tasks/advanced-elicitation-methods.csv +51 -21
  24. package/src/core/tasks/advanced-elicitation.xml +18 -8
  25. package/src/core/tasks/workflow.xml +36 -71
  26. package/src/core/workflows/brainstorming/brain-methods.csv +62 -36
  27. package/src/core/workflows/brainstorming/steps/step-01-session-setup.md +196 -0
  28. package/src/core/workflows/brainstorming/steps/step-01b-continue.md +121 -0
  29. package/src/core/workflows/brainstorming/steps/step-02a-user-selected.md +224 -0
  30. package/src/core/workflows/brainstorming/steps/step-02b-ai-recommended.md +236 -0
  31. package/src/core/workflows/brainstorming/steps/step-02c-random-selection.md +208 -0
  32. package/src/core/workflows/brainstorming/steps/step-02d-progressive-flow.md +263 -0
  33. package/src/core/workflows/brainstorming/steps/step-03-technique-execution.md +339 -0
  34. package/src/core/workflows/brainstorming/steps/step-04-idea-organization.md +302 -0
  35. package/src/core/workflows/brainstorming/template.md +13 -104
  36. package/src/core/workflows/brainstorming/workflow.md +51 -0
  37. package/src/core/workflows/party-mode/steps/step-01-agent-loading.md +138 -0
  38. package/src/core/workflows/party-mode/steps/step-02-discussion-orchestration.md +203 -0
  39. package/src/core/workflows/party-mode/steps/step-03-graceful-exit.md +159 -0
  40. package/src/core/workflows/party-mode/workflow.md +207 -0
  41. package/src/modules/bmb/README.md +153 -86
  42. package/src/modules/bmb/_module-installer/install-config.yaml +3 -3
  43. package/src/modules/bmb/agents/bmad-builder.agent.yaml +45 -31
  44. package/src/modules/bmb/docs/{agent-menu-patterns.md → agents/agent-menu-patterns.md} +1 -1
  45. package/src/modules/bmb/docs/agents/kb.csv +0 -0
  46. package/src/modules/bmb/docs/{module-agent-architecture.md → agents/module-agent-architecture.md} +1 -1
  47. package/src/modules/bmb/docs/{simple-agent-architecture.md → agents/simple-agent-architecture.md} +1 -1
  48. package/src/modules/bmb/docs/workflows/architecture.md +220 -0
  49. package/src/modules/bmb/docs/workflows/common-workflow-tools.csv +19 -0
  50. package/src/modules/bmb/docs/workflows/csv-data-file-standards.md +206 -0
  51. package/src/modules/bmb/docs/workflows/index.md +45 -0
  52. package/src/modules/bmb/docs/workflows/intent-vs-prescriptive-spectrum.md +220 -0
  53. package/src/modules/bmb/docs/workflows/kb.csv +0 -0
  54. package/src/modules/bmb/docs/workflows/step-template.md +283 -0
  55. package/src/modules/bmb/docs/workflows/terms.md +97 -0
  56. package/src/modules/bmb/docs/workflows/workflow-template.md +152 -0
  57. package/src/modules/bmb/reference/agents/module-examples/README.md +1 -1
  58. package/src/modules/bmb/reference/agents/module-examples/security-engineer.agent.yaml +2 -2
  59. package/src/modules/bmb/reference/agents/module-examples/trend-analyst.agent.yaml +1 -1
  60. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/data/dietary-restrictions.csv +18 -0
  61. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/data/macro-calculator.csv +16 -0
  62. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/data/recipe-database.csv +28 -0
  63. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-01-init.md +177 -0
  64. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-01b-continue.md +150 -0
  65. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-02-profile.md +164 -0
  66. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-03-assessment.md +152 -0
  67. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-04-strategy.md +182 -0
  68. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-05-shopping.md +167 -0
  69. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/steps/step-06-prep-schedule.md +194 -0
  70. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/assessment-section.md +25 -0
  71. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/nutrition-plan.md +68 -0
  72. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/prep-schedule-section.md +29 -0
  73. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/profile-section.md +47 -0
  74. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/shopping-section.md +37 -0
  75. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/templates/strategy-section.md +18 -0
  76. package/src/modules/bmb/reference/workflows/meal-prep-nutrition/workflow.md +58 -0
  77. package/src/modules/bmb/workflows/create-agent/data/info-and-installation-guide.md +17 -0
  78. package/src/modules/bmb/workflows/create-agent/data/reference/README.md +3 -0
  79. package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/README.md +242 -0
  80. package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/breakthroughs.md +24 -0
  81. package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/instructions.md +108 -0
  82. package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/memories.md +46 -0
  83. package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper-sidecar/mood-patterns.md +39 -0
  84. package/src/modules/bmb/workflows/create-agent/data/reference/agents/expert-examples/journal-keeper/journal-keeper.agent.yaml +152 -0
  85. package/src/modules/bmb/workflows/create-agent/data/reference/agents/module-examples/README.md +50 -0
  86. package/src/modules/bmb/workflows/create-agent/data/reference/agents/module-examples/security-engineer.agent.yaml +53 -0
  87. package/src/modules/bmb/workflows/create-agent/data/reference/agents/module-examples/trend-analyst.agent.yaml +57 -0
  88. package/src/modules/bmb/workflows/create-agent/data/reference/agents/simple-examples/README.md +223 -0
  89. package/src/modules/bmb/workflows/create-agent/data/reference/agents/simple-examples/commit-poet.agent.yaml +126 -0
  90. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/data/dietary-restrictions.csv +18 -0
  91. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/data/macro-calculator.csv +16 -0
  92. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/data/recipe-database.csv +28 -0
  93. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-01-init.md +177 -0
  94. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-01b-continue.md +150 -0
  95. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-02-profile.md +164 -0
  96. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-03-assessment.md +152 -0
  97. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-04-strategy.md +182 -0
  98. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-05-shopping.md +167 -0
  99. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/steps/step-06-prep-schedule.md +194 -0
  100. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/assessment-section.md +25 -0
  101. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/nutrition-plan.md +68 -0
  102. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/prep-schedule-section.md +29 -0
  103. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/profile-section.md +47 -0
  104. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/shopping-section.md +37 -0
  105. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/templates/strategy-section.md +18 -0
  106. package/src/modules/bmb/workflows/create-agent/data/reference/workflows/meal-prep-nutrition/workflow.md +58 -0
  107. package/src/modules/bmb/workflows/create-agent/data/validation-complete.md +305 -0
  108. package/src/modules/bmb/workflows/create-agent/steps/step-01-brainstorm.md +145 -0
  109. package/src/modules/bmb/workflows/create-agent/steps/step-02-discover.md +210 -0
  110. package/src/modules/bmb/workflows/create-agent/steps/step-03-persona.md +260 -0
  111. package/src/modules/bmb/workflows/create-agent/steps/step-04-commands.md +237 -0
  112. package/src/modules/bmb/workflows/create-agent/steps/step-05-name.md +231 -0
  113. package/src/modules/bmb/workflows/create-agent/steps/step-06-build.md +224 -0
  114. package/src/modules/bmb/workflows/create-agent/steps/step-07-validate.md +234 -0
  115. package/src/modules/bmb/workflows/create-agent/steps/step-08-setup.md +179 -0
  116. package/src/modules/bmb/workflows/create-agent/steps/step-09-customize.md +197 -0
  117. package/src/modules/bmb/workflows/create-agent/steps/step-10-build-tools.md +180 -0
  118. package/src/modules/bmb/workflows/create-agent/steps/step-11-celebrate.md +222 -0
  119. package/src/modules/bmb/workflows/create-agent/templates/agent_commands.md +21 -0
  120. package/src/modules/bmb/workflows/create-agent/templates/agent_persona.md +25 -0
  121. package/src/modules/bmb/workflows/create-agent/templates/agent_purpose_and_type.md +23 -0
  122. package/src/modules/bmb/workflows/create-agent/workflow.md +91 -0
  123. package/src/modules/bmb/workflows/create-workflow/steps/step-01-init.md +168 -0
  124. package/src/modules/bmb/workflows/create-workflow/steps/step-02-gather.md +233 -0
  125. package/src/modules/bmb/workflows/create-workflow/steps/step-03-tools-overview.md +127 -0
  126. package/src/modules/bmb/workflows/create-workflow/steps/step-04-core-tools.md +145 -0
  127. package/src/modules/bmb/workflows/create-workflow/steps/step-05-memory-requirements.md +136 -0
  128. package/src/modules/bmb/workflows/create-workflow/steps/step-06-external-tools.md +154 -0
  129. package/src/modules/bmb/workflows/create-workflow/steps/step-07-installation-guidance.md +159 -0
  130. package/src/modules/bmb/workflows/create-workflow/steps/step-08-tools-summary.md +167 -0
  131. package/src/modules/bmb/workflows/create-workflow/steps/step-09-design.md +239 -0
  132. package/src/modules/bmb/workflows/create-workflow/steps/step-10-plan-review.md +215 -0
  133. package/src/modules/bmb/workflows/create-workflow/steps/step-11-build.md +262 -0
  134. package/src/modules/bmb/workflows/create-workflow/steps/step-12-review.md +270 -0
  135. package/src/modules/bmb/workflows/create-workflow/templates/build-summary.md +36 -0
  136. package/src/modules/bmb/workflows/create-workflow/templates/completion-section.md +39 -0
  137. package/src/modules/bmb/workflows/create-workflow/templates/content-template.md +21 -0
  138. package/src/modules/bmb/workflows/create-workflow/templates/design-section.md +53 -0
  139. package/src/modules/bmb/workflows/create-workflow/templates/project-info.md +18 -0
  140. package/src/modules/bmb/workflows/create-workflow/templates/requirements-section.md +47 -0
  141. package/src/modules/bmb/workflows/create-workflow/templates/review-section.md +56 -0
  142. package/src/modules/bmb/workflows/create-workflow/templates/step-file.md +139 -0
  143. package/src/modules/bmb/workflows/create-workflow/templates/workflow-plan.md +54 -0
  144. package/src/modules/bmb/workflows/create-workflow/templates/workflow.md +58 -0
  145. package/src/modules/bmb/workflows/create-workflow/workflow.md +58 -0
  146. package/src/modules/bmb/workflows/edit-agent/steps/step-01-discover-intent.md +134 -0
  147. package/src/modules/bmb/workflows/edit-agent/steps/step-02-analyze-agent.md +202 -0
  148. package/src/modules/bmb/workflows/edit-agent/steps/step-03-propose-changes.md +157 -0
  149. package/src/modules/bmb/workflows/edit-agent/steps/step-04-apply-changes.md +150 -0
  150. package/src/modules/bmb/workflows/edit-agent/steps/step-05-validate.md +150 -0
  151. package/src/modules/bmb/workflows/edit-agent/workflow.md +58 -0
  152. package/src/modules/bmb/workflows/edit-workflow/steps/step-01-analyze.md +221 -0
  153. package/src/modules/bmb/workflows/edit-workflow/steps/step-02-discover.md +253 -0
  154. package/src/modules/bmb/workflows/edit-workflow/steps/step-03-improve.md +217 -0
  155. package/src/modules/bmb/workflows/edit-workflow/steps/step-04-validate.md +193 -0
  156. package/src/modules/bmb/workflows/edit-workflow/steps/step-05-compliance-check.md +245 -0
  157. package/src/modules/bmb/workflows/edit-workflow/templates/completion-summary.md +75 -0
  158. package/src/modules/bmb/workflows/edit-workflow/templates/improvement-goals.md +68 -0
  159. package/src/modules/bmb/workflows/edit-workflow/templates/improvement-log.md +40 -0
  160. package/src/modules/bmb/workflows/edit-workflow/templates/validation-results.md +51 -0
  161. package/src/modules/bmb/workflows/edit-workflow/templates/workflow-analysis.md +56 -0
  162. package/src/modules/bmb/workflows/edit-workflow/workflow.md +58 -0
  163. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-01-validate-goal.md +152 -0
  164. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-02-workflow-validation.md +243 -0
  165. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-03-step-validation.md +274 -0
  166. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-04-file-validation.md +295 -0
  167. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-05-intent-spectrum-validation.md +264 -0
  168. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-06-web-subprocess-validation.md +360 -0
  169. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-07-holistic-analysis.md +258 -0
  170. package/src/modules/bmb/workflows/workflow-compliance-check/steps/step-08-generate-report.md +301 -0
  171. package/src/modules/bmb/workflows/workflow-compliance-check/templates/compliance-report.md +140 -0
  172. package/src/modules/bmb/workflows/workflow-compliance-check/workflow.md +58 -0
  173. package/src/modules/bmgd/agents/game-architect.agent.yaml +1 -1
  174. package/src/modules/bmgd/agents/game-designer.agent.yaml +1 -1
  175. package/src/modules/bmgd/agents/game-dev.agent.yaml +1 -1
  176. package/src/modules/bmgd/agents/game-scrum-master.agent.yaml +1 -1
  177. package/src/modules/bmm/_module-installer/install-config.yaml +9 -15
  178. package/src/modules/bmm/agents/analyst.agent.yaml +14 -14
  179. package/src/modules/bmm/agents/architect.agent.yaml +12 -10
  180. package/src/modules/bmm/agents/dev.agent.yaml +20 -16
  181. package/src/modules/bmm/agents/pm.agent.yaml +13 -31
  182. package/src/modules/bmm/agents/quick-flow-solo-dev.agent.yaml +36 -0
  183. package/src/modules/bmm/agents/sm.agent.yaml +13 -31
  184. package/src/modules/bmm/agents/tea.agent.yaml +10 -7
  185. package/src/modules/bmm/agents/tech-writer.agent.yaml +7 -20
  186. package/src/modules/bmm/agents/ux-designer.agent.yaml +12 -10
  187. package/src/modules/bmm/data/README.md +29 -0
  188. package/src/modules/bmm/data/project-context-template.md +40 -0
  189. package/src/modules/bmm/docs/README.md +21 -9
  190. package/src/modules/bmm/docs/agents-guide.md +69 -23
  191. package/src/modules/bmm/docs/bmad-quick-flow.md +528 -0
  192. package/src/modules/bmm/docs/brownfield-guide.md +9 -10
  193. package/src/modules/bmm/docs/enterprise-agentic-development.md +1 -1
  194. package/src/modules/bmm/docs/glossary.md +5 -5
  195. package/src/modules/bmm/docs/images/workflow-method-greenfield.excalidraw +909 -1654
  196. package/src/modules/bmm/docs/images/workflow-method-greenfield.svg +2 -2
  197. package/src/modules/bmm/docs/quick-flow-solo-dev.md +337 -0
  198. package/src/modules/bmm/docs/scale-adaptive-system.md +5 -5
  199. package/src/modules/bmm/docs/test-architecture.md +84 -18
  200. package/src/modules/bmm/docs/workflows-analysis.md +36 -140
  201. package/src/modules/bmm/docs/workflows-implementation.md +32 -157
  202. package/src/modules/bmm/docs/workflows-planning.md +51 -212
  203. package/src/modules/bmm/docs/workflows-solutioning.md +24 -69
  204. package/src/modules/bmm/teams/default-party.csv +15 -14
  205. package/src/modules/bmm/teams/team-fullstack.yaml +0 -1
  206. package/src/modules/bmm/testarch/knowledge/api-request.md +303 -0
  207. package/src/modules/bmm/testarch/knowledge/auth-session.md +356 -0
  208. package/src/modules/bmm/testarch/knowledge/burn-in.md +273 -0
  209. package/src/modules/bmm/testarch/knowledge/file-utils.md +260 -0
  210. package/src/modules/bmm/testarch/knowledge/fixtures-composition.md +382 -0
  211. package/src/modules/bmm/testarch/knowledge/intercept-network-call.md +280 -0
  212. package/src/modules/bmm/testarch/knowledge/log.md +294 -0
  213. package/src/modules/bmm/testarch/knowledge/network-error-monitor.md +272 -0
  214. package/src/modules/bmm/testarch/knowledge/network-recorder.md +265 -0
  215. package/src/modules/bmm/testarch/knowledge/overview.md +284 -0
  216. package/src/modules/bmm/testarch/knowledge/recurse.md +296 -0
  217. package/src/modules/bmm/testarch/tea-index.csv +11 -0
  218. package/src/modules/bmm/workflows/1-analysis/product-brief/product-brief.template.md +8 -0
  219. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-01-init.md +192 -0
  220. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-01b-continue.md +167 -0
  221. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-02-vision.md +203 -0
  222. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-03-users.md +206 -0
  223. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-04-metrics.md +209 -0
  224. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-05-scope.md +223 -0
  225. package/src/modules/bmm/workflows/1-analysis/product-brief/steps/step-06-complete.md +199 -0
  226. package/src/modules/bmm/workflows/1-analysis/product-brief/workflow.md +58 -0
  227. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-01-init.md +136 -0
  228. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-02-domain-analysis.md +228 -0
  229. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-03-competitive-landscape.md +237 -0
  230. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-04-regulatory-focus.md +205 -0
  231. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-05-technical-trends.md +233 -0
  232. package/src/modules/bmm/workflows/1-analysis/research/domain-steps/step-06-research-synthesis.md +443 -0
  233. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-01-init.md +182 -0
  234. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-02-customer-behavior.md +235 -0
  235. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-02-customer-insights.md +198 -0
  236. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-03-customer-pain-points.md +247 -0
  237. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-04-customer-decisions.md +257 -0
  238. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-05-competitive-analysis.md +175 -0
  239. package/src/modules/bmm/workflows/1-analysis/research/market-steps/step-06-research-completion.md +475 -0
  240. package/src/modules/bmm/workflows/1-analysis/research/research.template.md +16 -0
  241. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-01-init.md +136 -0
  242. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-02-technical-overview.md +237 -0
  243. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-03-integration-patterns.md +246 -0
  244. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-04-architectural-patterns.md +200 -0
  245. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-05-implementation-research.md +237 -0
  246. package/src/modules/bmm/workflows/1-analysis/research/technical-steps/step-06-research-synthesis.md +486 -0
  247. package/src/modules/bmm/workflows/1-analysis/research/workflow.md +198 -0
  248. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01-init.md +159 -0
  249. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01b-continue.md +126 -0
  250. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-02-discovery.md +209 -0
  251. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md +215 -0
  252. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md +218 -0
  253. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-05-inspiration.md +233 -0
  254. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-06-design-system.md +251 -0
  255. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-07-defining-experience.md +253 -0
  256. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-08-visual-foundation.md +223 -0
  257. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-09-design-directions.md +223 -0
  258. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-10-user-journeys.md +240 -0
  259. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-11-component-strategy.md +247 -0
  260. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-12-ux-patterns.md +236 -0
  261. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-13-responsive-accessibility.md +263 -0
  262. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md +226 -0
  263. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +6 -138
  264. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md +53 -0
  265. package/src/modules/bmm/workflows/2-plan-workflows/prd/prd-template.md +5 -200
  266. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-01-init.md +161 -0
  267. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-01b-continue.md +123 -0
  268. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-02-discovery.md +275 -0
  269. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-03-success.md +271 -0
  270. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-04-journeys.md +272 -0
  271. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-05-domain.md +249 -0
  272. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-06-innovation.md +240 -0
  273. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-07-project-type.md +236 -0
  274. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-08-scoping.md +280 -0
  275. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-09-functional.md +251 -0
  276. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-10-nonfunctional.md +275 -0
  277. package/src/modules/bmm/workflows/2-plan-workflows/prd/steps/step-11-complete.md +210 -0
  278. package/src/modules/bmm/workflows/2-plan-workflows/prd/workflow.md +61 -0
  279. package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-decision-template.md +13 -0
  280. package/src/modules/bmm/workflows/3-solutioning/architecture/data/domain-complexity.csv +11 -0
  281. package/src/modules/bmm/workflows/3-solutioning/architecture/data/project-types.csv +7 -0
  282. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-01-init.md +194 -0
  283. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-01b-continue.md +163 -0
  284. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-02-context.md +223 -0
  285. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-03-starter.md +330 -0
  286. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-04-decisions.md +317 -0
  287. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-05-patterns.md +358 -0
  288. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-06-structure.md +378 -0
  289. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-07-validation.md +358 -0
  290. package/src/modules/bmm/workflows/3-solutioning/architecture/steps/step-08-complete.md +351 -0
  291. package/src/modules/bmm/workflows/3-solutioning/architecture/workflow.md +48 -0
  292. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/instructions.md +247 -476
  293. package/src/modules/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.yaml +8 -18
  294. package/src/modules/bmm/workflows/4-implementation/code-review/instructions.xml +176 -0
  295. package/src/modules/bmm/workflows/4-implementation/code-review/workflow.yaml +4 -11
  296. package/src/modules/bmm/workflows/4-implementation/create-story/checklist.md +332 -214
  297. package/src/modules/bmm/workflows/4-implementation/create-story/instructions.xml +324 -0
  298. package/src/modules/bmm/workflows/4-implementation/create-story/workflow.yaml +21 -34
  299. package/src/modules/bmm/workflows/4-implementation/dev-story/checklist.md +65 -23
  300. package/src/modules/bmm/workflows/4-implementation/dev-story/instructions.xml +406 -0
  301. package/src/modules/bmm/workflows/4-implementation/dev-story/workflow.yaml +6 -37
  302. package/src/modules/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +4 -3
  303. package/src/modules/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +2 -0
  304. package/src/modules/bmm/workflows/bmad-quick-flow/create-tech-spec/instructions.md +115 -0
  305. package/src/modules/bmm/workflows/bmad-quick-flow/create-tech-spec/workflow.yaml +26 -0
  306. package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/checklist.md +25 -0
  307. package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/instructions.md +105 -0
  308. package/src/modules/bmm/workflows/bmad-quick-flow/quick-dev/workflow.yaml +29 -0
  309. package/src/modules/bmm/workflows/generate-project-context/project-context-template.md +20 -0
  310. package/src/modules/bmm/workflows/generate-project-context/steps/step-01-discover.md +193 -0
  311. package/src/modules/bmm/workflows/generate-project-context/steps/step-02-generate.md +317 -0
  312. package/src/modules/bmm/workflows/generate-project-context/steps/step-03-complete.md +277 -0
  313. package/src/modules/bmm/workflows/generate-project-context/workflow.md +48 -0
  314. package/src/modules/bmm/workflows/testarch/atdd/instructions.md +23 -3
  315. package/src/modules/bmm/workflows/testarch/automate/instructions.md +23 -2
  316. package/src/modules/bmm/workflows/testarch/ci/instructions.md +18 -1
  317. package/src/modules/bmm/workflows/testarch/framework/instructions.md +27 -1
  318. package/src/modules/bmm/workflows/testarch/test-design/instructions.md +8 -2
  319. package/src/modules/bmm/workflows/testarch/test-review/instructions.md +28 -8
  320. package/src/modules/bmm/workflows/workflow-status/init/instructions.md +66 -54
  321. package/src/modules/bmm/workflows/workflow-status/instructions.md +11 -4
  322. package/src/modules/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +3 -2
  323. package/src/modules/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +3 -2
  324. package/src/modules/bmm/workflows/workflow-status/paths/method-brownfield.yaml +3 -2
  325. package/src/modules/bmm/workflows/workflow-status/paths/method-greenfield.yaml +3 -2
  326. package/src/modules/cis/agents/README.md +1 -1
  327. package/src/modules/cis/agents/brainstorming-coach.agent.yaml +3 -2
  328. package/src/modules/cis/agents/creative-problem-solver.agent.yaml +2 -1
  329. package/src/modules/cis/agents/design-thinking-coach.agent.yaml +2 -1
  330. package/src/modules/cis/agents/innovation-strategist.agent.yaml +2 -1
  331. package/src/modules/cis/agents/presentation-master.agent.yaml +3 -2
  332. package/src/modules/cis/agents/storyteller.agent.yaml +2 -1
  333. package/src/modules/cis/teams/default-party.csv +6 -5
  334. package/src/utility/models/agent-activation-ide.xml +4 -4
  335. package/src/utility/models/agent-activation-web.xml +1 -11
  336. package/src/utility/models/fragments/activation-rules.xml +5 -6
  337. package/src/utility/models/fragments/handler-exec.xml +6 -5
  338. package/src/utility/models/fragments/handler-multi.xml +14 -0
  339. package/test/README.md +1 -1
  340. package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +1 -3
  341. package/tools/cli/README.md +1 -0
  342. package/tools/cli/bundlers/web-bundler.js +3 -14
  343. package/tools/cli/commands/agent-install.js +8 -8
  344. package/tools/cli/commands/cleanup.js +141 -0
  345. package/tools/cli/commands/install.js +48 -3
  346. package/tools/cli/installers/lib/core/config-collector.js +24 -0
  347. package/tools/cli/installers/lib/core/installer.js +612 -43
  348. package/tools/cli/installers/lib/ide/antigravity.js +51 -7
  349. package/tools/cli/installers/lib/ide/auggie.js +53 -0
  350. package/tools/cli/installers/lib/ide/claude-code.js +1 -6
  351. package/tools/cli/installers/lib/ide/cline.js +49 -0
  352. package/tools/cli/installers/lib/ide/codex.js +2 -2
  353. package/tools/cli/installers/lib/ide/crush.js +47 -0
  354. package/tools/cli/installers/lib/ide/gemini.js +47 -0
  355. package/tools/cli/installers/lib/ide/github-copilot.js +59 -48
  356. package/tools/cli/installers/lib/ide/iflow.js +47 -0
  357. package/tools/cli/installers/lib/ide/kilo.js +74 -0
  358. package/tools/cli/installers/lib/ide/qwen.js +54 -0
  359. package/tools/cli/installers/lib/ide/roo.js +71 -0
  360. package/tools/cli/installers/lib/ide/rovo-dev.js +290 -0
  361. package/tools/cli/installers/lib/ide/trae.js +47 -0
  362. package/tools/cli/lib/agent/compiler.js +156 -22
  363. package/tools/cli/lib/agent/installer.js +13 -3
  364. package/tools/cli/lib/agent-analyzer.js +46 -18
  365. package/tools/cli/lib/ui.js +204 -9
  366. package/tools/cli/lib/yaml-xml-builder.js +123 -24
  367. package/tools/platform-codes.yaml +12 -0
  368. package/tools/schema/agent.js +169 -20
  369. package/src/core/tasks/adv-elicit-methods.csv +0 -39
  370. package/src/core/workflows/brainstorming/README.md +0 -261
  371. package/src/core/workflows/brainstorming/instructions.md +0 -315
  372. package/src/core/workflows/brainstorming/workflow.yaml +0 -38
  373. package/src/core/workflows/party-mode/instructions.md +0 -183
  374. package/src/core/workflows/party-mode/workflow.yaml +0 -28
  375. package/src/modules/bmb/workflows/audit-workflow/checklist.md +0 -142
  376. package/src/modules/bmb/workflows/audit-workflow/instructions.md +0 -341
  377. package/src/modules/bmb/workflows/audit-workflow/template.md +0 -118
  378. package/src/modules/bmb/workflows/audit-workflow/workflow.yaml +0 -25
  379. package/src/modules/bmb/workflows/convert-legacy/README.md +0 -262
  380. package/src/modules/bmb/workflows/convert-legacy/checklist.md +0 -205
  381. package/src/modules/bmb/workflows/convert-legacy/instructions.md +0 -377
  382. package/src/modules/bmb/workflows/convert-legacy/workflow.yaml +0 -30
  383. package/src/modules/bmb/workflows/create-agent/instructions.md +0 -519
  384. package/src/modules/bmb/workflows/create-agent/workflow.yaml +0 -55
  385. package/src/modules/bmb/workflows/create-workflow/README.md +0 -277
  386. package/src/modules/bmb/workflows/create-workflow/brainstorm-context.md +0 -197
  387. package/src/modules/bmb/workflows/create-workflow/checklist.md +0 -94
  388. package/src/modules/bmb/workflows/create-workflow/instructions.md +0 -725
  389. package/src/modules/bmb/workflows/create-workflow/workflow-creation-guide.md +0 -1327
  390. package/src/modules/bmb/workflows/create-workflow/workflow-template/checklist.md +0 -24
  391. package/src/modules/bmb/workflows/create-workflow/workflow-template/instructions.md +0 -15
  392. package/src/modules/bmb/workflows/create-workflow/workflow-template/template.md +0 -9
  393. package/src/modules/bmb/workflows/create-workflow/workflow-template/workflow.yaml +0 -61
  394. package/src/modules/bmb/workflows/create-workflow/workflow.yaml +0 -41
  395. package/src/modules/bmb/workflows/edit-agent/README.md +0 -239
  396. package/src/modules/bmb/workflows/edit-agent/instructions.md +0 -654
  397. package/src/modules/bmb/workflows/edit-agent/workflow.yaml +0 -49
  398. package/src/modules/bmb/workflows/edit-workflow/README.md +0 -119
  399. package/src/modules/bmb/workflows/edit-workflow/checklist.md +0 -70
  400. package/src/modules/bmb/workflows/edit-workflow/instructions.md +0 -342
  401. package/src/modules/bmb/workflows/edit-workflow/workflow.yaml +0 -27
  402. package/src/modules/bmm/_module-installer/assets/bmm-kb.md +0 -1
  403. package/src/modules/bmm/_module-installer/assets/technical-decisions.md +0 -30
  404. package/src/modules/bmm/docs/quick-spec-flow.md +0 -652
  405. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/instructions.md +0 -112
  406. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/project-context.md +0 -25
  407. package/src/modules/bmm/workflows/1-analysis/brainstorm-project/workflow.yaml +0 -39
  408. package/src/modules/bmm/workflows/1-analysis/domain-research/instructions.md +0 -425
  409. package/src/modules/bmm/workflows/1-analysis/domain-research/template.md +0 -180
  410. package/src/modules/bmm/workflows/1-analysis/domain-research/workflow.yaml +0 -56
  411. package/src/modules/bmm/workflows/1-analysis/product-brief/checklist.md +0 -115
  412. package/src/modules/bmm/workflows/1-analysis/product-brief/instructions.md +0 -524
  413. package/src/modules/bmm/workflows/1-analysis/product-brief/template.md +0 -181
  414. package/src/modules/bmm/workflows/1-analysis/product-brief/workflow.yaml +0 -61
  415. package/src/modules/bmm/workflows/1-analysis/research/checklist-deep-prompt.md +0 -144
  416. package/src/modules/bmm/workflows/1-analysis/research/checklist-technical.md +0 -249
  417. package/src/modules/bmm/workflows/1-analysis/research/checklist.md +0 -299
  418. package/src/modules/bmm/workflows/1-analysis/research/claude-code/injections.yaml +0 -114
  419. package/src/modules/bmm/workflows/1-analysis/research/instructions-deep-prompt.md +0 -438
  420. package/src/modules/bmm/workflows/1-analysis/research/instructions-market.md +0 -675
  421. package/src/modules/bmm/workflows/1-analysis/research/instructions-router.md +0 -134
  422. package/src/modules/bmm/workflows/1-analysis/research/instructions-technical.md +0 -534
  423. package/src/modules/bmm/workflows/1-analysis/research/template-deep-prompt.md +0 -94
  424. package/src/modules/bmm/workflows/1-analysis/research/template-market.md +0 -347
  425. package/src/modules/bmm/workflows/1-analysis/research/template-technical.md +0 -245
  426. package/src/modules/bmm/workflows/1-analysis/research/workflow.yaml +0 -62
  427. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/checklist.md +0 -310
  428. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/instructions.md +0 -1308
  429. package/src/modules/bmm/workflows/2-plan-workflows/create-ux-design/workflow.yaml +0 -93
  430. package/src/modules/bmm/workflows/2-plan-workflows/prd/checklist.md +0 -346
  431. package/src/modules/bmm/workflows/2-plan-workflows/prd/instructions.md +0 -703
  432. package/src/modules/bmm/workflows/2-plan-workflows/prd/workflow.yaml +0 -78
  433. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/checklist.md +0 -217
  434. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/epics-template.md +0 -74
  435. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions-generate-stories.md +0 -436
  436. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/instructions.md +0 -980
  437. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/tech-spec-template.md +0 -181
  438. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/user-story-template.md +0 -90
  439. package/src/modules/bmm/workflows/2-plan-workflows/tech-spec/workflow.yaml +0 -60
  440. package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-patterns.yaml +0 -321
  441. package/src/modules/bmm/workflows/3-solutioning/architecture/architecture-template.md +0 -103
  442. package/src/modules/bmm/workflows/3-solutioning/architecture/checklist.md +0 -240
  443. package/src/modules/bmm/workflows/3-solutioning/architecture/decision-catalog.yaml +0 -222
  444. package/src/modules/bmm/workflows/3-solutioning/architecture/instructions.md +0 -768
  445. package/src/modules/bmm/workflows/3-solutioning/architecture/pattern-categories.csv +0 -13
  446. package/src/modules/bmm/workflows/3-solutioning/architecture/workflow.yaml +0 -100
  447. package/src/modules/bmm/workflows/4-implementation/code-review/backlog_template.md +0 -12
  448. package/src/modules/bmm/workflows/4-implementation/code-review/checklist.md +0 -22
  449. package/src/modules/bmm/workflows/4-implementation/code-review/instructions.md +0 -398
  450. package/src/modules/bmm/workflows/4-implementation/create-story/instructions.md +0 -256
  451. package/src/modules/bmm/workflows/4-implementation/dev-story/instructions.md +0 -267
  452. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/checklist.md +0 -17
  453. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/instructions.md +0 -164
  454. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/template.md +0 -76
  455. package/src/modules/bmm/workflows/4-implementation/epic-tech-context/workflow.yaml +0 -58
  456. package/src/modules/bmm/workflows/4-implementation/story-context/checklist.md +0 -16
  457. package/src/modules/bmm/workflows/4-implementation/story-context/context-template.xml +0 -34
  458. package/src/modules/bmm/workflows/4-implementation/story-context/instructions.md +0 -209
  459. package/src/modules/bmm/workflows/4-implementation/story-context/workflow.yaml +0 -63
  460. package/src/modules/bmm/workflows/4-implementation/story-done/instructions.md +0 -111
  461. package/src/modules/bmm/workflows/4-implementation/story-done/workflow.yaml +0 -28
  462. package/src/modules/bmm/workflows/4-implementation/story-ready/instructions.md +0 -117
  463. package/src/modules/bmm/workflows/4-implementation/story-ready/workflow.yaml +0 -25
  464. package/src/modules/bmm/workflows/workflow-status/paths/quick-flow-brownfield.yaml +0 -58
  465. package/src/modules/bmm/workflows/workflow-status/paths/quick-flow-greenfield.yaml +0 -47
  466. /package/src/modules/bmb/docs/{agent-compilation.md → agents/agent-compilation.md} +0 -0
  467. /package/src/modules/bmb/docs/{expert-agent-architecture.md → agents/expert-agent-architecture.md} +0 -0
  468. /package/src/modules/bmb/docs/{index.md → agents/index.md} +0 -0
  469. /package/src/modules/bmb/docs/{understanding-agent-types.md → agents/understanding-agent-types.md} +0 -0
  470. /package/src/modules/bmb/reference/{readme.md → README.md} +0 -0
  471. /package/src/modules/bmb/workflows/create-agent/{agent-validation-checklist.md → data/agent-validation-checklist.md} +0 -0
  472. /package/src/modules/bmb/workflows/create-agent/{brainstorm-context.md → data/brainstorm-context.md} +0 -0
  473. /package/src/modules/bmb/workflows/create-agent/{communication-presets.csv → data/communication-presets.csv} +0 -0
  474. /package/src/modules/bmb/{workflows → workflows-legacy}/create-module/README.md +0 -0
  475. /package/src/modules/bmb/{workflows → workflows-legacy}/create-module/brainstorm-context.md +0 -0
  476. /package/src/modules/bmb/{workflows → workflows-legacy}/create-module/checklist.md +0 -0
  477. /package/src/modules/bmb/{workflows → workflows-legacy}/create-module/installer-templates/install-config.yaml +0 -0
  478. /package/src/modules/bmb/{workflows → workflows-legacy}/create-module/installer-templates/installer.js +0 -0
  479. /package/src/modules/bmb/{workflows → workflows-legacy}/create-module/instructions.md +0 -0
  480. /package/src/modules/bmb/{workflows → workflows-legacy}/create-module/module-structure.md +0 -0
  481. /package/src/modules/bmb/{workflows → workflows-legacy}/create-module/workflow.yaml +0 -0
  482. /package/src/modules/bmb/{workflows → workflows-legacy}/edit-module/README.md +0 -0
  483. /package/src/modules/bmb/{workflows → workflows-legacy}/edit-module/checklist.md +0 -0
  484. /package/src/modules/bmb/{workflows → workflows-legacy}/edit-module/instructions.md +0 -0
  485. /package/src/modules/bmb/{workflows → workflows-legacy}/edit-module/workflow.yaml +0 -0
  486. /package/src/modules/bmb/{workflows → workflows-legacy}/module-brief/README.md +0 -0
  487. /package/src/modules/bmb/{workflows → workflows-legacy}/module-brief/checklist.md +0 -0
  488. /package/src/modules/bmb/{workflows → workflows-legacy}/module-brief/instructions.md +0 -0
  489. /package/src/modules/bmb/{workflows → workflows-legacy}/module-brief/template.md +0 -0
  490. /package/src/modules/bmb/{workflows → workflows-legacy}/module-brief/workflow.yaml +0 -0
  491. /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,
@@ -1023,17 +1043,29 @@
1023
1043
  {
1024
1044
  "id": "arrow-phase1-to-phase2",
1025
1045
  "type": "arrow"
1046
+ },
1047
+ {
1048
+ "id": "RF10FfKbmG72P77I2IoP4",
1049
+ "type": "arrow"
1050
+ },
1051
+ {
1052
+ "id": "jv0rnlK2D9JKIGTO7pUtT",
1053
+ "type": "arrow"
1054
+ },
1055
+ {
1056
+ "id": "arrow-has-ui-no",
1057
+ "type": "arrow"
1026
1058
  }
1027
1059
  ],
1028
1060
  "locked": false,
1029
- "version": 102,
1030
- "versionNonce": 1152453237,
1061
+ "version": 107,
1062
+ "versionNonce": 930129274,
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": 1764191563350,
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,7 +1101,7 @@
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,
@@ -1078,9 +1110,9 @@
1078
1110
  {
1079
1111
  "id": "arrow-prd-validate",
1080
1112
  "type": "arrow",
1081
- "x": 439.38101944508776,
1113
+ "x": 439.4640518625828,
1082
1114
  "y": 331.0450590268819,
1083
- "width": 0.2006820852784017,
1115
+ "width": 0.17283039375342923,
1084
1116
  "height": 28.50332681186643,
1085
1117
  "angle": 0,
1086
1118
  "strokeColor": "#1976d2",
@@ -1106,13 +1138,13 @@
1106
1138
  0
1107
1139
  ],
1108
1140
  [
1109
- 0.2006820852784017,
1141
+ 0.17283039375342923,
1110
1142
  28.50332681186643
1111
1143
  ]
1112
1144
  ],
1113
1145
  "lastCommittedPoint": null,
1114
- "version": 101,
1115
- "versionNonce": 901883893,
1146
+ "version": 102,
1147
+ "versionNonce": 1274591910,
1116
1148
  "index": "aP",
1117
1149
  "isDeleted": false,
1118
1150
  "strokeStyle": "solid",
@@ -1120,7 +1152,7 @@
1120
1152
  "frameId": null,
1121
1153
  "roundness": null,
1122
1154
  "boundElements": [],
1123
- "updated": 1763522366664,
1155
+ "updated": 1764191023838,
1124
1156
  "link": null,
1125
1157
  "locked": false,
1126
1158
  "startArrowhead": null,
@@ -1159,17 +1191,21 @@
1159
1191
  {
1160
1192
  "type": "arrow",
1161
1193
  "id": "arrow-validate-prd-hasui"
1194
+ },
1195
+ {
1196
+ "id": "jv0rnlK2D9JKIGTO7pUtT",
1197
+ "type": "arrow"
1162
1198
  }
1163
1199
  ],
1164
1200
  "locked": false,
1165
- "version": 2,
1166
- "versionNonce": 1542331989,
1201
+ "version": 3,
1202
+ "versionNonce": 894806650,
1167
1203
  "index": "aQ",
1168
1204
  "isDeleted": false,
1169
1205
  "strokeStyle": "solid",
1170
1206
  "seed": 1,
1171
1207
  "frameId": null,
1172
- "updated": 1763522171080,
1208
+ "updated": 1764191341774,
1173
1209
  "link": null
1174
1210
  },
1175
1211
  {
@@ -1524,10 +1560,10 @@
1524
1560
  {
1525
1561
  "id": "arrow-has-ui-no",
1526
1562
  "type": "arrow",
1527
- "x": 520,
1528
- "y": 520,
1529
- "width": 140,
1530
- "height": 0,
1563
+ "x": 517.6863546461885,
1564
+ "y": 287.4640953051147,
1565
+ "width": 158.4487370618814,
1566
+ "height": 25.521141112371026,
1531
1567
  "angle": 0,
1532
1568
  "strokeColor": "#1976d2",
1533
1569
  "backgroundColor": "transparent",
@@ -1537,14 +1573,14 @@
1537
1573
  "opacity": 100,
1538
1574
  "groupIds": [],
1539
1575
  "startBinding": {
1540
- "elementId": "decision-has-ui",
1541
- "focus": 0,
1542
- "gap": 1
1576
+ "elementId": "proc-prd",
1577
+ "focus": -0.13686633304390483,
1578
+ "gap": 1.6107300760746739
1543
1579
  },
1544
1580
  "endBinding": {
1545
1581
  "elementId": "proc-architecture",
1546
- "focus": -0.3,
1547
- "gap": 1
1582
+ "focus": 0.16050512337240405,
1583
+ "gap": 6.573819526326588
1548
1584
  },
1549
1585
  "points": [
1550
1586
  [
@@ -1552,25 +1588,36 @@
1552
1588
  0
1553
1589
  ],
1554
1590
  [
1555
- 140,
1556
- 0
1591
+ 65.15287677643596,
1592
+ 2.2657676476494544
1593
+ ],
1594
+ [
1595
+ 111.59197355857077,
1596
+ 25.521141112371026
1597
+ ],
1598
+ [
1599
+ 158.4487370618814,
1600
+ 24.060724236900796
1557
1601
  ]
1558
1602
  ],
1559
1603
  "lastCommittedPoint": null,
1560
- "version": 2,
1561
- "versionNonce": 26036219,
1604
+ "version": 831,
1605
+ "versionNonce": 1382987110,
1562
1606
  "index": "aZ",
1563
1607
  "isDeleted": false,
1564
1608
  "strokeStyle": "solid",
1565
1609
  "seed": 1,
1566
1610
  "frameId": null,
1567
- "roundness": null,
1611
+ "roundness": {
1612
+ "type": 2
1613
+ },
1568
1614
  "boundElements": [],
1569
- "updated": 1763522171080,
1615
+ "updated": 1764191570205,
1570
1616
  "link": null,
1571
1617
  "locked": false,
1572
1618
  "startArrowhead": null,
1573
- "endArrowhead": "arrow"
1619
+ "endArrowhead": "arrow",
1620
+ "elbowed": false
1574
1621
  },
1575
1622
  {
1576
1623
  "id": "label-no-ui",
@@ -1593,16 +1640,21 @@
1593
1640
  "textAlign": "left",
1594
1641
  "verticalAlign": "top",
1595
1642
  "locked": false,
1596
- "version": 2,
1597
- "versionNonce": 516393269,
1643
+ "version": 5,
1644
+ "versionNonce": 183981370,
1598
1645
  "index": "aa",
1599
1646
  "isDeleted": false,
1600
1647
  "strokeStyle": "solid",
1601
1648
  "seed": 1,
1602
1649
  "frameId": null,
1603
1650
  "roundness": null,
1604
- "boundElements": [],
1605
- "updated": 1763522171080,
1651
+ "boundElements": [
1652
+ {
1653
+ "id": "arrow-has-ui-no",
1654
+ "type": "arrow"
1655
+ }
1656
+ ],
1657
+ "updated": 1764191508105,
1606
1658
  "link": null,
1607
1659
  "containerId": null,
1608
1660
  "originalText": "No",
@@ -1612,10 +1664,10 @@
1612
1664
  {
1613
1665
  "id": "arrow-ux-to-phase3",
1614
1666
  "type": "arrow",
1615
- "x": 520,
1616
- "y": 640,
1617
- "width": 140,
1618
- "height": 0,
1667
+ "x": 523.3221723982787,
1668
+ "y": 642.0805139439535,
1669
+ "width": 158.4945254931572,
1670
+ "height": 296.63050159541245,
1619
1671
  "angle": 0,
1620
1672
  "strokeColor": "#1976d2",
1621
1673
  "backgroundColor": "transparent",
@@ -1626,12 +1678,12 @@
1626
1678
  "groupIds": [],
1627
1679
  "startBinding": {
1628
1680
  "elementId": "proc-ux-design",
1629
- "focus": 0,
1630
- "gap": 1
1681
+ "focus": 0.5906867967554547,
1682
+ "gap": 3.322172398278667
1631
1683
  },
1632
1684
  "endBinding": {
1633
1685
  "elementId": "proc-architecture",
1634
- "focus": 0.3,
1686
+ "focus": 0.3856343135512404,
1635
1687
  "gap": 1
1636
1688
  },
1637
1689
  "points": [
@@ -1640,31 +1692,42 @@
1640
1692
  0
1641
1693
  ],
1642
1694
  [
1643
- 140,
1644
- 0
1695
+ 76.98345162139776,
1696
+ -45.99075822656016
1697
+ ],
1698
+ [
1699
+ 116.19277860378315,
1700
+ -258.3973533698057
1701
+ ],
1702
+ [
1703
+ 158.4945254931572,
1704
+ -296.63050159541245
1645
1705
  ]
1646
1706
  ],
1647
1707
  "lastCommittedPoint": null,
1648
- "version": 2,
1649
- "versionNonce": 976785563,
1708
+ "version": 328,
1709
+ "versionNonce": 517434918,
1650
1710
  "index": "ab",
1651
1711
  "isDeleted": false,
1652
1712
  "strokeStyle": "solid",
1653
1713
  "seed": 1,
1654
1714
  "frameId": null,
1655
- "roundness": null,
1715
+ "roundness": {
1716
+ "type": 2
1717
+ },
1656
1718
  "boundElements": [],
1657
- "updated": 1763522171080,
1719
+ "updated": 1764191529677,
1658
1720
  "link": null,
1659
1721
  "locked": false,
1660
1722
  "startArrowhead": null,
1661
- "endArrowhead": "arrow"
1723
+ "endArrowhead": "arrow",
1724
+ "elbowed": false
1662
1725
  },
1663
1726
  {
1664
1727
  "id": "phase3-header",
1665
1728
  "type": "text",
1666
- "x": 660,
1667
- "y": 180,
1729
+ "x": 709.0199784799299,
1730
+ "y": 181.88359184111607,
1668
1731
  "width": 200,
1669
1732
  "height": 30,
1670
1733
  "angle": 0,
@@ -1681,8 +1744,8 @@
1681
1744
  "textAlign": "left",
1682
1745
  "verticalAlign": "top",
1683
1746
  "locked": false,
1684
- "version": 2,
1685
- "versionNonce": 264936085,
1747
+ "version": 32,
1748
+ "versionNonce": 1258326202,
1686
1749
  "index": "ac",
1687
1750
  "isDeleted": false,
1688
1751
  "strokeStyle": "solid",
@@ -1690,7 +1753,7 @@
1690
1753
  "frameId": null,
1691
1754
  "roundness": null,
1692
1755
  "boundElements": [],
1693
- "updated": 1763522171080,
1756
+ "updated": 1764190667244,
1694
1757
  "link": null,
1695
1758
  "containerId": null,
1696
1759
  "originalText": "PHASE 3",
@@ -1700,8 +1763,8 @@
1700
1763
  {
1701
1764
  "id": "phase3-subtitle",
1702
1765
  "type": "text",
1703
- "x": 660,
1704
- "y": 210,
1766
+ "x": 687.4485256281371,
1767
+ "y": 215.63080811867223,
1705
1768
  "width": 220,
1706
1769
  "height": 20,
1707
1770
  "angle": 0,
@@ -1718,8 +1781,8 @@
1718
1781
  "textAlign": "left",
1719
1782
  "verticalAlign": "top",
1720
1783
  "locked": false,
1721
- "version": 2,
1722
- "versionNonce": 464635195,
1784
+ "version": 35,
1785
+ "versionNonce": 360954426,
1723
1786
  "index": "ad",
1724
1787
  "isDeleted": false,
1725
1788
  "strokeStyle": "solid",
@@ -1727,7 +1790,7 @@
1727
1790
  "frameId": null,
1728
1791
  "roundness": null,
1729
1792
  "boundElements": [],
1730
- "updated": 1763522171080,
1793
+ "updated": 1764190669111,
1731
1794
  "link": null,
1732
1795
  "containerId": null,
1733
1796
  "originalText": "Solutioning (Required)",
@@ -1737,8 +1800,8 @@
1737
1800
  {
1738
1801
  "id": "proc-architecture",
1739
1802
  "type": "rectangle",
1740
- "x": 680,
1741
- "y": 480,
1803
+ "x": 682.7089112343965,
1804
+ "y": 275.64692474279855,
1742
1805
  "width": 160,
1743
1806
  "height": 80,
1744
1807
  "angle": 0,
@@ -1760,10 +1823,6 @@
1760
1823
  "type": "text",
1761
1824
  "id": "proc-architecture-text"
1762
1825
  },
1763
- {
1764
- "type": "arrow",
1765
- "id": "arrow-has-ui-no"
1766
- },
1767
1826
  {
1768
1827
  "type": "arrow",
1769
1828
  "id": "arrow-ux-to-phase3"
@@ -1771,24 +1830,28 @@
1771
1830
  {
1772
1831
  "type": "arrow",
1773
1832
  "id": "arrow-arch-epics"
1833
+ },
1834
+ {
1835
+ "id": "arrow-has-ui-no",
1836
+ "type": "arrow"
1774
1837
  }
1775
1838
  ],
1776
1839
  "locked": false,
1777
- "version": 2,
1778
- "versionNonce": 86278133,
1840
+ "version": 90,
1841
+ "versionNonce": 1912262330,
1779
1842
  "index": "ae",
1780
1843
  "isDeleted": false,
1781
1844
  "strokeStyle": "solid",
1782
1845
  "seed": 1,
1783
1846
  "frameId": null,
1784
- "updated": 1763522171080,
1847
+ "updated": 1764191508105,
1785
1848
  "link": null
1786
1849
  },
1787
1850
  {
1788
1851
  "id": "proc-architecture-text",
1789
1852
  "type": "text",
1790
- "x": 690,
1791
- "y": 508,
1853
+ "x": 692.7089112343965,
1854
+ "y": 303.64692474279855,
1792
1855
  "width": 140,
1793
1856
  "height": 25,
1794
1857
  "angle": 0,
@@ -1808,8 +1871,8 @@
1808
1871
  "verticalAlign": "middle",
1809
1872
  "containerId": "proc-architecture",
1810
1873
  "locked": false,
1811
- "version": 2,
1812
- "versionNonce": 760964571,
1874
+ "version": 88,
1875
+ "versionNonce": 452440186,
1813
1876
  "index": "af",
1814
1877
  "isDeleted": false,
1815
1878
  "strokeStyle": "solid",
@@ -1817,7 +1880,7 @@
1817
1880
  "frameId": null,
1818
1881
  "roundness": null,
1819
1882
  "boundElements": [],
1820
- "updated": 1763522171080,
1883
+ "updated": 1764191451669,
1821
1884
  "link": null,
1822
1885
  "originalText": "Architecture",
1823
1886
  "autoResize": true,
@@ -1826,10 +1889,10 @@
1826
1889
  {
1827
1890
  "id": "arrow-arch-epics",
1828
1891
  "type": "arrow",
1829
- "x": 760,
1830
- "y": 560,
1831
- "width": 0,
1832
- "height": 30,
1892
+ "x": 760.6640738654764,
1893
+ "y": 358.02872135607737,
1894
+ "width": 0.007789277755136936,
1895
+ "height": 35.679359419065065,
1833
1896
  "angle": 0,
1834
1897
  "strokeColor": "#1976d2",
1835
1898
  "backgroundColor": "transparent",
@@ -1840,13 +1903,13 @@
1840
1903
  "groupIds": [],
1841
1904
  "startBinding": {
1842
1905
  "elementId": "proc-architecture",
1843
- "focus": 0,
1844
- "gap": 1
1906
+ "focus": 0.025673321057619772,
1907
+ "gap": 2.381796613278823
1845
1908
  },
1846
1909
  "endBinding": {
1847
- "elementId": "proc-epics",
1848
- "focus": 0,
1849
- "gap": 1
1910
+ "elementId": "proc-validate-arch",
1911
+ "focus": -0.09156227842994098,
1912
+ "gap": 2.5273595258319688
1850
1913
  },
1851
1914
  "points": [
1852
1915
  [
@@ -1854,13 +1917,13 @@
1854
1917
  0
1855
1918
  ],
1856
1919
  [
1857
- 0,
1858
- 30
1920
+ 0.007789277755136936,
1921
+ 35.679359419065065
1859
1922
  ]
1860
1923
  ],
1861
1924
  "lastCommittedPoint": null,
1862
- "version": 2,
1863
- "versionNonce": 1960491349,
1925
+ "version": 549,
1926
+ "versionNonce": 1665519674,
1864
1927
  "index": "ag",
1865
1928
  "isDeleted": false,
1866
1929
  "strokeStyle": "solid",
@@ -1868,7 +1931,7 @@
1868
1931
  "frameId": null,
1869
1932
  "roundness": null,
1870
1933
  "boundElements": [],
1871
- "updated": 1763522171080,
1934
+ "updated": 1764191459184,
1872
1935
  "link": null,
1873
1936
  "locked": false,
1874
1937
  "startArrowhead": null,
@@ -1877,8 +1940,8 @@
1877
1940
  {
1878
1941
  "id": "proc-epics",
1879
1942
  "type": "rectangle",
1880
- "x": 680,
1881
- "y": 590,
1943
+ "x": 670.1028230821919,
1944
+ "y": 510.76268244350774,
1882
1945
  "width": 160,
1883
1946
  "height": 80,
1884
1947
  "angle": 0,
@@ -1907,24 +1970,28 @@
1907
1970
  {
1908
1971
  "type": "arrow",
1909
1972
  "id": "arrow-epics-test"
1973
+ },
1974
+ {
1975
+ "id": "arrow-validate-ready",
1976
+ "type": "arrow"
1910
1977
  }
1911
1978
  ],
1912
1979
  "locked": false,
1913
- "version": 2,
1914
- "versionNonce": 1715991163,
1980
+ "version": 178,
1981
+ "versionNonce": 1597058278,
1915
1982
  "index": "ah",
1916
1983
  "isDeleted": false,
1917
1984
  "strokeStyle": "solid",
1918
1985
  "seed": 1,
1919
1986
  "frameId": null,
1920
- "updated": 1763522171080,
1987
+ "updated": 1764191442604,
1921
1988
  "link": null
1922
1989
  },
1923
1990
  {
1924
1991
  "id": "proc-epics-text",
1925
1992
  "type": "text",
1926
- "x": 690,
1927
- "y": 618,
1993
+ "x": 680.1028230821919,
1994
+ "y": 538.7626824435077,
1928
1995
  "width": 140,
1929
1996
  "height": 25,
1930
1997
  "angle": 0,
@@ -1944,8 +2011,8 @@
1944
2011
  "verticalAlign": "middle",
1945
2012
  "containerId": "proc-epics",
1946
2013
  "locked": false,
1947
- "version": 2,
1948
- "versionNonce": 2017642165,
2014
+ "version": 177,
2015
+ "versionNonce": 2105920614,
1949
2016
  "index": "ai",
1950
2017
  "isDeleted": false,
1951
2018
  "strokeStyle": "solid",
@@ -1953,7 +2020,7 @@
1953
2020
  "frameId": null,
1954
2021
  "roundness": null,
1955
2022
  "boundElements": [],
1956
- "updated": 1763522171080,
2023
+ "updated": 1764191427908,
1957
2024
  "link": null,
1958
2025
  "originalText": "Epics/Stories",
1959
2026
  "autoResize": true,
@@ -1962,10 +2029,10 @@
1962
2029
  {
1963
2030
  "id": "arrow-epics-test",
1964
2031
  "type": "arrow",
1965
- "x": 760,
1966
- "y": 670,
1967
- "width": 0,
1968
- "height": 30,
2032
+ "x": 750.5489606775325,
2033
+ "y": 591.2142966047594,
2034
+ "width": 0.4387418927216231,
2035
+ "height": 60.43894121748178,
1969
2036
  "angle": 0,
1970
2037
  "strokeColor": "#1976d2",
1971
2038
  "backgroundColor": "transparent",
@@ -1990,13 +2057,13 @@
1990
2057
  0
1991
2058
  ],
1992
2059
  [
1993
- 0,
1994
- 30
2060
+ 0.4387418927216231,
2061
+ 60.43894121748178
1995
2062
  ]
1996
2063
  ],
1997
2064
  "lastCommittedPoint": null,
1998
- "version": 2,
1999
- "versionNonce": 926542619,
2065
+ "version": 358,
2066
+ "versionNonce": 1168009958,
2000
2067
  "index": "aj",
2001
2068
  "isDeleted": false,
2002
2069
  "strokeStyle": "solid",
@@ -2004,7 +2071,7 @@
2004
2071
  "frameId": null,
2005
2072
  "roundness": null,
2006
2073
  "boundElements": [],
2007
- "updated": 1763522171080,
2074
+ "updated": 1764191427908,
2008
2075
  "link": null,
2009
2076
  "locked": false,
2010
2077
  "startArrowhead": null,
@@ -2013,8 +2080,8 @@
2013
2080
  {
2014
2081
  "id": "proc-test-design",
2015
2082
  "type": "rectangle",
2016
- "x": 680,
2017
- "y": 700,
2083
+ "x": 671.2209977440557,
2084
+ "y": 652.1048519834928,
2018
2085
  "width": 160,
2019
2086
  "height": 80,
2020
2087
  "angle": 0,
@@ -2046,22 +2113,22 @@
2046
2113
  }
2047
2114
  ],
2048
2115
  "locked": false,
2049
- "version": 2,
2050
- "versionNonce": 1644308501,
2116
+ "version": 124,
2117
+ "versionNonce": 456543462,
2051
2118
  "index": "ak",
2052
2119
  "isDeleted": false,
2053
2120
  "strokeStyle": "solid",
2054
2121
  "seed": 1,
2055
2122
  "frameId": null,
2056
- "updated": 1763522171080,
2123
+ "updated": 1764191425140,
2057
2124
  "link": null
2058
2125
  },
2059
2126
  {
2060
2127
  "id": "proc-test-design-text",
2061
2128
  "type": "text",
2062
- "x": 690,
2063
- "y": 715,
2064
- "width": 140,
2129
+ "x": 709.1090363793096,
2130
+ "y": 667.1048519834928,
2131
+ "width": 84.22392272949219,
2065
2132
  "height": 50,
2066
2133
  "angle": 0,
2067
2134
  "strokeColor": "#1e1e1e",
@@ -2075,13 +2142,13 @@
2075
2142
  ],
2076
2143
  "fontSize": 14,
2077
2144
  "fontFamily": 1,
2078
- "text": "Test Design\n<<recommended>>",
2145
+ "text": "Test Design\n<<optional>>",
2079
2146
  "textAlign": "center",
2080
2147
  "verticalAlign": "middle",
2081
2148
  "containerId": "proc-test-design",
2082
2149
  "locked": false,
2083
- "version": 2,
2084
- "versionNonce": 1420021691,
2150
+ "version": 133,
2151
+ "versionNonce": 1038598182,
2085
2152
  "index": "al",
2086
2153
  "isDeleted": false,
2087
2154
  "strokeStyle": "solid",
@@ -2089,19 +2156,19 @@
2089
2156
  "frameId": null,
2090
2157
  "roundness": null,
2091
2158
  "boundElements": [],
2092
- "updated": 1763522171080,
2159
+ "updated": 1764191425140,
2093
2160
  "link": null,
2094
- "originalText": "Test Design\n<<recommended>>",
2161
+ "originalText": "Test Design\n<<optional>>",
2095
2162
  "autoResize": true,
2096
2163
  "lineHeight": 1.7857142857142858
2097
2164
  },
2098
2165
  {
2099
2166
  "id": "arrow-test-validate",
2100
2167
  "type": "arrow",
2101
- "x": 760,
2102
- "y": 780,
2103
- "width": 0,
2104
- "height": 30,
2168
+ "x": 742.3164554890545,
2169
+ "y": 732.7428812826017,
2170
+ "width": 0.2331013464803391,
2171
+ "height": 41.16039866169126,
2105
2172
  "angle": 0,
2106
2173
  "strokeColor": "#1976d2",
2107
2174
  "backgroundColor": "transparent",
@@ -2112,13 +2179,13 @@
2112
2179
  "groupIds": [],
2113
2180
  "startBinding": {
2114
2181
  "elementId": "proc-test-design",
2115
- "focus": 0,
2116
- "gap": 1
2182
+ "focus": 0.11090307971902064,
2183
+ "gap": 1.407314849962063
2117
2184
  },
2118
2185
  "endBinding": {
2119
- "elementId": "proc-validate-arch",
2120
- "focus": 0,
2121
- "gap": 1
2186
+ "elementId": "proc-impl-ready",
2187
+ "focus": -0.07891534010655449,
2188
+ "gap": 6.845537084300759
2122
2189
  },
2123
2190
  "points": [
2124
2191
  [
@@ -2126,13 +2193,13 @@
2126
2193
  0
2127
2194
  ],
2128
2195
  [
2129
- 0,
2130
- 30
2196
+ 0.2331013464803391,
2197
+ 41.16039866169126
2131
2198
  ]
2132
2199
  ],
2133
2200
  "lastCommittedPoint": null,
2134
- "version": 2,
2135
- "versionNonce": 336485749,
2201
+ "version": 482,
2202
+ "versionNonce": 362456762,
2136
2203
  "index": "am",
2137
2204
  "isDeleted": false,
2138
2205
  "strokeStyle": "solid",
@@ -2140,7 +2207,7 @@
2140
2207
  "frameId": null,
2141
2208
  "roundness": null,
2142
2209
  "boundElements": [],
2143
- "updated": 1763522171080,
2210
+ "updated": 1764191475964,
2144
2211
  "link": null,
2145
2212
  "locked": false,
2146
2213
  "startArrowhead": null,
@@ -2149,8 +2216,8 @@
2149
2216
  {
2150
2217
  "id": "proc-validate-arch",
2151
2218
  "type": "rectangle",
2152
- "x": 680,
2153
- "y": 810,
2219
+ "x": 688.0069292751327,
2220
+ "y": 396.2354403009744,
2154
2221
  "width": 160,
2155
2222
  "height": 80,
2156
2223
  "angle": 0,
@@ -2179,24 +2246,28 @@
2179
2246
  {
2180
2247
  "type": "arrow",
2181
2248
  "id": "arrow-validate-ready"
2249
+ },
2250
+ {
2251
+ "id": "arrow-arch-epics",
2252
+ "type": "arrow"
2182
2253
  }
2183
2254
  ],
2184
2255
  "locked": false,
2185
- "version": 2,
2186
- "versionNonce": 1084760155,
2256
+ "version": 234,
2257
+ "versionNonce": 940473658,
2187
2258
  "index": "an",
2188
2259
  "isDeleted": false,
2189
2260
  "strokeStyle": "solid",
2190
2261
  "seed": 1,
2191
2262
  "frameId": null,
2192
- "updated": 1763522171080,
2263
+ "updated": 1764191449834,
2193
2264
  "link": null
2194
2265
  },
2195
2266
  {
2196
2267
  "id": "proc-validate-arch-text",
2197
2268
  "type": "text",
2198
- "x": 690,
2199
- "y": 825,
2269
+ "x": 698.0069292751327,
2270
+ "y": 411.2354403009744,
2200
2271
  "width": 140,
2201
2272
  "height": 50,
2202
2273
  "angle": 0,
@@ -2216,8 +2287,8 @@
2216
2287
  "verticalAlign": "middle",
2217
2288
  "containerId": "proc-validate-arch",
2218
2289
  "locked": false,
2219
- "version": 2,
2220
- "versionNonce": 363652821,
2290
+ "version": 233,
2291
+ "versionNonce": 41862650,
2221
2292
  "index": "ao",
2222
2293
  "isDeleted": false,
2223
2294
  "strokeStyle": "solid",
@@ -2225,7 +2296,7 @@
2225
2296
  "frameId": null,
2226
2297
  "roundness": null,
2227
2298
  "boundElements": [],
2228
- "updated": 1763522171080,
2299
+ "updated": 1764191449834,
2229
2300
  "link": null,
2230
2301
  "originalText": "Validate Arch\n<<optional>>",
2231
2302
  "autoResize": true,
@@ -2234,10 +2305,10 @@
2234
2305
  {
2235
2306
  "id": "arrow-validate-ready",
2236
2307
  "type": "arrow",
2237
- "x": 760,
2238
- "y": 890,
2239
- "width": 0,
2240
- "height": 30,
2308
+ "x": 756.1926048905458,
2309
+ "y": 477.82525825285865,
2310
+ "width": 2.6030810941729214,
2311
+ "height": 34.90186599521081,
2241
2312
  "angle": 0,
2242
2313
  "strokeColor": "#1976d2",
2243
2314
  "backgroundColor": "transparent",
@@ -2248,13 +2319,13 @@
2248
2319
  "groupIds": [],
2249
2320
  "startBinding": {
2250
2321
  "elementId": "proc-validate-arch",
2251
- "focus": 0,
2252
- "gap": 1
2322
+ "focus": 0.10499022285337105,
2323
+ "gap": 1.5898179518842426
2253
2324
  },
2254
2325
  "endBinding": {
2255
- "elementId": "proc-impl-ready",
2256
- "focus": 0,
2257
- "gap": 1
2326
+ "elementId": "proc-epics",
2327
+ "focus": 0.007831693483179265,
2328
+ "gap": 1.9644418045617158
2258
2329
  },
2259
2330
  "points": [
2260
2331
  [
@@ -2262,13 +2333,13 @@
2262
2333
  0
2263
2334
  ],
2264
2335
  [
2265
- 0,
2266
- 30
2336
+ -2.6030810941729214,
2337
+ 34.90186599521081
2267
2338
  ]
2268
2339
  ],
2269
2340
  "lastCommittedPoint": null,
2270
- "version": 2,
2271
- "versionNonce": 353983739,
2341
+ "version": 527,
2342
+ "versionNonce": 679932090,
2272
2343
  "index": "ap",
2273
2344
  "isDeleted": false,
2274
2345
  "strokeStyle": "solid",
@@ -2276,7 +2347,7 @@
2276
2347
  "frameId": null,
2277
2348
  "roundness": null,
2278
2349
  "boundElements": [],
2279
- "updated": 1763522171080,
2350
+ "updated": 1764191469649,
2280
2351
  "link": null,
2281
2352
  "locked": false,
2282
2353
  "startArrowhead": null,
@@ -2285,8 +2356,8 @@
2285
2356
  {
2286
2357
  "id": "proc-impl-ready",
2287
2358
  "type": "rectangle",
2288
- "x": 680,
2289
- "y": 920,
2359
+ "x": 669.3773407122919,
2360
+ "y": 777.1531869468762,
2290
2361
  "width": 160,
2291
2362
  "height": 80,
2292
2363
  "angle": 0,
@@ -2315,24 +2386,28 @@
2315
2386
  {
2316
2387
  "type": "arrow",
2317
2388
  "id": "arrow-phase3-to-phase4"
2389
+ },
2390
+ {
2391
+ "id": "arrow-test-validate",
2392
+ "type": "arrow"
2318
2393
  }
2319
2394
  ],
2320
2395
  "locked": false,
2321
- "version": 2,
2322
- "versionNonce": 1769161781,
2396
+ "version": 102,
2397
+ "versionNonce": 1799933050,
2323
2398
  "index": "aq",
2324
2399
  "isDeleted": false,
2325
2400
  "strokeStyle": "solid",
2326
2401
  "seed": 1,
2327
2402
  "frameId": null,
2328
- "updated": 1763522171080,
2403
+ "updated": 1764191475963,
2329
2404
  "link": null
2330
2405
  },
2331
2406
  {
2332
2407
  "id": "proc-impl-ready-text",
2333
2408
  "type": "text",
2334
- "x": 690,
2335
- "y": 935,
2409
+ "x": 679.3773407122919,
2410
+ "y": 792.1531869468762,
2336
2411
  "width": 140,
2337
2412
  "height": 50,
2338
2413
  "angle": 0,
@@ -2352,8 +2427,8 @@
2352
2427
  "verticalAlign": "middle",
2353
2428
  "containerId": "proc-impl-ready",
2354
2429
  "locked": false,
2355
- "version": 2,
2356
- "versionNonce": 226100635,
2430
+ "version": 101,
2431
+ "versionNonce": 1345137978,
2357
2432
  "index": "ar",
2358
2433
  "isDeleted": false,
2359
2434
  "strokeStyle": "solid",
@@ -2361,7 +2436,7 @@
2361
2436
  "frameId": null,
2362
2437
  "roundness": null,
2363
2438
  "boundElements": [],
2364
- "updated": 1763522171080,
2439
+ "updated": 1764191475963,
2365
2440
  "link": null,
2366
2441
  "originalText": "Implementation\nReadiness",
2367
2442
  "autoResize": true,
@@ -2370,10 +2445,10 @@
2370
2445
  {
2371
2446
  "id": "arrow-phase3-to-phase4",
2372
2447
  "type": "arrow",
2373
- "x": 840,
2374
- "y": 960,
2375
- "width": 180,
2376
- "height": 0,
2448
+ "x": 832.3758366994932,
2449
+ "y": 828.1314512149465,
2450
+ "width": 332.79883769023445,
2451
+ "height": 519.9927682908395,
2377
2452
  "angle": 0,
2378
2453
  "strokeColor": "#1976d2",
2379
2454
  "backgroundColor": "transparent",
@@ -2384,13 +2459,13 @@
2384
2459
  "groupIds": [],
2385
2460
  "startBinding": {
2386
2461
  "elementId": "proc-impl-ready",
2387
- "focus": 0,
2388
- "gap": 1
2462
+ "focus": 0.8094917779899522,
2463
+ "gap": 3.380037483859951
2389
2464
  },
2390
2465
  "endBinding": {
2391
2466
  "elementId": "proc-sprint-planning",
2392
- "focus": 0,
2393
- "gap": 1
2467
+ "focus": 0.538276991056649,
2468
+ "gap": 1.1436349518342013
2394
2469
  },
2395
2470
  "points": [
2396
2471
  [
@@ -2398,31 +2473,42 @@
2398
2473
  0
2399
2474
  ],
2400
2475
  [
2401
- 180,
2402
- 0
2476
+ 80.82567439689569,
2477
+ -94.83900216621896
2478
+ ],
2479
+ [
2480
+ 159.28426317101867,
2481
+ -458.225799867337
2482
+ ],
2483
+ [
2484
+ 332.79883769023445,
2485
+ -519.9927682908395
2403
2486
  ]
2404
2487
  ],
2405
2488
  "lastCommittedPoint": null,
2406
- "version": 2,
2407
- "versionNonce": 591852949,
2489
+ "version": 1116,
2490
+ "versionNonce": 55014906,
2408
2491
  "index": "as",
2409
2492
  "isDeleted": false,
2410
2493
  "strokeStyle": "solid",
2411
2494
  "seed": 1,
2412
2495
  "frameId": null,
2413
- "roundness": null,
2496
+ "roundness": {
2497
+ "type": 2
2498
+ },
2414
2499
  "boundElements": [],
2415
- "updated": 1763522171080,
2500
+ "updated": 1764191475964,
2416
2501
  "link": null,
2417
2502
  "locked": false,
2418
2503
  "startArrowhead": null,
2419
- "endArrowhead": "arrow"
2504
+ "endArrowhead": "arrow",
2505
+ "elbowed": false
2420
2506
  },
2421
2507
  {
2422
2508
  "id": "phase4-header",
2423
2509
  "type": "text",
2424
- "x": 1020,
2425
- "y": 180,
2510
+ "x": 1175.3730315866237,
2511
+ "y": 167.81322734599433,
2426
2512
  "width": 200,
2427
2513
  "height": 30,
2428
2514
  "angle": 0,
@@ -2439,8 +2525,8 @@
2439
2525
  "textAlign": "left",
2440
2526
  "verticalAlign": "top",
2441
2527
  "locked": false,
2442
- "version": 2,
2443
- "versionNonce": 1358731835,
2528
+ "version": 271,
2529
+ "versionNonce": 866534438,
2444
2530
  "index": "at",
2445
2531
  "isDeleted": false,
2446
2532
  "strokeStyle": "solid",
@@ -2448,7 +2534,7 @@
2448
2534
  "frameId": null,
2449
2535
  "roundness": null,
2450
2536
  "boundElements": [],
2451
- "updated": 1763522171080,
2537
+ "updated": 1764190763204,
2452
2538
  "link": null,
2453
2539
  "containerId": null,
2454
2540
  "originalText": "PHASE 4",
@@ -2458,8 +2544,8 @@
2458
2544
  {
2459
2545
  "id": "phase4-subtitle",
2460
2546
  "type": "text",
2461
- "x": 1020,
2462
- "y": 210,
2547
+ "x": 1139.1188804963076,
2548
+ "y": 204.18282943768378,
2463
2549
  "width": 260,
2464
2550
  "height": 20,
2465
2551
  "angle": 0,
@@ -2476,8 +2562,8 @@
2476
2562
  "textAlign": "left",
2477
2563
  "verticalAlign": "top",
2478
2564
  "locked": false,
2479
- "version": 2,
2480
- "versionNonce": 1046313717,
2565
+ "version": 238,
2566
+ "versionNonce": 198627174,
2481
2567
  "index": "au",
2482
2568
  "isDeleted": false,
2483
2569
  "strokeStyle": "solid",
@@ -2485,7 +2571,7 @@
2485
2571
  "frameId": null,
2486
2572
  "roundness": null,
2487
2573
  "boundElements": [],
2488
- "updated": 1763522171080,
2574
+ "updated": 1764190763204,
2489
2575
  "link": null,
2490
2576
  "containerId": null,
2491
2577
  "originalText": "Implementation (Required)",
@@ -2495,8 +2581,8 @@
2495
2581
  {
2496
2582
  "id": "proc-sprint-planning",
2497
2583
  "type": "rectangle",
2498
- "x": 1020,
2499
- "y": 920,
2584
+ "x": 1166.1946812371566,
2585
+ "y": 276.1576920193427,
2500
2586
  "width": 160,
2501
2587
  "height": 80,
2502
2588
  "angle": 0,
@@ -2523,26 +2609,26 @@
2523
2609
  "id": "arrow-phase3-to-phase4"
2524
2610
  },
2525
2611
  {
2526
- "type": "arrow",
2527
- "id": "arrow-sprint-epic"
2612
+ "id": "arrow-validate-epic-story",
2613
+ "type": "arrow"
2528
2614
  }
2529
2615
  ],
2530
2616
  "locked": false,
2531
- "version": 2,
2532
- "versionNonce": 2088999643,
2617
+ "version": 379,
2618
+ "versionNonce": 2085876390,
2533
2619
  "index": "av",
2534
2620
  "isDeleted": false,
2535
2621
  "strokeStyle": "solid",
2536
2622
  "seed": 1,
2537
2623
  "frameId": null,
2538
- "updated": 1763522171080,
2624
+ "updated": 1764190763204,
2539
2625
  "link": null
2540
2626
  },
2541
2627
  {
2542
2628
  "id": "proc-sprint-planning-text",
2543
2629
  "type": "text",
2544
- "x": 1030,
2545
- "y": 948,
2630
+ "x": 1176.1946812371566,
2631
+ "y": 304.1576920193427,
2546
2632
  "width": 140,
2547
2633
  "height": 25,
2548
2634
  "angle": 0,
@@ -2562,8 +2648,8 @@
2562
2648
  "verticalAlign": "middle",
2563
2649
  "containerId": "proc-sprint-planning",
2564
2650
  "locked": false,
2565
- "version": 2,
2566
- "versionNonce": 859591765,
2651
+ "version": 377,
2652
+ "versionNonce": 2143989222,
2567
2653
  "index": "aw",
2568
2654
  "isDeleted": false,
2569
2655
  "strokeStyle": "solid",
@@ -2571,21 +2657,21 @@
2571
2657
  "frameId": null,
2572
2658
  "roundness": null,
2573
2659
  "boundElements": [],
2574
- "updated": 1763522171080,
2660
+ "updated": 1764190763204,
2575
2661
  "link": null,
2576
2662
  "originalText": "Sprint Plan",
2577
2663
  "autoResize": true,
2578
2664
  "lineHeight": 1.25
2579
2665
  },
2580
2666
  {
2581
- "id": "label-epic-cycle",
2667
+ "id": "label-story-loop",
2582
2668
  "type": "text",
2583
- "x": 1020,
2584
- "y": 1030,
2585
- "width": 200,
2669
+ "x": 1176.2977877917795,
2670
+ "y": 441.904906795244,
2671
+ "width": 130.87991333007812,
2586
2672
  "height": 25,
2587
2673
  "angle": 0,
2588
- "strokeColor": "#6a1b9a",
2674
+ "strokeColor": "#e65100",
2589
2675
  "backgroundColor": "transparent",
2590
2676
  "fillStyle": "solid",
2591
2677
  "strokeWidth": 2,
@@ -2594,33 +2680,33 @@
2594
2680
  "groupIds": [],
2595
2681
  "fontSize": 20,
2596
2682
  "fontFamily": 1,
2597
- "text": " EPIC CYCLE",
2683
+ "text": "STORY LOOP",
2598
2684
  "textAlign": "left",
2599
2685
  "verticalAlign": "top",
2600
2686
  "locked": false,
2601
- "version": 2,
2602
- "versionNonce": 1822525307,
2603
- "index": "ax",
2687
+ "version": 603,
2688
+ "versionNonce": 40529830,
2689
+ "index": "b04",
2604
2690
  "isDeleted": false,
2605
2691
  "strokeStyle": "solid",
2606
2692
  "seed": 1,
2607
2693
  "frameId": null,
2608
2694
  "roundness": null,
2609
2695
  "boundElements": [],
2610
- "updated": 1763522171080,
2696
+ "updated": 1764190763204,
2611
2697
  "link": null,
2612
2698
  "containerId": null,
2613
- "originalText": " EPIC CYCLE",
2699
+ "originalText": "STORY LOOP",
2614
2700
  "autoResize": true,
2615
2701
  "lineHeight": 1.25
2616
2702
  },
2617
2703
  {
2618
- "id": "arrow-sprint-epic",
2704
+ "id": "arrow-validate-epic-story",
2619
2705
  "type": "arrow",
2620
- "x": 1100,
2621
- "y": 1000,
2622
- "width": 0,
2623
- "height": 70,
2706
+ "x": 1249.6597155437828,
2707
+ "y": 357.36880197268204,
2708
+ "width": 2.9293448190794606,
2709
+ "height": 208.61271744725804,
2624
2710
  "angle": 0,
2625
2711
  "strokeColor": "#1976d2",
2626
2712
  "backgroundColor": "transparent",
@@ -2631,12 +2717,12 @@
2631
2717
  "groupIds": [],
2632
2718
  "startBinding": {
2633
2719
  "elementId": "proc-sprint-planning",
2634
- "focus": 0,
2635
- "gap": 1
2720
+ "focus": -0.050194107916528306,
2721
+ "gap": 1.21110995333936
2636
2722
  },
2637
2723
  "endBinding": {
2638
- "elementId": "proc-epic-context",
2639
- "focus": 0,
2724
+ "elementId": "proc-create-story",
2725
+ "focus": -0.004614835874420464,
2640
2726
  "gap": 1
2641
2727
  },
2642
2728
  "points": [
@@ -2645,31 +2731,31 @@
2645
2731
  0
2646
2732
  ],
2647
2733
  [
2648
- 0,
2649
- 70
2734
+ -2.9293448190794606,
2735
+ 208.61271744725804
2650
2736
  ]
2651
2737
  ],
2652
2738
  "lastCommittedPoint": null,
2653
- "version": 2,
2654
- "versionNonce": 1303970229,
2655
- "index": "ay",
2739
+ "version": 951,
2740
+ "versionNonce": 1394233274,
2741
+ "index": "b05",
2656
2742
  "isDeleted": false,
2657
2743
  "strokeStyle": "solid",
2658
2744
  "seed": 1,
2659
2745
  "frameId": null,
2660
2746
  "roundness": null,
2661
2747
  "boundElements": [],
2662
- "updated": 1763522171080,
2748
+ "updated": 1764190763619,
2663
2749
  "link": null,
2664
2750
  "locked": false,
2665
2751
  "startArrowhead": null,
2666
2752
  "endArrowhead": "arrow"
2667
2753
  },
2668
2754
  {
2669
- "id": "proc-epic-context",
2755
+ "id": "proc-create-story",
2670
2756
  "type": "rectangle",
2671
- "x": 1020,
2672
- "y": 1070,
2757
+ "x": 1166.5341271166512,
2758
+ "y": 566.4331335811917,
2673
2759
  "width": 160,
2674
2760
  "height": 80,
2675
2761
  "angle": 0,
@@ -2684,38 +2770,42 @@
2684
2770
  "value": 8
2685
2771
  },
2686
2772
  "groupIds": [
2687
- "proc-epic-context-group"
2773
+ "proc-create-story-group"
2688
2774
  ],
2689
2775
  "boundElements": [
2690
2776
  {
2691
2777
  "type": "text",
2692
- "id": "proc-epic-context-text"
2778
+ "id": "proc-create-story-text"
2779
+ },
2780
+ {
2781
+ "type": "arrow",
2782
+ "id": "arrow-validate-epic-story"
2693
2783
  },
2694
2784
  {
2695
2785
  "type": "arrow",
2696
- "id": "arrow-sprint-epic"
2786
+ "id": "arrow-create-validate-story"
2697
2787
  },
2698
2788
  {
2699
2789
  "type": "arrow",
2700
- "id": "arrow-epic-validate-epic"
2790
+ "id": "arrow-more-stories-yes"
2701
2791
  }
2702
2792
  ],
2703
2793
  "locked": false,
2704
- "version": 2,
2705
- "versionNonce": 1201201179,
2706
- "index": "az",
2794
+ "version": 282,
2795
+ "versionNonce": 966999590,
2796
+ "index": "b06",
2707
2797
  "isDeleted": false,
2708
2798
  "strokeStyle": "solid",
2709
2799
  "seed": 1,
2710
2800
  "frameId": null,
2711
- "updated": 1763522171080,
2801
+ "updated": 1764190763204,
2712
2802
  "link": null
2713
2803
  },
2714
2804
  {
2715
- "id": "proc-epic-context-text",
2805
+ "id": "proc-create-story-text",
2716
2806
  "type": "text",
2717
- "x": 1030,
2718
- "y": 1098,
2807
+ "x": 1176.5341271166512,
2808
+ "y": 594.4331335811917,
2719
2809
  "width": 140,
2720
2810
  "height": 25,
2721
2811
  "angle": 0,
@@ -2726,981 +2816,35 @@
2726
2816
  "roughness": 0,
2727
2817
  "opacity": 100,
2728
2818
  "groupIds": [
2729
- "proc-epic-context-group"
2819
+ "proc-create-story-group"
2730
2820
  ],
2731
2821
  "fontSize": 20,
2732
2822
  "fontFamily": 1,
2733
- "text": "Epic Context",
2823
+ "text": "Create Story",
2734
2824
  "textAlign": "center",
2735
2825
  "verticalAlign": "middle",
2736
- "containerId": "proc-epic-context",
2826
+ "containerId": "proc-create-story",
2737
2827
  "locked": false,
2738
- "version": 2,
2739
- "versionNonce": 1123615509,
2740
- "index": "b00",
2828
+ "version": 282,
2829
+ "versionNonce": 2082769254,
2830
+ "index": "b07",
2741
2831
  "isDeleted": false,
2742
2832
  "strokeStyle": "solid",
2743
2833
  "seed": 1,
2744
2834
  "frameId": null,
2745
2835
  "roundness": null,
2746
2836
  "boundElements": [],
2747
- "updated": 1763522171080,
2748
- "link": null,
2749
- "originalText": "Epic Context",
2750
- "autoResize": true,
2751
- "lineHeight": 1.25
2752
- },
2753
- {
2754
- "id": "arrow-epic-validate-epic",
2755
- "type": "arrow",
2756
- "x": 1100,
2757
- "y": 1150,
2758
- "width": 0,
2759
- "height": 30,
2760
- "angle": 0,
2761
- "strokeColor": "#1976d2",
2762
- "backgroundColor": "transparent",
2763
- "fillStyle": "solid",
2764
- "strokeWidth": 2,
2765
- "roughness": 0,
2766
- "opacity": 100,
2767
- "groupIds": [],
2768
- "startBinding": {
2769
- "elementId": "proc-epic-context",
2770
- "focus": 0,
2771
- "gap": 1
2772
- },
2773
- "endBinding": {
2774
- "elementId": "proc-validate-epic",
2775
- "focus": 0,
2776
- "gap": 1
2777
- },
2778
- "points": [
2779
- [
2780
- 0,
2781
- 0
2782
- ],
2783
- [
2784
- 0,
2785
- 30
2786
- ]
2787
- ],
2788
- "lastCommittedPoint": null,
2789
- "version": 2,
2790
- "versionNonce": 1197221051,
2791
- "index": "b01",
2792
- "isDeleted": false,
2793
- "strokeStyle": "solid",
2794
- "seed": 1,
2795
- "frameId": null,
2796
- "roundness": null,
2797
- "boundElements": [],
2798
- "updated": 1763522171080,
2799
- "link": null,
2800
- "locked": false,
2801
- "startArrowhead": null,
2802
- "endArrowhead": "arrow"
2803
- },
2804
- {
2805
- "id": "proc-validate-epic",
2806
- "type": "rectangle",
2807
- "x": 1020,
2808
- "y": 1180,
2809
- "width": 160,
2810
- "height": 80,
2811
- "angle": 0,
2812
- "strokeColor": "#1e88e5",
2813
- "backgroundColor": "#bbdefb",
2814
- "fillStyle": "solid",
2815
- "strokeWidth": 2,
2816
- "roughness": 0,
2817
- "opacity": 100,
2818
- "roundness": {
2819
- "type": 3,
2820
- "value": 8
2821
- },
2822
- "groupIds": [
2823
- "proc-validate-epic-group"
2824
- ],
2825
- "boundElements": [
2826
- {
2827
- "type": "text",
2828
- "id": "proc-validate-epic-text"
2829
- },
2830
- {
2831
- "type": "arrow",
2832
- "id": "arrow-epic-validate-epic"
2833
- },
2834
- {
2835
- "type": "arrow",
2836
- "id": "arrow-validate-epic-story"
2837
- }
2838
- ],
2839
- "locked": false,
2840
- "version": 2,
2841
- "versionNonce": 124901493,
2842
- "index": "b02",
2843
- "isDeleted": false,
2844
- "strokeStyle": "solid",
2845
- "seed": 1,
2846
- "frameId": null,
2847
- "updated": 1763522171080,
2848
- "link": null
2849
- },
2850
- {
2851
- "id": "proc-validate-epic-text",
2852
- "type": "text",
2853
- "x": 1030,
2854
- "y": 1195,
2855
- "width": 140,
2856
- "height": 50,
2857
- "angle": 0,
2858
- "strokeColor": "#1e1e1e",
2859
- "backgroundColor": "transparent",
2860
- "fillStyle": "solid",
2861
- "strokeWidth": 2,
2862
- "roughness": 0,
2863
- "opacity": 100,
2864
- "groupIds": [
2865
- "proc-validate-epic-group"
2866
- ],
2867
- "fontSize": 14,
2868
- "fontFamily": 1,
2869
- "text": "Validate Epic\n<<optional>>",
2870
- "textAlign": "center",
2871
- "verticalAlign": "middle",
2872
- "containerId": "proc-validate-epic",
2873
- "locked": false,
2874
- "version": 2,
2875
- "versionNonce": 1133368667,
2876
- "index": "b03",
2877
- "isDeleted": false,
2878
- "strokeStyle": "solid",
2879
- "seed": 1,
2880
- "frameId": null,
2881
- "roundness": null,
2882
- "boundElements": [],
2883
- "updated": 1763522171080,
2884
- "link": null,
2885
- "originalText": "Validate Epic\n<<optional>>",
2886
- "autoResize": true,
2887
- "lineHeight": 1.7857142857142858
2888
- },
2889
- {
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",
2928
- "type": "arrow",
2929
- "x": 1100,
2930
- "y": 1260,
2931
- "width": 0,
2932
- "height": 70,
2933
- "angle": 0,
2934
- "strokeColor": "#1976d2",
2935
- "backgroundColor": "transparent",
2936
- "fillStyle": "solid",
2937
- "strokeWidth": 2,
2938
- "roughness": 0,
2939
- "opacity": 100,
2940
- "groupIds": [],
2941
- "startBinding": {
2942
- "elementId": "proc-validate-epic",
2943
- "focus": 0,
2944
- "gap": 1
2945
- },
2946
- "endBinding": {
2947
- "elementId": "proc-create-story",
2948
- "focus": 0,
2949
- "gap": 1
2950
- },
2951
- "points": [
2952
- [
2953
- 0,
2954
- 0
2955
- ],
2956
- [
2957
- 0,
2958
- 70
2959
- ]
2960
- ],
2961
- "lastCommittedPoint": null,
2962
- "version": 2,
2963
- "versionNonce": 2072015355,
2964
- "index": "b05",
2965
- "isDeleted": false,
2966
- "strokeStyle": "solid",
2967
- "seed": 1,
2968
- "frameId": null,
2969
- "roundness": null,
2970
- "boundElements": [],
2971
- "updated": 1763522171080,
2972
- "link": null,
2973
- "locked": false,
2974
- "startArrowhead": null,
2975
- "endArrowhead": "arrow"
2976
- },
2977
- {
2978
- "id": "proc-create-story",
2979
- "type": "rectangle",
2980
- "x": 1020,
2981
- "y": 1330,
2982
- "width": 160,
2983
- "height": 80,
2984
- "angle": 0,
2985
- "strokeColor": "#1e88e5",
2986
- "backgroundColor": "#bbdefb",
2987
- "fillStyle": "solid",
2988
- "strokeWidth": 2,
2989
- "roughness": 0,
2990
- "opacity": 100,
2991
- "roundness": {
2992
- "type": 3,
2993
- "value": 8
2994
- },
2995
- "groupIds": [
2996
- "proc-create-story-group"
2997
- ],
2998
- "boundElements": [
2999
- {
3000
- "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"
3010
- },
3011
- {
3012
- "type": "arrow",
3013
- "id": "arrow-more-stories-yes"
3014
- }
3015
- ],
3016
- "locked": false,
3017
- "version": 2,
3018
- "versionNonce": 1349779253,
3019
- "index": "b06",
3020
- "isDeleted": false,
3021
- "strokeStyle": "solid",
3022
- "seed": 1,
3023
- "frameId": null,
3024
- "updated": 1763522171080,
3025
- "link": null
3026
- },
3027
- {
3028
- "id": "proc-create-story-text",
3029
- "type": "text",
3030
- "x": 1030,
3031
- "y": 1358,
3032
- "width": 140,
3033
- "height": 25,
3034
- "angle": 0,
3035
- "strokeColor": "#1e1e1e",
3036
- "backgroundColor": "transparent",
3037
- "fillStyle": "solid",
3038
- "strokeWidth": 2,
3039
- "roughness": 0,
3040
- "opacity": 100,
3041
- "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,
2837
+ "updated": 1764190763204,
3643
2838
  "link": null,
3644
- "originalText": "Validate Context\n<<optional>>",
2839
+ "originalText": "Create Story",
3645
2840
  "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"
2841
+ "lineHeight": 1.25
3698
2842
  },
3699
2843
  {
3700
- "id": "arrow-ready-path",
2844
+ "id": "arrow-create-validate-story",
3701
2845
  "type": "arrow",
3702
- "x": 1100,
3703
- "y": 1670,
2846
+ "x": 1246.5341271166512,
2847
+ "y": 646.4331335811917,
3704
2848
  "width": 0,
3705
2849
  "height": 30,
3706
2850
  "angle": 0,
@@ -3712,12 +2856,12 @@
3712
2856
  "opacity": 100,
3713
2857
  "groupIds": [],
3714
2858
  "startBinding": {
3715
- "elementId": "decision-context-or-ready",
2859
+ "elementId": "proc-create-story",
3716
2860
  "focus": 0,
3717
2861
  "gap": 1
3718
2862
  },
3719
2863
  "endBinding": {
3720
- "elementId": "proc-story-ready",
2864
+ "elementId": "proc-validate-story",
3721
2865
  "focus": 0,
3722
2866
  "gap": 1
3723
2867
  },
@@ -3732,63 +2876,26 @@
3732
2876
  ]
3733
2877
  ],
3734
2878
  "lastCommittedPoint": null,
3735
- "version": 2,
3736
- "versionNonce": 1858714165,
3737
- "index": "b0M",
2879
+ "version": 848,
2880
+ "versionNonce": 1820404026,
2881
+ "index": "b08",
3738
2882
  "isDeleted": false,
3739
2883
  "strokeStyle": "solid",
3740
2884
  "seed": 1,
3741
2885
  "frameId": null,
3742
2886
  "roundness": null,
3743
2887
  "boundElements": [],
3744
- "updated": 1763522171080,
2888
+ "updated": 1764190763619,
3745
2889
  "link": null,
3746
2890
  "locked": false,
3747
2891
  "startArrowhead": null,
3748
2892
  "endArrowhead": "arrow"
3749
2893
  },
3750
2894
  {
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",
2895
+ "id": "proc-validate-story",
3789
2896
  "type": "rectangle",
3790
- "x": 1020,
3791
- "y": 1700,
2897
+ "x": 1166.5341271166512,
2898
+ "y": 676.4331335811917,
3792
2899
  "width": 160,
3793
2900
  "height": 80,
3794
2901
  "angle": 0,
@@ -3803,40 +2910,40 @@
3803
2910
  "value": 8
3804
2911
  },
3805
2912
  "groupIds": [
3806
- "proc-story-ready-group"
2913
+ "proc-validate-story-group"
3807
2914
  ],
3808
2915
  "boundElements": [
3809
2916
  {
3810
2917
  "type": "text",
3811
- "id": "proc-story-ready-text"
2918
+ "id": "proc-validate-story-text"
3812
2919
  },
3813
2920
  {
3814
2921
  "type": "arrow",
3815
- "id": "arrow-ready-path"
2922
+ "id": "arrow-create-validate-story"
3816
2923
  },
3817
2924
  {
3818
2925
  "type": "arrow",
3819
- "id": "arrow-ready-dev"
2926
+ "id": "arrow-validate-story-decision"
3820
2927
  }
3821
2928
  ],
3822
2929
  "locked": false,
3823
- "version": 2,
3824
- "versionNonce": 1650371477,
3825
- "index": "b0O",
2930
+ "version": 282,
2931
+ "versionNonce": 282699366,
2932
+ "index": "b09",
3826
2933
  "isDeleted": false,
3827
2934
  "strokeStyle": "solid",
3828
2935
  "seed": 1,
3829
2936
  "frameId": null,
3830
- "updated": 1763522171080,
2937
+ "updated": 1764190763204,
3831
2938
  "link": null
3832
2939
  },
3833
2940
  {
3834
- "id": "proc-story-ready-text",
2941
+ "id": "proc-validate-story-text",
3835
2942
  "type": "text",
3836
- "x": 1030,
3837
- "y": 1728,
2943
+ "x": 1176.5341271166512,
2944
+ "y": 691.4331335811917,
3838
2945
  "width": 140,
3839
- "height": 25,
2946
+ "height": 50,
3840
2947
  "angle": 0,
3841
2948
  "strokeColor": "#1e1e1e",
3842
2949
  "backgroundColor": "transparent",
@@ -3845,35 +2952,35 @@
3845
2952
  "roughness": 0,
3846
2953
  "opacity": 100,
3847
2954
  "groupIds": [
3848
- "proc-story-ready-group"
2955
+ "proc-validate-story-group"
3849
2956
  ],
3850
- "fontSize": 20,
2957
+ "fontSize": 14,
3851
2958
  "fontFamily": 1,
3852
- "text": "Story Ready",
2959
+ "text": "Validate Story\n<<optional>>",
3853
2960
  "textAlign": "center",
3854
2961
  "verticalAlign": "middle",
3855
- "containerId": "proc-story-ready",
2962
+ "containerId": "proc-validate-story",
3856
2963
  "locked": false,
3857
- "version": 2,
3858
- "versionNonce": 2028160059,
3859
- "index": "b0P",
2964
+ "version": 282,
2965
+ "versionNonce": 686025126,
2966
+ "index": "b0A",
3860
2967
  "isDeleted": false,
3861
2968
  "strokeStyle": "solid",
3862
2969
  "seed": 1,
3863
2970
  "frameId": null,
3864
2971
  "roundness": null,
3865
2972
  "boundElements": [],
3866
- "updated": 1763522171080,
2973
+ "updated": 1764190763204,
3867
2974
  "link": null,
3868
- "originalText": "Story Ready",
2975
+ "originalText": "Validate Story\n<<optional>>",
3869
2976
  "autoResize": true,
3870
- "lineHeight": 1.25
2977
+ "lineHeight": 1.7857142857142858
3871
2978
  },
3872
2979
  {
3873
- "id": "arrow-ready-dev",
2980
+ "id": "arrow-validate-story-decision",
3874
2981
  "type": "arrow",
3875
- "x": 1100,
3876
- "y": 1780,
2982
+ "x": 1246.5341271166512,
2983
+ "y": 756.4331335811917,
3877
2984
  "width": 0,
3878
2985
  "height": 30,
3879
2986
  "angle": 0,
@@ -3885,15 +2992,11 @@
3885
2992
  "opacity": 100,
3886
2993
  "groupIds": [],
3887
2994
  "startBinding": {
3888
- "elementId": "proc-story-ready",
2995
+ "elementId": "proc-validate-story",
3889
2996
  "focus": 0,
3890
2997
  "gap": 1
3891
2998
  },
3892
- "endBinding": {
3893
- "elementId": "proc-dev-story",
3894
- "focus": 0.2,
3895
- "gap": 1
3896
- },
2999
+ "endBinding": null,
3897
3000
  "points": [
3898
3001
  [
3899
3002
  0,
@@ -3905,16 +3008,16 @@
3905
3008
  ]
3906
3009
  ],
3907
3010
  "lastCommittedPoint": null,
3908
- "version": 2,
3909
- "versionNonce": 1829662965,
3910
- "index": "b0Q",
3011
+ "version": 566,
3012
+ "versionNonce": 1807479290,
3013
+ "index": "b0B",
3911
3014
  "isDeleted": false,
3912
3015
  "strokeStyle": "solid",
3913
3016
  "seed": 1,
3914
3017
  "frameId": null,
3915
3018
  "roundness": null,
3916
3019
  "boundElements": [],
3917
- "updated": 1763522171080,
3020
+ "updated": 1764190763619,
3918
3021
  "link": null,
3919
3022
  "locked": false,
3920
3023
  "startArrowhead": null,
@@ -3923,8 +3026,8 @@
3923
3026
  {
3924
3027
  "id": "proc-dev-story",
3925
3028
  "type": "rectangle",
3926
- "x": 1020,
3927
- "y": 1810,
3029
+ "x": 1164.0395418694,
3030
+ "y": 788.7867016847945,
3928
3031
  "width": 160,
3929
3032
  "height": 80,
3930
3033
  "angle": 0,
@@ -3946,39 +3049,27 @@
3946
3049
  "type": "text",
3947
3050
  "id": "proc-dev-story-text"
3948
3051
  },
3949
- {
3950
- "type": "arrow",
3951
- "id": "arrow-validate-context-dev"
3952
- },
3953
- {
3954
- "type": "arrow",
3955
- "id": "arrow-ready-dev"
3956
- },
3957
3052
  {
3958
3053
  "type": "arrow",
3959
3054
  "id": "arrow-dev-review"
3960
- },
3961
- {
3962
- "type": "arrow",
3963
- "id": "arrow-review-fail-loop"
3964
3055
  }
3965
3056
  ],
3966
3057
  "locked": false,
3967
- "version": 2,
3968
- "versionNonce": 100992219,
3058
+ "version": 367,
3059
+ "versionNonce": 935782054,
3969
3060
  "index": "b0R",
3970
3061
  "isDeleted": false,
3971
3062
  "strokeStyle": "solid",
3972
3063
  "seed": 1,
3973
3064
  "frameId": null,
3974
- "updated": 1763522171080,
3065
+ "updated": 1764190763204,
3975
3066
  "link": null
3976
3067
  },
3977
3068
  {
3978
3069
  "id": "proc-dev-story-text",
3979
3070
  "type": "text",
3980
- "x": 1030,
3981
- "y": 1838,
3071
+ "x": 1174.0395418694,
3072
+ "y": 816.7867016847945,
3982
3073
  "width": 140,
3983
3074
  "height": 25,
3984
3075
  "angle": 0,
@@ -3998,8 +3089,8 @@
3998
3089
  "verticalAlign": "middle",
3999
3090
  "containerId": "proc-dev-story",
4000
3091
  "locked": false,
4001
- "version": 2,
4002
- "versionNonce": 207522389,
3092
+ "version": 364,
3093
+ "versionNonce": 952050150,
4003
3094
  "index": "b0S",
4004
3095
  "isDeleted": false,
4005
3096
  "strokeStyle": "solid",
@@ -4007,7 +3098,7 @@
4007
3098
  "frameId": null,
4008
3099
  "roundness": null,
4009
3100
  "boundElements": [],
4010
- "updated": 1763522171080,
3101
+ "updated": 1764190763204,
4011
3102
  "link": null,
4012
3103
  "originalText": "Develop Story",
4013
3104
  "autoResize": true,
@@ -4016,10 +3107,10 @@
4016
3107
  {
4017
3108
  "id": "arrow-dev-review",
4018
3109
  "type": "arrow",
4019
- "x": 1100,
4020
- "y": 1890,
4021
- "width": 0,
4022
- "height": 30,
3110
+ "x": 1244.2149450712877,
3111
+ "y": 869.2383158460461,
3112
+ "width": 5.032331195699953,
3113
+ "height": 76.6679634046609,
4023
3114
  "angle": 0,
4024
3115
  "strokeColor": "#1976d2",
4025
3116
  "backgroundColor": "transparent",
@@ -4030,13 +3121,13 @@
4030
3121
  "groupIds": [],
4031
3122
  "startBinding": {
4032
3123
  "elementId": "proc-dev-story",
4033
- "focus": 0,
3124
+ "focus": 0.030012029555609845,
4034
3125
  "gap": 1
4035
3126
  },
4036
3127
  "endBinding": {
4037
- "elementId": "decision-code-review",
4038
- "focus": 0,
4039
- "gap": 1
3128
+ "elementId": "proc-story-done",
3129
+ "focus": 0.04241833499478815,
3130
+ "gap": 1.3466869862454587
4040
3131
  },
4041
3132
  "points": [
4042
3133
  [
@@ -4044,13 +3135,13 @@
4044
3135
  0
4045
3136
  ],
4046
3137
  [
4047
- 0,
4048
- 30
3138
+ 5.032331195699953,
3139
+ 76.6679634046609
4049
3140
  ]
4050
3141
  ],
4051
3142
  "lastCommittedPoint": null,
4052
- "version": 2,
4053
- "versionNonce": 1449505147,
3143
+ "version": 1191,
3144
+ "versionNonce": 2052012922,
4054
3145
  "index": "b0T",
4055
3146
  "isDeleted": false,
4056
3147
  "strokeStyle": "solid",
@@ -4058,7 +3149,7 @@
4058
3149
  "frameId": null,
4059
3150
  "roundness": null,
4060
3151
  "boundElements": [],
4061
- "updated": 1763522171080,
3152
+ "updated": 1764190763619,
4062
3153
  "link": null,
4063
3154
  "locked": false,
4064
3155
  "startArrowhead": null,
@@ -4067,8 +3158,8 @@
4067
3158
  {
4068
3159
  "id": "decision-code-review",
4069
3160
  "type": "diamond",
4070
- "x": 1010,
4071
- "y": 1920,
3161
+ "x": 1156.5341271166512,
3162
+ "y": 1156.4331335811917,
4072
3163
  "width": 180,
4073
3164
  "height": 120,
4074
3165
  "angle": 0,
@@ -4092,30 +3183,34 @@
4092
3183
  },
4093
3184
  {
4094
3185
  "type": "arrow",
4095
- "id": "arrow-review-pass"
3186
+ "id": "arrow-review-fail"
4096
3187
  },
4097
3188
  {
4098
- "type": "arrow",
4099
- "id": "arrow-review-fail"
3189
+ "id": "arrow-done-more-stories",
3190
+ "type": "arrow"
3191
+ },
3192
+ {
3193
+ "id": "4chQ7PksRKpPe5YX-TfFJ",
3194
+ "type": "arrow"
4100
3195
  }
4101
3196
  ],
4102
3197
  "locked": false,
4103
- "version": 2,
4104
- "versionNonce": 1898215349,
3198
+ "version": 285,
3199
+ "versionNonce": 46359462,
4105
3200
  "index": "b0U",
4106
3201
  "isDeleted": false,
4107
3202
  "strokeStyle": "solid",
4108
3203
  "seed": 1,
4109
3204
  "frameId": null,
4110
3205
  "roundness": null,
4111
- "updated": 1763522171080,
3206
+ "updated": 1764190763204,
4112
3207
  "link": null
4113
3208
  },
4114
3209
  {
4115
3210
  "id": "decision-code-review-text",
4116
3211
  "type": "text",
4117
- "x": 1025,
4118
- "y": 1955,
3212
+ "x": 1171.5341271166512,
3213
+ "y": 1191.4331335811917,
4119
3214
  "width": 150,
4120
3215
  "height": 50,
4121
3216
  "angle": 0,
@@ -4135,8 +3230,8 @@
4135
3230
  "verticalAlign": "middle",
4136
3231
  "containerId": "decision-code-review",
4137
3232
  "locked": false,
4138
- "version": 2,
4139
- "versionNonce": 2068302363,
3233
+ "version": 282,
3234
+ "versionNonce": 1227095782,
4140
3235
  "index": "b0V",
4141
3236
  "isDeleted": false,
4142
3237
  "strokeStyle": "solid",
@@ -4144,7 +3239,7 @@
4144
3239
  "frameId": null,
4145
3240
  "roundness": null,
4146
3241
  "boundElements": [],
4147
- "updated": 1763522171080,
3242
+ "updated": 1764190763204,
4148
3243
  "link": null,
4149
3244
  "originalText": "Code Review\nPass?",
4150
3245
  "autoResize": true,
@@ -4153,10 +3248,10 @@
4153
3248
  {
4154
3249
  "id": "arrow-review-fail",
4155
3250
  "type": "arrow",
4156
- "x": 1010,
4157
- "y": 1980,
4158
- "width": 70,
4159
- "height": 170,
3251
+ "x": 1151.5341271166512,
3252
+ "y": 1216.3331335811918,
3253
+ "width": 42.50541475274872,
3254
+ "height": 387.6464318963972,
4160
3255
  "angle": 0,
4161
3256
  "strokeColor": "#1976d2",
4162
3257
  "backgroundColor": "transparent",
@@ -4173,83 +3268,43 @@
4173
3268
  0
4174
3269
  ],
4175
3270
  [
4176
- -70,
3271
+ -35,
4177
3272
  0
4178
3273
  ],
4179
3274
  [
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
3275
+ -35,
3276
+ -387.6464318963972
4226
3277
  ],
4227
3278
  [
4228
- 80,
4229
- 0
3279
+ 7.50541475274872,
3280
+ -387.6464318963972
4230
3281
  ]
4231
3282
  ],
4232
3283
  "lastCommittedPoint": null,
4233
- "version": 2,
4234
- "versionNonce": 966643387,
4235
- "index": "b0X",
3284
+ "elbowed": true,
3285
+ "version": 319,
3286
+ "versionNonce": 405929318,
3287
+ "index": "b0W",
4236
3288
  "isDeleted": false,
4237
3289
  "strokeStyle": "solid",
4238
3290
  "seed": 1,
4239
3291
  "frameId": null,
4240
3292
  "roundness": null,
4241
3293
  "boundElements": [],
4242
- "updated": 1763522171080,
3294
+ "updated": 1764190763204,
4243
3295
  "link": null,
4244
3296
  "locked": false,
4245
3297
  "startArrowhead": null,
4246
- "endArrowhead": "arrow"
3298
+ "endArrowhead": "arrow",
3299
+ "fixedSegments": null,
3300
+ "startIsSpecial": null,
3301
+ "endIsSpecial": null
4247
3302
  },
4248
3303
  {
4249
3304
  "id": "label-fail",
4250
3305
  "type": "text",
4251
- "x": 880,
4252
- "y": 1960,
3306
+ "x": 1065.6231186673836,
3307
+ "y": 1185.462969542075,
4253
3308
  "width": 35,
4254
3309
  "height": 20,
4255
3310
  "angle": 0,
@@ -4266,8 +3321,8 @@
4266
3321
  "textAlign": "left",
4267
3322
  "verticalAlign": "top",
4268
3323
  "locked": false,
4269
- "version": 2,
4270
- "versionNonce": 318230133,
3324
+ "version": 316,
3325
+ "versionNonce": 1897488550,
4271
3326
  "index": "b0Y",
4272
3327
  "isDeleted": false,
4273
3328
  "strokeStyle": "solid",
@@ -4275,69 +3330,18 @@
4275
3330
  "frameId": null,
4276
3331
  "roundness": null,
4277
3332
  "boundElements": [],
4278
- "updated": 1763522171080,
3333
+ "updated": 1764190763204,
4279
3334
  "link": null,
4280
3335
  "containerId": null,
4281
3336
  "originalText": "Fail",
4282
- "autoResize": true,
4283
- "lineHeight": 1.25
4284
- },
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"
3337
+ "autoResize": true,
3338
+ "lineHeight": 1.25
4335
3339
  },
4336
3340
  {
4337
3341
  "id": "label-pass",
4338
3342
  "type": "text",
4339
- "x": 1110,
4340
- "y": 2050,
3343
+ "x": 1229.6819134569105,
3344
+ "y": 1281.2421635916448,
4341
3345
  "width": 40,
4342
3346
  "height": 20,
4343
3347
  "angle": 0,
@@ -4354,16 +3358,21 @@
4354
3358
  "textAlign": "left",
4355
3359
  "verticalAlign": "top",
4356
3360
  "locked": false,
4357
- "version": 2,
4358
- "versionNonce": 943732693,
3361
+ "version": 408,
3362
+ "versionNonce": 1437752294,
4359
3363
  "index": "b0a",
4360
3364
  "isDeleted": false,
4361
3365
  "strokeStyle": "solid",
4362
3366
  "seed": 1,
4363
3367
  "frameId": null,
4364
3368
  "roundness": null,
4365
- "boundElements": [],
4366
- "updated": 1763522171080,
3369
+ "boundElements": [
3370
+ {
3371
+ "id": "4chQ7PksRKpPe5YX-TfFJ",
3372
+ "type": "arrow"
3373
+ }
3374
+ ],
3375
+ "updated": 1764190763204,
4367
3376
  "link": null,
4368
3377
  "containerId": null,
4369
3378
  "originalText": "Pass",
@@ -4373,10 +3382,10 @@
4373
3382
  {
4374
3383
  "id": "proc-story-done",
4375
3384
  "type": "rectangle",
4376
- "x": 1020,
4377
- "y": 2070,
3385
+ "x": 1169.3991588878014,
3386
+ "y": 947.2529662369525,
4378
3387
  "width": 160,
4379
- "height": 80,
3388
+ "height": 110,
4380
3389
  "angle": 0,
4381
3390
  "strokeColor": "#3f51b5",
4382
3391
  "backgroundColor": "#c5cae9",
@@ -4398,31 +3407,31 @@
4398
3407
  },
4399
3408
  {
4400
3409
  "type": "arrow",
4401
- "id": "arrow-review-pass"
3410
+ "id": "arrow-done-more-stories"
4402
3411
  },
4403
3412
  {
4404
- "type": "arrow",
4405
- "id": "arrow-done-more-stories"
3413
+ "id": "arrow-dev-review",
3414
+ "type": "arrow"
4406
3415
  }
4407
3416
  ],
4408
3417
  "locked": false,
4409
- "version": 2,
4410
- "versionNonce": 350198779,
3418
+ "version": 453,
3419
+ "versionNonce": 277682790,
4411
3420
  "index": "b0b",
4412
3421
  "isDeleted": false,
4413
3422
  "strokeStyle": "solid",
4414
3423
  "seed": 1,
4415
3424
  "frameId": null,
4416
- "updated": 1763522171080,
3425
+ "updated": 1764190763204,
4417
3426
  "link": null
4418
3427
  },
4419
3428
  {
4420
3429
  "id": "proc-story-done-text",
4421
3430
  "type": "text",
4422
- "x": 1030,
4423
- "y": 2098,
4424
- "width": 140,
4425
- "height": 25,
3431
+ "x": 1187.9272045420983,
3432
+ "y": 972.2529662369525,
3433
+ "width": 122.94390869140625,
3434
+ "height": 60,
4426
3435
  "angle": 0,
4427
3436
  "strokeColor": "#1e1e1e",
4428
3437
  "backgroundColor": "transparent",
@@ -4433,15 +3442,15 @@
4433
3442
  "groupIds": [
4434
3443
  "proc-story-done-group"
4435
3444
  ],
4436
- "fontSize": 20,
3445
+ "fontSize": 16,
4437
3446
  "fontFamily": 1,
4438
- "text": "Story Done",
3447
+ "text": "Code Review\n<<use different\nLLM>>",
4439
3448
  "textAlign": "center",
4440
3449
  "verticalAlign": "middle",
4441
3450
  "containerId": "proc-story-done",
4442
3451
  "locked": false,
4443
- "version": 2,
4444
- "versionNonce": 1601467701,
3452
+ "version": 502,
3453
+ "versionNonce": 1242095014,
4445
3454
  "index": "b0c",
4446
3455
  "isDeleted": false,
4447
3456
  "strokeStyle": "solid",
@@ -4449,19 +3458,19 @@
4449
3458
  "frameId": null,
4450
3459
  "roundness": null,
4451
3460
  "boundElements": [],
4452
- "updated": 1763522171080,
3461
+ "updated": 1764190763204,
4453
3462
  "link": null,
4454
- "originalText": "Story Done",
3463
+ "originalText": "Code Review\n<<use different LLM>>",
4455
3464
  "autoResize": true,
4456
3465
  "lineHeight": 1.25
4457
3466
  },
4458
3467
  {
4459
3468
  "id": "arrow-done-more-stories",
4460
3469
  "type": "arrow",
4461
- "x": 1100,
4462
- "y": 2150,
4463
- "width": 0,
4464
- "height": 30,
3470
+ "x": 1249.4681490735618,
3471
+ "y": 1065.5372616587838,
3472
+ "width": 1.7879398006109568,
3473
+ "height": 90.97426236326123,
4465
3474
  "angle": 0,
4466
3475
  "strokeColor": "#1976d2",
4467
3476
  "backgroundColor": "transparent",
@@ -4472,13 +3481,13 @@
4472
3481
  "groupIds": [],
4473
3482
  "startBinding": {
4474
3483
  "elementId": "proc-story-done",
4475
- "focus": 0,
4476
- "gap": 1
3484
+ "focus": 0.014488632877232727,
3485
+ "gap": 8.284295421831303
4477
3486
  },
4478
3487
  "endBinding": {
4479
- "elementId": "decision-more-stories",
4480
- "focus": 0,
4481
- "gap": 1
3488
+ "elementId": "decision-code-review",
3489
+ "focus": 0.09832693417954867,
3490
+ "gap": 2.039543956918169
4482
3491
  },
4483
3492
  "points": [
4484
3493
  [
@@ -4486,13 +3495,13 @@
4486
3495
  0
4487
3496
  ],
4488
3497
  [
4489
- 0,
4490
- 30
3498
+ 1.7879398006109568,
3499
+ 90.97426236326123
4491
3500
  ]
4492
3501
  ],
4493
3502
  "lastCommittedPoint": null,
4494
- "version": 2,
4495
- "versionNonce": 1478517915,
3503
+ "version": 1093,
3504
+ "versionNonce": 146679034,
4496
3505
  "index": "b0d",
4497
3506
  "isDeleted": false,
4498
3507
  "strokeStyle": "solid",
@@ -4500,7 +3509,7 @@
4500
3509
  "frameId": null,
4501
3510
  "roundness": null,
4502
3511
  "boundElements": [],
4503
- "updated": 1763522171080,
3512
+ "updated": 1764190763619,
4504
3513
  "link": null,
4505
3514
  "locked": false,
4506
3515
  "startArrowhead": null,
@@ -4509,8 +3518,8 @@
4509
3518
  {
4510
3519
  "id": "decision-more-stories",
4511
3520
  "type": "diamond",
4512
- "x": 1010,
4513
- "y": 2180,
3521
+ "x": 1163.8719002449689,
3522
+ "y": 1363.600308336051,
4514
3523
  "width": 180,
4515
3524
  "height": 120,
4516
3525
  "angle": 0,
@@ -4539,25 +3548,29 @@
4539
3548
  {
4540
3549
  "type": "arrow",
4541
3550
  "id": "arrow-more-stories-no"
3551
+ },
3552
+ {
3553
+ "id": "4chQ7PksRKpPe5YX-TfFJ",
3554
+ "type": "arrow"
4542
3555
  }
4543
3556
  ],
4544
3557
  "locked": false,
4545
- "version": 2,
4546
- "versionNonce": 66717333,
3558
+ "version": 441,
3559
+ "versionNonce": 886168230,
4547
3560
  "index": "b0e",
4548
3561
  "isDeleted": false,
4549
3562
  "strokeStyle": "solid",
4550
3563
  "seed": 1,
4551
3564
  "frameId": null,
4552
3565
  "roundness": null,
4553
- "updated": 1763522171080,
3566
+ "updated": 1764190763204,
4554
3567
  "link": null
4555
3568
  },
4556
3569
  {
4557
3570
  "id": "decision-more-stories-text",
4558
3571
  "type": "text",
4559
- "x": 1025,
4560
- "y": 2215,
3572
+ "x": 1178.8719002449689,
3573
+ "y": 1398.600308336051,
4561
3574
  "width": 150,
4562
3575
  "height": 50,
4563
3576
  "angle": 0,
@@ -4577,8 +3590,8 @@
4577
3590
  "verticalAlign": "middle",
4578
3591
  "containerId": "decision-more-stories",
4579
3592
  "locked": false,
4580
- "version": 2,
4581
- "versionNonce": 1434392891,
3593
+ "version": 440,
3594
+ "versionNonce": 1078695398,
4582
3595
  "index": "b0f",
4583
3596
  "isDeleted": false,
4584
3597
  "strokeStyle": "solid",
@@ -4586,7 +3599,7 @@
4586
3599
  "frameId": null,
4587
3600
  "roundness": null,
4588
3601
  "boundElements": [],
4589
- "updated": 1763522171080,
3602
+ "updated": 1764190763204,
4590
3603
  "link": null,
4591
3604
  "originalText": "More Stories\nin Epic?",
4592
3605
  "autoResize": true,
@@ -4595,10 +3608,10 @@
4595
3608
  {
4596
3609
  "id": "arrow-more-stories-yes",
4597
3610
  "type": "arrow",
4598
- "x": 1005,
4599
- "y": 2239.9,
4600
- "width": 280.5703125,
4601
- "height": 879.8335937500001,
3611
+ "x": 1158.8719002449689,
3612
+ "y": 1423.5003083360511,
3613
+ "width": 141.95595587699154,
3614
+ "height": 827.0007685048595,
4602
3615
  "angle": 0,
4603
3616
  "strokeColor": "#1976d2",
4604
3617
  "backgroundColor": "transparent",
@@ -4607,7 +3620,15 @@
4607
3620
  "roughness": 0,
4608
3621
  "opacity": 100,
4609
3622
  "groupIds": [],
4610
- "startBinding": null,
3623
+ "startBinding": {
3624
+ "elementId": "decision-more-stories",
3625
+ "fixedPoint": [
3626
+ -0.027777777777777776,
3627
+ 0.4991666666666674
3628
+ ],
3629
+ "focus": 0,
3630
+ "gap": 0
3631
+ },
4611
3632
  "endBinding": null,
4612
3633
  "points": [
4613
3634
  [
@@ -4615,22 +3636,22 @@
4615
3636
  0
4616
3637
  ],
4617
3638
  [
4618
- -271.71875,
3639
+ -140.44216650530916,
4619
3640
  0
4620
3641
  ],
4621
3642
  [
4622
- -271.71875,
4623
- -879.8335937500001
3643
+ -140.44216650530916,
3644
+ -827.0007685048595
4624
3645
  ],
4625
3646
  [
4626
- 8.8515625,
4627
- -879.8335937500001
3647
+ 1.5137893716823783,
3648
+ -827.0007685048595
4628
3649
  ]
4629
3650
  ],
4630
3651
  "lastCommittedPoint": null,
4631
3652
  "elbowed": true,
4632
- "version": 266,
4633
- "versionNonce": 2028204117,
3653
+ "version": 954,
3654
+ "versionNonce": 2094428902,
4634
3655
  "index": "b0g",
4635
3656
  "isDeleted": false,
4636
3657
  "strokeStyle": "solid",
@@ -4638,7 +3659,7 @@
4638
3659
  "frameId": null,
4639
3660
  "roundness": null,
4640
3661
  "boundElements": [],
4641
- "updated": 1763522251385,
3662
+ "updated": 1764190763204,
4642
3663
  "link": null,
4643
3664
  "locked": false,
4644
3665
  "startArrowhead": null,
@@ -4647,12 +3668,12 @@
4647
3668
  {
4648
3669
  "index": 2,
4649
3670
  "start": [
4650
- -271.71875,
3671
+ -140.44216650530916,
4651
3672
  0
4652
3673
  ],
4653
3674
  "end": [
4654
- -271.71875,
4655
- -879.8335937500001
3675
+ -140.44216650530916,
3676
+ -827.0007685048595
4656
3677
  ]
4657
3678
  }
4658
3679
  ],
@@ -4662,8 +3683,8 @@
4662
3683
  {
4663
3684
  "id": "label-more-stories-yes",
4664
3685
  "type": "text",
4665
- "x": 820,
4666
- "y": 2220,
3686
+ "x": 1024.8322929694286,
3687
+ "y": 1455.9672274720815,
4667
3688
  "width": 30,
4668
3689
  "height": 20,
4669
3690
  "angle": 0,
@@ -4680,8 +3701,8 @@
4680
3701
  "textAlign": "left",
4681
3702
  "verticalAlign": "top",
4682
3703
  "locked": false,
4683
- "version": 2,
4684
- "versionNonce": 1784560091,
3704
+ "version": 320,
3705
+ "versionNonce": 76752422,
4685
3706
  "index": "b0h",
4686
3707
  "isDeleted": false,
4687
3708
  "strokeStyle": "solid",
@@ -4689,7 +3710,7 @@
4689
3710
  "frameId": null,
4690
3711
  "roundness": null,
4691
3712
  "boundElements": [],
4692
- "updated": 1763522171080,
3713
+ "updated": 1764190763204,
4693
3714
  "link": null,
4694
3715
  "containerId": null,
4695
3716
  "originalText": "Yes",
@@ -4699,10 +3720,10 @@
4699
3720
  {
4700
3721
  "id": "arrow-more-stories-no",
4701
3722
  "type": "arrow",
4702
- "x": 1100,
4703
- "y": 2300,
4704
- "width": 0,
4705
- "height": 30,
3723
+ "x": 1254.2299747445697,
3724
+ "y": 1484.1816612705734,
3725
+ "width": 0.09067340460524065,
3726
+ "height": 69.22388536244944,
4706
3727
  "angle": 0,
4707
3728
  "strokeColor": "#1976d2",
4708
3729
  "backgroundColor": "transparent",
@@ -4713,12 +3734,12 @@
4713
3734
  "groupIds": [],
4714
3735
  "startBinding": {
4715
3736
  "elementId": "decision-more-stories",
4716
- "focus": 0,
3737
+ "focus": -0.004645359638607261,
4717
3738
  "gap": 1
4718
3739
  },
4719
3740
  "endBinding": {
4720
3741
  "elementId": "proc-retrospective",
4721
- "focus": 0,
3742
+ "focus": -0.000007722345339971072,
4722
3743
  "gap": 1
4723
3744
  },
4724
3745
  "points": [
@@ -4727,13 +3748,13 @@
4727
3748
  0
4728
3749
  ],
4729
3750
  [
4730
- 0,
4731
- 30
3751
+ 0.09067340460524065,
3752
+ 69.22388536244944
4732
3753
  ]
4733
3754
  ],
4734
3755
  "lastCommittedPoint": null,
4735
- "version": 2,
4736
- "versionNonce": 488580437,
3756
+ "version": 1115,
3757
+ "versionNonce": 1285598842,
4737
3758
  "index": "b0i",
4738
3759
  "isDeleted": false,
4739
3760
  "strokeStyle": "solid",
@@ -4741,7 +3762,7 @@
4741
3762
  "frameId": null,
4742
3763
  "roundness": null,
4743
3764
  "boundElements": [],
4744
- "updated": 1763522171080,
3765
+ "updated": 1764190763619,
4745
3766
  "link": null,
4746
3767
  "locked": false,
4747
3768
  "startArrowhead": null,
@@ -4750,8 +3771,8 @@
4750
3771
  {
4751
3772
  "id": "label-more-stories-no",
4752
3773
  "type": "text",
4753
- "x": 1110,
4754
- "y": 2310,
3774
+ "x": 1273.6656161640394,
3775
+ "y": 1506.317970130127,
4755
3776
  "width": 25,
4756
3777
  "height": 20,
4757
3778
  "angle": 0,
@@ -4768,8 +3789,8 @@
4768
3789
  "textAlign": "left",
4769
3790
  "verticalAlign": "top",
4770
3791
  "locked": false,
4771
- "version": 2,
4772
- "versionNonce": 600852091,
3792
+ "version": 327,
3793
+ "versionNonce": 1022383270,
4773
3794
  "index": "b0j",
4774
3795
  "isDeleted": false,
4775
3796
  "strokeStyle": "solid",
@@ -4777,7 +3798,7 @@
4777
3798
  "frameId": null,
4778
3799
  "roundness": null,
4779
3800
  "boundElements": [],
4780
- "updated": 1763522171080,
3801
+ "updated": 1764190763204,
4781
3802
  "link": null,
4782
3803
  "containerId": null,
4783
3804
  "originalText": "No",
@@ -4787,8 +3808,8 @@
4787
3808
  {
4788
3809
  "id": "proc-retrospective",
4789
3810
  "type": "rectangle",
4790
- "x": 1020,
4791
- "y": 2330,
3811
+ "x": 1174.3742521794413,
3812
+ "y": 1553.8571607942745,
4792
3813
  "width": 160,
4793
3814
  "height": 80,
4794
3815
  "angle": 0,
@@ -4820,21 +3841,21 @@
4820
3841
  }
4821
3842
  ],
4822
3843
  "locked": false,
4823
- "version": 2,
4824
- "versionNonce": 1964618421,
3844
+ "version": 391,
3845
+ "versionNonce": 1921699814,
4825
3846
  "index": "b0k",
4826
3847
  "isDeleted": false,
4827
3848
  "strokeStyle": "solid",
4828
3849
  "seed": 1,
4829
3850
  "frameId": null,
4830
- "updated": 1763522171080,
3851
+ "updated": 1764190763204,
4831
3852
  "link": null
4832
3853
  },
4833
3854
  {
4834
3855
  "id": "proc-retrospective-text",
4835
3856
  "type": "text",
4836
- "x": 1030,
4837
- "y": 2358,
3857
+ "x": 1184.3742521794413,
3858
+ "y": 1581.8571607942745,
4838
3859
  "width": 140,
4839
3860
  "height": 25,
4840
3861
  "angle": 0,
@@ -4854,8 +3875,8 @@
4854
3875
  "verticalAlign": "middle",
4855
3876
  "containerId": "proc-retrospective",
4856
3877
  "locked": false,
4857
- "version": 2,
4858
- "versionNonce": 1217904411,
3878
+ "version": 391,
3879
+ "versionNonce": 1572070182,
4859
3880
  "index": "b0l",
4860
3881
  "isDeleted": false,
4861
3882
  "strokeStyle": "solid",
@@ -4863,7 +3884,7 @@
4863
3884
  "frameId": null,
4864
3885
  "roundness": null,
4865
3886
  "boundElements": [],
4866
- "updated": 1763522171080,
3887
+ "updated": 1764190763204,
4867
3888
  "link": null,
4868
3889
  "originalText": "Retrospective",
4869
3890
  "autoResize": true,
@@ -4872,10 +3893,10 @@
4872
3893
  {
4873
3894
  "id": "arrow-retro-more-epics",
4874
3895
  "type": "arrow",
4875
- "x": 1100,
4876
- "y": 2410,
4877
- "width": 0,
4878
- "height": 30,
3896
+ "x": 1252.261821627823,
3897
+ "y": 1634.3087749555261,
3898
+ "width": 2.2496323163620673,
3899
+ "height": 42.83146813764597,
4879
3900
  "angle": 0,
4880
3901
  "strokeColor": "#1976d2",
4881
3902
  "backgroundColor": "transparent",
@@ -4886,12 +3907,12 @@
4886
3907
  "groupIds": [],
4887
3908
  "startBinding": {
4888
3909
  "elementId": "proc-retrospective",
4889
- "focus": 0,
3910
+ "focus": -0.00014865809573961995,
4890
3911
  "gap": 1
4891
3912
  },
4892
3913
  "endBinding": {
4893
3914
  "elementId": "decision-more-epics",
4894
- "focus": 0,
3915
+ "focus": 0.006063807827498143,
4895
3916
  "gap": 1
4896
3917
  },
4897
3918
  "points": [
@@ -4900,13 +3921,13 @@
4900
3921
  0
4901
3922
  ],
4902
3923
  [
4903
- 0,
4904
- 30
3924
+ -2.2496323163620673,
3925
+ 42.83146813764597
4905
3926
  ]
4906
3927
  ],
4907
3928
  "lastCommittedPoint": null,
4908
- "version": 2,
4909
- "versionNonce": 2098959381,
3929
+ "version": 957,
3930
+ "versionNonce": 1972295674,
4910
3931
  "index": "b0m",
4911
3932
  "isDeleted": false,
4912
3933
  "strokeStyle": "solid",
@@ -4914,7 +3935,7 @@
4914
3935
  "frameId": null,
4915
3936
  "roundness": null,
4916
3937
  "boundElements": [],
4917
- "updated": 1763522171080,
3938
+ "updated": 1764190763619,
4918
3939
  "link": null,
4919
3940
  "locked": false,
4920
3941
  "startArrowhead": null,
@@ -4923,8 +3944,8 @@
4923
3944
  {
4924
3945
  "id": "decision-more-epics",
4925
3946
  "type": "diamond",
4926
- "x": 1010,
4927
- "y": 2440,
3947
+ "x": 1156.5341271166512,
3948
+ "y": 1676.4331335811917,
4928
3949
  "width": 180,
4929
3950
  "height": 120,
4930
3951
  "angle": 0,
@@ -4956,22 +3977,22 @@
4956
3977
  }
4957
3978
  ],
4958
3979
  "locked": false,
4959
- "version": 2,
4960
- "versionNonce": 589767611,
3980
+ "version": 282,
3981
+ "versionNonce": 101589030,
4961
3982
  "index": "b0n",
4962
3983
  "isDeleted": false,
4963
3984
  "strokeStyle": "solid",
4964
3985
  "seed": 1,
4965
3986
  "frameId": null,
4966
3987
  "roundness": null,
4967
- "updated": 1763522171080,
3988
+ "updated": 1764190763204,
4968
3989
  "link": null
4969
3990
  },
4970
3991
  {
4971
3992
  "id": "decision-more-epics-text",
4972
3993
  "type": "text",
4973
- "x": 1025,
4974
- "y": 2475,
3994
+ "x": 1171.5341271166512,
3995
+ "y": 1711.4331335811917,
4975
3996
  "width": 150,
4976
3997
  "height": 50,
4977
3998
  "angle": 0,
@@ -4991,8 +4012,8 @@
4991
4012
  "verticalAlign": "middle",
4992
4013
  "containerId": "decision-more-epics",
4993
4014
  "locked": false,
4994
- "version": 2,
4995
- "versionNonce": 1629112693,
4015
+ "version": 282,
4016
+ "versionNonce": 2095262566,
4996
4017
  "index": "b0o",
4997
4018
  "isDeleted": false,
4998
4019
  "strokeStyle": "solid",
@@ -5000,7 +4021,7 @@
5000
4021
  "frameId": null,
5001
4022
  "roundness": null,
5002
4023
  "boundElements": [],
5003
- "updated": 1763522171080,
4024
+ "updated": 1764190763204,
5004
4025
  "link": null,
5005
4026
  "originalText": "More Epics?",
5006
4027
  "autoResize": true,
@@ -5009,10 +4030,10 @@
5009
4030
  {
5010
4031
  "id": "arrow-more-epics-yes",
5011
4032
  "type": "arrow",
5012
- "x": 1005,
5013
- "y": 2499.9,
5014
- "width": 335.74609375,
5015
- "height": 1390,
4033
+ "x": 1151.5341271166512,
4034
+ "y": 1736.3331335811918,
4035
+ "width": 194.92191691435096,
4036
+ "height": 1138.0678409916745,
5016
4037
  "angle": 0,
5017
4038
  "strokeColor": "#1976d2",
5018
4039
  "backgroundColor": "transparent",
@@ -5037,22 +4058,22 @@
5037
4058
  0
5038
4059
  ],
5039
4060
  [
5040
- -325.74609375,
4061
+ -184.89984110690511,
5041
4062
  0
5042
4063
  ],
5043
4064
  [
5044
- -325.74609375,
5045
- -1390
4065
+ -184.89984110690511,
4066
+ -1138.0678409916745
5046
4067
  ],
5047
4068
  [
5048
- 10,
5049
- -1390
4069
+ 10.022075807445844,
4070
+ -1138.0678409916745
5050
4071
  ]
5051
4072
  ],
5052
4073
  "lastCommittedPoint": null,
5053
4074
  "elbowed": true,
5054
- "version": 818,
5055
- "versionNonce": 1779029653,
4075
+ "version": 1805,
4076
+ "versionNonce": 1424088358,
5056
4077
  "index": "b0p",
5057
4078
  "isDeleted": false,
5058
4079
  "strokeStyle": "solid",
@@ -5060,7 +4081,7 @@
5060
4081
  "frameId": null,
5061
4082
  "roundness": null,
5062
4083
  "boundElements": [],
5063
- "updated": 1763522236433,
4084
+ "updated": 1764190763204,
5064
4085
  "link": null,
5065
4086
  "locked": false,
5066
4087
  "startArrowhead": null,
@@ -5069,12 +4090,12 @@
5069
4090
  {
5070
4091
  "index": 2,
5071
4092
  "start": [
5072
- -326.6484375,
5073
- -723.95
4093
+ -184.89984110690511,
4094
+ 0
5074
4095
  ],
5075
4096
  "end": [
5076
- -326.6484375,
5077
- -1390
4097
+ -184.89984110690511,
4098
+ -1138.0678409916745
5078
4099
  ]
5079
4100
  }
5080
4101
  ],
@@ -5084,8 +4105,8 @@
5084
4105
  {
5085
4106
  "id": "label-more-epics-yes",
5086
4107
  "type": "text",
5087
- "x": 712.078125,
5088
- "y": 2478.50390625,
4108
+ "x": 1016.7607529532588,
4109
+ "y": 1704.1213622982812,
5089
4110
  "width": 30,
5090
4111
  "height": 20,
5091
4112
  "angle": 0,
@@ -5102,8 +4123,8 @@
5102
4123
  "textAlign": "left",
5103
4124
  "verticalAlign": "top",
5104
4125
  "locked": false,
5105
- "version": 56,
5106
- "versionNonce": 1238151355,
4126
+ "version": 395,
4127
+ "versionNonce": 339167334,
5107
4128
  "index": "b0q",
5108
4129
  "isDeleted": false,
5109
4130
  "strokeStyle": "solid",
@@ -5111,7 +4132,7 @@
5111
4132
  "frameId": null,
5112
4133
  "roundness": null,
5113
4134
  "boundElements": [],
5114
- "updated": 1763522225296,
4135
+ "updated": 1764190763204,
5115
4136
  "link": null,
5116
4137
  "containerId": null,
5117
4138
  "originalText": "Yes",
@@ -5121,8 +4142,8 @@
5121
4142
  {
5122
4143
  "id": "arrow-more-epics-no",
5123
4144
  "type": "arrow",
5124
- "x": 1100,
5125
- "y": 2560,
4145
+ "x": 1246.5341271166512,
4146
+ "y": 1796.4331335811921,
5126
4147
  "width": 0,
5127
4148
  "height": 50,
5128
4149
  "angle": 0,
@@ -5134,9 +4155,9 @@
5134
4155
  "opacity": 100,
5135
4156
  "groupIds": [],
5136
4157
  "startBinding": {
5137
- "elementId": "decision-more-epics",
4158
+ "elementId": "label-more-epics-no",
5138
4159
  "focus": 0,
5139
- "gap": 1
4160
+ "gap": 14.142135623730951
5140
4161
  },
5141
4162
  "endBinding": {
5142
4163
  "elementId": "end-ellipse",
@@ -5154,8 +4175,8 @@
5154
4175
  ]
5155
4176
  ],
5156
4177
  "lastCommittedPoint": null,
5157
- "version": 2,
5158
- "versionNonce": 836219131,
4178
+ "version": 848,
4179
+ "versionNonce": 757113210,
5159
4180
  "index": "b0r",
5160
4181
  "isDeleted": false,
5161
4182
  "strokeStyle": "solid",
@@ -5163,7 +4184,7 @@
5163
4184
  "frameId": null,
5164
4185
  "roundness": null,
5165
4186
  "boundElements": [],
5166
- "updated": 1763522171080,
4187
+ "updated": 1764190763620,
5167
4188
  "link": null,
5168
4189
  "locked": false,
5169
4190
  "startArrowhead": null,
@@ -5172,8 +4193,8 @@
5172
4193
  {
5173
4194
  "id": "label-more-epics-no",
5174
4195
  "type": "text",
5175
- "x": 1110,
5176
- "y": 2570,
4196
+ "x": 1256.5341271166512,
4197
+ "y": 1806.4331335811921,
5177
4198
  "width": 25,
5178
4199
  "height": 20,
5179
4200
  "angle": 0,
@@ -5190,16 +4211,21 @@
5190
4211
  "textAlign": "left",
5191
4212
  "verticalAlign": "top",
5192
4213
  "locked": false,
5193
- "version": 2,
5194
- "versionNonce": 1031024693,
4214
+ "version": 283,
4215
+ "versionNonce": 1126229734,
5195
4216
  "index": "b0s",
5196
4217
  "isDeleted": false,
5197
4218
  "strokeStyle": "solid",
5198
4219
  "seed": 1,
5199
4220
  "frameId": null,
5200
4221
  "roundness": null,
5201
- "boundElements": [],
5202
- "updated": 1763522171080,
4222
+ "boundElements": [
4223
+ {
4224
+ "id": "arrow-more-epics-no",
4225
+ "type": "arrow"
4226
+ }
4227
+ ],
4228
+ "updated": 1764190763204,
5203
4229
  "link": null,
5204
4230
  "containerId": null,
5205
4231
  "originalText": "No",
@@ -5209,8 +4235,8 @@
5209
4235
  {
5210
4236
  "id": "end-ellipse",
5211
4237
  "type": "ellipse",
5212
- "x": 1040,
5213
- "y": 2610,
4238
+ "x": 1186.5341271166512,
4239
+ "y": 1846.4331335811921,
5214
4240
  "width": 120,
5215
4241
  "height": 60,
5216
4242
  "angle": 0,
@@ -5234,22 +4260,22 @@
5234
4260
  }
5235
4261
  ],
5236
4262
  "locked": false,
5237
- "version": 2,
5238
- "versionNonce": 659413403,
4263
+ "version": 282,
4264
+ "versionNonce": 370468198,
5239
4265
  "index": "b0t",
5240
4266
  "isDeleted": false,
5241
4267
  "strokeStyle": "solid",
5242
4268
  "seed": 1,
5243
4269
  "frameId": null,
5244
4270
  "roundness": null,
5245
- "updated": 1763522171080,
4271
+ "updated": 1764190763204,
5246
4272
  "link": null
5247
4273
  },
5248
4274
  {
5249
4275
  "id": "end-text",
5250
4276
  "type": "text",
5251
- "x": 1077,
5252
- "y": 2628,
4277
+ "x": 1223.5341271166512,
4278
+ "y": 1864.4331335811921,
5253
4279
  "width": 46,
5254
4280
  "height": 25,
5255
4281
  "angle": 0,
@@ -5269,8 +4295,8 @@
5269
4295
  "verticalAlign": "middle",
5270
4296
  "containerId": "end-ellipse",
5271
4297
  "locked": false,
5272
- "version": 2,
5273
- "versionNonce": 541745557,
4298
+ "version": 282,
4299
+ "versionNonce": 39798950,
5274
4300
  "index": "b0u",
5275
4301
  "isDeleted": false,
5276
4302
  "strokeStyle": "solid",
@@ -5278,7 +4304,7 @@
5278
4304
  "frameId": null,
5279
4305
  "roundness": null,
5280
4306
  "boundElements": [],
5281
- "updated": 1763522171080,
4307
+ "updated": 1764190763204,
5282
4308
  "link": null,
5283
4309
  "originalText": "End",
5284
4310
  "autoResize": true,
@@ -5907,6 +4933,235 @@
5907
4933
  "originalText": "Decision",
5908
4934
  "autoResize": true,
5909
4935
  "lineHeight": 1.25
4936
+ },
4937
+ {
4938
+ "id": "4chQ7PksRKpPe5YX-TfFJ",
4939
+ "type": "arrow",
4940
+ "x": 1250.9718703296421,
4941
+ "y": 1311.0799578560604,
4942
+ "width": 3.1071377799139555,
4943
+ "height": 47.57227388165256,
4944
+ "angle": 0,
4945
+ "strokeColor": "#1976d2",
4946
+ "backgroundColor": "transparent",
4947
+ "fillStyle": "solid",
4948
+ "strokeWidth": 2,
4949
+ "roughness": 0,
4950
+ "opacity": 100,
4951
+ "groupIds": [],
4952
+ "startBinding": {
4953
+ "elementId": "label-pass",
4954
+ "focus": 0.0002774287102738527,
4955
+ "gap": 9.837794264415606
4956
+ },
4957
+ "endBinding": {
4958
+ "elementId": "decision-more-stories",
4959
+ "focus": 0.07415216095379644,
4960
+ "gap": 5.01120144889627
4961
+ },
4962
+ "points": [
4963
+ [
4964
+ 0,
4965
+ 0
4966
+ ],
4967
+ [
4968
+ 3.1071377799139555,
4969
+ 47.57227388165256
4970
+ ]
4971
+ ],
4972
+ "lastCommittedPoint": null,
4973
+ "version": 1485,
4974
+ "versionNonce": 384699130,
4975
+ "index": "b1D",
4976
+ "isDeleted": false,
4977
+ "strokeStyle": "solid",
4978
+ "seed": 1128360742,
4979
+ "frameId": null,
4980
+ "roundness": null,
4981
+ "boundElements": [],
4982
+ "updated": 1764190763620,
4983
+ "link": null,
4984
+ "locked": false,
4985
+ "startArrowhead": null,
4986
+ "endArrowhead": "arrow"
4987
+ },
4988
+ {
4989
+ "id": "jv0rnlK2D9JKIGTO7pUtT",
4990
+ "type": "arrow",
4991
+ "x": 199.95091169427553,
4992
+ "y": 434.3642722686245,
4993
+ "width": 152.18808817436843,
4994
+ "height": 126.81486476828513,
4995
+ "angle": 0,
4996
+ "strokeColor": "#1976d2",
4997
+ "backgroundColor": "transparent",
4998
+ "fillStyle": "solid",
4999
+ "strokeWidth": 2,
5000
+ "roughness": 0,
5001
+ "opacity": 100,
5002
+ "groupIds": [],
5003
+ "startBinding": {
5004
+ "elementId": "proc-brainstorm",
5005
+ "focus": 0.3249856938901564,
5006
+ "gap": 1
5007
+ },
5008
+ "endBinding": {
5009
+ "elementId": "proc-prd",
5010
+ "focus": 0.40022808683972894,
5011
+ "gap": 7.158084853619243
5012
+ },
5013
+ "points": [
5014
+ [
5015
+ 0,
5016
+ 0
5017
+ ],
5018
+ [
5019
+ 69.77818267983719,
5020
+ 0.8988822936652241
5021
+ ],
5022
+ [
5023
+ 84.43045426782976,
5024
+ -84.30283196996788
5025
+ ],
5026
+ [
5027
+ 152.18808817436843,
5028
+ -125.91598247461991
5029
+ ]
5030
+ ],
5031
+ "lastCommittedPoint": null,
5032
+ "version": 2008,
5033
+ "versionNonce": 1304633062,
5034
+ "index": "b1F",
5035
+ "isDeleted": false,
5036
+ "strokeStyle": "solid",
5037
+ "seed": 753809018,
5038
+ "frameId": null,
5039
+ "roundness": {
5040
+ "type": 2
5041
+ },
5042
+ "boundElements": [],
5043
+ "updated": 1764191372763,
5044
+ "link": null,
5045
+ "locked": false,
5046
+ "startArrowhead": null,
5047
+ "endArrowhead": "arrow",
5048
+ "elbowed": false
5049
+ },
5050
+ {
5051
+ "id": "RF10FfKbmG72P77I2IoP4",
5052
+ "type": "arrow",
5053
+ "x": 200.50999902520755,
5054
+ "y": 524.3440535408814,
5055
+ "width": 155.72897460360434,
5056
+ "height": 217.43940257292877,
5057
+ "angle": 0,
5058
+ "strokeColor": "#1976d2",
5059
+ "backgroundColor": "transparent",
5060
+ "fillStyle": "solid",
5061
+ "strokeWidth": 2,
5062
+ "roughness": 0,
5063
+ "opacity": 100,
5064
+ "groupIds": [],
5065
+ "startBinding": {
5066
+ "elementId": "proc-research",
5067
+ "focus": 0.2547348377789515,
5068
+ "gap": 1
5069
+ },
5070
+ "endBinding": {
5071
+ "elementId": "proc-prd",
5072
+ "focus": 0.3948133447078272,
5073
+ "gap": 3.0581110934513163
5074
+ },
5075
+ "points": [
5076
+ [
5077
+ 0,
5078
+ 0
5079
+ ],
5080
+ [
5081
+ 71.74164413965786,
5082
+ -18.904836665604307
5083
+ ],
5084
+ [
5085
+ 83.93792495248488,
5086
+ -172.66332121061578
5087
+ ],
5088
+ [
5089
+ 155.72897460360434,
5090
+ -217.43940257292877
5091
+ ]
5092
+ ],
5093
+ "lastCommittedPoint": null,
5094
+ "version": 2022,
5095
+ "versionNonce": 1289623162,
5096
+ "index": "b1G",
5097
+ "isDeleted": false,
5098
+ "strokeStyle": "solid",
5099
+ "seed": 389493926,
5100
+ "frameId": null,
5101
+ "roundness": {
5102
+ "type": 2
5103
+ },
5104
+ "boundElements": [],
5105
+ "updated": 1764191336778,
5106
+ "link": null,
5107
+ "locked": false,
5108
+ "startArrowhead": null,
5109
+ "endArrowhead": "arrow",
5110
+ "elbowed": false
5111
+ },
5112
+ {
5113
+ "id": "FDR4ZvEvNmPvkP3HfQMY4",
5114
+ "type": "arrow",
5115
+ "x": 523.1179307657023,
5116
+ "y": 528.6598293249855,
5117
+ "width": 156.49193140361945,
5118
+ "height": 211.37494429949584,
5119
+ "angle": 0,
5120
+ "strokeColor": "#1976d2",
5121
+ "backgroundColor": "transparent",
5122
+ "fillStyle": "solid",
5123
+ "strokeWidth": 2,
5124
+ "roughness": 0,
5125
+ "opacity": 100,
5126
+ "groupIds": [],
5127
+ "startBinding": null,
5128
+ "endBinding": null,
5129
+ "points": [
5130
+ [
5131
+ 0,
5132
+ 0
5133
+ ],
5134
+ [
5135
+ 67.6421465593952,
5136
+ -30.201232355758236
5137
+ ],
5138
+ [
5139
+ 96.50992722652438,
5140
+ -178.58566948715793
5141
+ ],
5142
+ [
5143
+ 156.49193140361945,
5144
+ -211.37494429949584
5145
+ ]
5146
+ ],
5147
+ "lastCommittedPoint": null,
5148
+ "version": 672,
5149
+ "versionNonce": 1827754470,
5150
+ "index": "b1I",
5151
+ "isDeleted": false,
5152
+ "strokeStyle": "solid",
5153
+ "seed": 310318758,
5154
+ "frameId": null,
5155
+ "roundness": {
5156
+ "type": 2
5157
+ },
5158
+ "boundElements": [],
5159
+ "updated": 1764191558236,
5160
+ "link": null,
5161
+ "locked": false,
5162
+ "startArrowhead": null,
5163
+ "endArrowhead": "arrow",
5164
+ "elbowed": false
5910
5165
  }
5911
5166
  ],
5912
5167
  "appState": {