bmad-fh 6.0.0-alpha.052779ef
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.
- package/.coderabbit.yaml +40 -0
- package/.githooks/post-checkout +129 -0
- package/.githooks/pre-commit +63 -0
- package/.githooks/pre-push +135 -0
- package/.github/CODE_OF_CONDUCT.md +128 -0
- package/.github/FUNDING.yaml +15 -0
- package/.github/ISSUE_TEMPLATE/config.yaml +8 -0
- package/.github/ISSUE_TEMPLATE/feature_request.md +22 -0
- package/.github/ISSUE_TEMPLATE/issue.md +32 -0
- package/.github/scripts/discord-helpers.sh +34 -0
- package/.github/workflows/bundle-latest.yaml +330 -0
- package/.github/workflows/discord.yaml +90 -0
- package/.github/workflows/docs.yaml +63 -0
- package/.github/workflows/manual-release.yaml +190 -0
- package/.github/workflows/publish-multi-artifact.yaml +54 -0
- package/.github/workflows/quality.yaml +115 -0
- package/.husky/pre-commit +20 -0
- package/.markdownlint-cli2.yaml +41 -0
- package/.nvmrc +1 -0
- package/.prettierignore +9 -0
- package/.vscode/settings.json +97 -0
- package/CHANGELOG.md +1394 -0
- package/CNAME +1 -0
- package/CONTRIBUTING.md +306 -0
- package/CONTRIBUTORS.md +32 -0
- package/LICENSE +30 -0
- package/README.md +126 -0
- package/SECURITY.md +85 -0
- package/TRADEMARK.md +55 -0
- package/Wordmark.png +0 -0
- package/banner-bmad-method.png +0 -0
- package/docs/404.md +9 -0
- package/docs/_README_WORKFLOW_DIAGRAMS.md +40 -0
- package/docs/_STYLE_GUIDE.md +367 -0
- package/docs/_archive/customize-workflows.md +30 -0
- package/docs/_archive/getting-started-bmadv4.md +247 -0
- package/docs/_archive/vendor-workflows.md +52 -0
- package/docs/downloads.md +72 -0
- package/docs/explanation/agents/barry-quick-flow.md +328 -0
- package/docs/explanation/agents/index.md +19 -0
- package/docs/explanation/architecture/four-phases.md +107 -0
- package/docs/explanation/architecture/preventing-agent-conflicts.md +111 -0
- package/docs/explanation/architecture/why-solutioning-matters.md +75 -0
- package/docs/explanation/bmm/index.md +131 -0
- package/docs/explanation/core/index.md +18 -0
- package/docs/explanation/core-concepts/agent-roles.md +179 -0
- package/docs/explanation/core-concepts/index.md +35 -0
- package/docs/explanation/core-concepts/what-are-agents.md +97 -0
- package/docs/explanation/core-concepts/what-are-modules.md +85 -0
- package/docs/explanation/core-concepts/what-are-workflows.md +204 -0
- package/docs/explanation/faq/brownfield-faq.md +73 -0
- package/docs/explanation/faq/getting-started-faq.md +67 -0
- package/docs/explanation/faq/implementation-faq.md +52 -0
- package/docs/explanation/faq/index.md +16 -0
- package/docs/explanation/faq/levels-and-tracks-faq.md +52 -0
- package/docs/explanation/faq/planning-faq.md +41 -0
- package/docs/explanation/faq/tools-faq.md +277 -0
- package/docs/explanation/faq/workflows-faq.md +61 -0
- package/docs/explanation/features/advanced-elicitation.md +95 -0
- package/docs/explanation/features/brainstorming-techniques.md +92 -0
- package/docs/explanation/features/party-mode.md +95 -0
- package/docs/explanation/features/quick-flow.md +149 -0
- package/docs/explanation/features/tea-overview.md +410 -0
- package/docs/explanation/features/web-bundles.md +34 -0
- package/docs/explanation/philosophy/facilitation-over-generation.md +333 -0
- package/docs/explanation/philosophy/testing-as-engineering.md +112 -0
- package/docs/explanation/tea/engagement-models.md +710 -0
- package/docs/explanation/tea/fixture-architecture.md +457 -0
- package/docs/explanation/tea/knowledge-base-system.md +554 -0
- package/docs/explanation/tea/network-first-patterns.md +853 -0
- package/docs/explanation/tea/risk-based-testing.md +586 -0
- package/docs/explanation/tea/test-quality-standards.md +907 -0
- package/docs/how-to/brownfield/add-feature-to-existing.md +74 -0
- package/docs/how-to/brownfield/document-existing-project.md +66 -0
- package/docs/how-to/brownfield/index.md +84 -0
- package/docs/how-to/brownfield/quick-fix-in-brownfield.md +77 -0
- package/docs/how-to/brownfield/use-tea-for-enterprise.md +526 -0
- package/docs/how-to/brownfield/use-tea-with-existing-tests.md +577 -0
- package/docs/how-to/customization/customize-agents.md +212 -0
- package/docs/how-to/customization/enable-tea-mcp-enhancements.md +424 -0
- package/docs/how-to/customization/index.md +23 -0
- package/docs/how-to/customization/integrate-playwright-utils.md +813 -0
- package/docs/how-to/customization/shard-large-documents.md +101 -0
- package/docs/how-to/get-answers-about-bmad.md +102 -0
- package/docs/how-to/installation/index.md +12 -0
- package/docs/how-to/installation/install-bmad.md +111 -0
- package/docs/how-to/installation/install-custom-modules.md +118 -0
- package/docs/how-to/installation/upgrade-to-v6.md +131 -0
- package/docs/how-to/workflows/bmgd-quick-flow.md +156 -0
- package/docs/how-to/workflows/conduct-research.md +97 -0
- package/docs/how-to/workflows/create-architecture.md +119 -0
- package/docs/how-to/workflows/create-epics-and-stories.md +109 -0
- package/docs/how-to/workflows/create-prd.md +91 -0
- package/docs/how-to/workflows/create-product-brief.md +94 -0
- package/docs/how-to/workflows/create-story.md +102 -0
- package/docs/how-to/workflows/create-ux-design.md +100 -0
- package/docs/how-to/workflows/implement-story.md +97 -0
- package/docs/how-to/workflows/quick-spec.md +122 -0
- package/docs/how-to/workflows/run-atdd.md +436 -0
- package/docs/how-to/workflows/run-automate.md +653 -0
- package/docs/how-to/workflows/run-brainstorming-session.md +73 -0
- package/docs/how-to/workflows/run-code-review.md +89 -0
- package/docs/how-to/workflows/run-implementation-readiness.md +125 -0
- package/docs/how-to/workflows/run-nfr-assess.md +679 -0
- package/docs/how-to/workflows/run-sprint-planning.md +94 -0
- package/docs/how-to/workflows/run-test-design.md +98 -0
- package/docs/how-to/workflows/run-test-review.md +605 -0
- package/docs/how-to/workflows/run-trace.md +883 -0
- package/docs/how-to/workflows/setup-ci.md +712 -0
- package/docs/how-to/workflows/setup-party-mode.md +89 -0
- package/docs/how-to/workflows/setup-test-framework.md +98 -0
- package/docs/index.md +63 -0
- package/docs/migration-guide.md +365 -0
- package/docs/multi-scope-guide.md +379 -0
- package/docs/plans/multi-scope-parallel-artifacts-plan.md +695 -0
- package/docs/reference/agents/index.md +109 -0
- package/docs/reference/configuration/core-tasks.md +67 -0
- package/docs/reference/configuration/global-config.md +28 -0
- package/docs/reference/glossary/index.md +159 -0
- package/docs/reference/tea/commands.md +254 -0
- package/docs/reference/tea/configuration.md +678 -0
- package/docs/reference/tea/knowledge-base.md +340 -0
- package/docs/reference/workflows/core-workflows.md +32 -0
- package/docs/reference/workflows/document-project.md +73 -0
- package/docs/reference/workflows/index.md +12 -0
- package/docs/tutorials/getting-started/getting-started-bmadv6.md +246 -0
- package/docs/tutorials/getting-started/images/workflow-method-greenfield.excalidraw +5034 -0
- package/docs/tutorials/getting-started/images/workflow-method-greenfield.svg +4 -0
- package/docs/tutorials/getting-started/images/workflow-overview.jpg +0 -0
- package/docs/tutorials/getting-started/tea-lite-quickstart.md +444 -0
- package/docs/tutorials/getting-started/workflow-overview.jpg +0 -0
- package/eslint.config.mjs +152 -0
- package/package.json +117 -0
- package/prettier.config.mjs +32 -0
- package/src/bmm/_module-installer/installer.js +48 -0
- package/src/bmm/_module-installer/platform-specifics/claude-code.js +35 -0
- package/src/bmm/_module-installer/platform-specifics/windsurf.js +32 -0
- package/src/bmm/agents/analyst.agent.yaml +41 -0
- package/src/bmm/agents/architect.agent.yaml +33 -0
- package/src/bmm/agents/dev.agent.yaml +38 -0
- package/src/bmm/agents/pm.agent.yaml +51 -0
- package/src/bmm/agents/quick-flow-solo-dev.agent.yaml +32 -0
- package/src/bmm/agents/sm.agent.yaml +47 -0
- package/src/bmm/agents/tea.agent.yaml +68 -0
- package/src/bmm/agents/tech-writer/tech-writer-sidecar/documentation-standards.md +224 -0
- package/src/bmm/agents/tech-writer/tech-writer.agent.yaml +49 -0
- package/src/bmm/agents/ux-designer.agent.yaml +30 -0
- package/src/bmm/data/README.md +29 -0
- package/src/bmm/data/project-context-template.md +40 -0
- package/src/bmm/module.yaml +64 -0
- package/src/bmm/sub-modules/claude-code/config.yaml +4 -0
- package/src/bmm/sub-modules/claude-code/injections.yaml +242 -0
- package/src/bmm/sub-modules/claude-code/readme.md +87 -0
- package/src/bmm/teams/default-party.csv +21 -0
- package/src/bmm/teams/team-fullstack.yaml +12 -0
- package/src/bmm/testarch/knowledge/api-request.md +442 -0
- package/src/bmm/testarch/knowledge/api-testing-patterns.md +843 -0
- package/src/bmm/testarch/knowledge/auth-session.md +552 -0
- package/src/bmm/testarch/knowledge/burn-in.md +273 -0
- package/src/bmm/testarch/knowledge/ci-burn-in.md +675 -0
- package/src/bmm/testarch/knowledge/component-tdd.md +486 -0
- package/src/bmm/testarch/knowledge/contract-testing.md +957 -0
- package/src/bmm/testarch/knowledge/data-factories.md +500 -0
- package/src/bmm/testarch/knowledge/email-auth.md +721 -0
- package/src/bmm/testarch/knowledge/error-handling.md +725 -0
- package/src/bmm/testarch/knowledge/feature-flags.md +750 -0
- package/src/bmm/testarch/knowledge/file-utils.md +463 -0
- package/src/bmm/testarch/knowledge/fixture-architecture.md +401 -0
- package/src/bmm/testarch/knowledge/fixtures-composition.md +382 -0
- package/src/bmm/testarch/knowledge/intercept-network-call.md +430 -0
- package/src/bmm/testarch/knowledge/log.md +429 -0
- package/src/bmm/testarch/knowledge/network-error-monitor.md +405 -0
- package/src/bmm/testarch/knowledge/network-first.md +486 -0
- package/src/bmm/testarch/knowledge/network-recorder.md +527 -0
- package/src/bmm/testarch/knowledge/nfr-criteria.md +670 -0
- package/src/bmm/testarch/knowledge/overview.md +286 -0
- package/src/bmm/testarch/knowledge/playwright-config.md +730 -0
- package/src/bmm/testarch/knowledge/probability-impact.md +601 -0
- package/src/bmm/testarch/knowledge/recurse.md +421 -0
- package/src/bmm/testarch/knowledge/risk-governance.md +615 -0
- package/src/bmm/testarch/knowledge/selective-testing.md +732 -0
- package/src/bmm/testarch/knowledge/selector-resilience.md +527 -0
- package/src/bmm/testarch/knowledge/test-healing-patterns.md +644 -0
- package/src/bmm/testarch/knowledge/test-levels-framework.md +473 -0
- package/src/bmm/testarch/knowledge/test-priorities-matrix.md +373 -0
- package/src/bmm/testarch/knowledge/test-quality.md +664 -0
- package/src/bmm/testarch/knowledge/timing-debugging.md +372 -0
- package/src/bmm/testarch/knowledge/visual-debugging.md +524 -0
- package/src/bmm/testarch/tea-index.csv +34 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/product-brief.template.md +10 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-01-init.md +177 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-01b-continue.md +161 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-02-vision.md +199 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-03-users.md +202 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-04-metrics.md +205 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-05-scope.md +219 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/steps/step-06-complete.md +194 -0
- package/src/bmm/workflows/1-analysis/create-product-brief/workflow.md +58 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-01-init.md +137 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-02-domain-analysis.md +229 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-03-competitive-landscape.md +238 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-04-regulatory-focus.md +206 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-05-technical-trends.md +234 -0
- package/src/bmm/workflows/1-analysis/research/domain-steps/step-06-research-synthesis.md +443 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-01-init.md +182 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-02-customer-behavior.md +237 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-02-customer-insights.md +200 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-03-customer-pain-points.md +249 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-04-customer-decisions.md +259 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-05-competitive-analysis.md +177 -0
- package/src/bmm/workflows/1-analysis/research/market-steps/step-06-research-completion.md +475 -0
- package/src/bmm/workflows/1-analysis/research/research.template.md +29 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-01-init.md +137 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-02-technical-overview.md +239 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-03-integration-patterns.md +248 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-04-architectural-patterns.md +202 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-05-implementation-research.md +239 -0
- package/src/bmm/workflows/1-analysis/research/technical-steps/step-06-research-synthesis.md +486 -0
- package/src/bmm/workflows/1-analysis/research/workflow.md +173 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01-init.md +135 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-01b-continue.md +127 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-02-discovery.md +190 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-03-core-experience.md +216 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-04-emotional-response.md +219 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-05-inspiration.md +234 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-06-design-system.md +252 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-07-defining-experience.md +254 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-08-visual-foundation.md +224 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-09-design-directions.md +224 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-10-user-journeys.md +241 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-11-component-strategy.md +248 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-12-ux-patterns.md +237 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-13-responsive-accessibility.md +264 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/steps/step-14-complete.md +228 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/ux-design-template.md +13 -0
- package/src/bmm/workflows/2-plan-workflows/create-ux-design/workflow.md +43 -0
- package/src/bmm/workflows/2-plan-workflows/prd/data/domain-complexity.csv +13 -0
- package/src/bmm/workflows/2-plan-workflows/prd/data/prd-purpose.md +197 -0
- package/src/bmm/workflows/2-plan-workflows/prd/data/project-types.csv +11 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-01-init.md +191 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-01b-continue.md +153 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-02-discovery.md +224 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-03-success.md +226 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-04-journeys.md +213 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-05-domain.md +207 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-06-innovation.md +226 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-07-project-type.md +237 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-08-scoping.md +228 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-09-functional.md +231 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-10-nonfunctional.md +242 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-11-polish.md +217 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-c/step-12-complete.md +180 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-e/step-e-01-discovery.md +247 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-e/step-e-01b-legacy-conversion.md +208 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-e/step-e-02-review.md +249 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-e/step-e-03-edit.md +253 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-e/step-e-04-complete.md +168 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-01-discovery.md +218 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-02-format-detection.md +191 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-02b-parity-check.md +209 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-03-density-validation.md +174 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-04-brief-coverage-validation.md +214 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-05-measurability-validation.md +228 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-06-traceability-validation.md +217 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-07-implementation-leakage-validation.md +205 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-08-domain-compliance-validation.md +243 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-09-project-type-validation.md +263 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-10-smart-validation.md +209 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-11-holistic-quality-validation.md +264 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-12-completeness-validation.md +242 -0
- package/src/bmm/workflows/2-plan-workflows/prd/steps-v/step-v-13-report-complete.md +232 -0
- package/src/bmm/workflows/2-plan-workflows/prd/templates/prd-template.md +10 -0
- package/src/bmm/workflows/2-plan-workflows/prd/validation-report-prd-workflow.md +433 -0
- package/src/bmm/workflows/2-plan-workflows/prd/workflow.md +150 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-01-document-discovery.md +190 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-02-prd-analysis.md +178 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-03-epic-coverage-validation.md +179 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-04-ux-alignment.md +139 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-05-epic-quality-review.md +252 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/steps/step-06-final-assessment.md +133 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/templates/readiness-report-template.md +4 -0
- package/src/bmm/workflows/3-solutioning/check-implementation-readiness/workflow.md +55 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/architecture-decision-template.md +12 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/data/domain-complexity.csv +11 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/data/project-types.csv +7 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-01-init.md +153 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-01b-continue.md +164 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-02-context.md +224 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-03-starter.md +331 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-04-decisions.md +318 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-05-patterns.md +359 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-06-structure.md +379 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-07-validation.md +359 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/steps/step-08-complete.md +352 -0
- package/src/bmm/workflows/3-solutioning/create-architecture/workflow.md +50 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-01-validate-prerequisites.md +259 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-02-design-epics.md +233 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-03-create-stories.md +272 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/steps/step-04-final-validation.md +145 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/templates/epics-template.md +57 -0
- package/src/bmm/workflows/3-solutioning/create-epics-and-stories/workflow.md +59 -0
- package/src/bmm/workflows/4-implementation/code-review/checklist.md +23 -0
- package/src/bmm/workflows/4-implementation/code-review/instructions.xml +227 -0
- package/src/bmm/workflows/4-implementation/code-review/workflow.yaml +51 -0
- package/src/bmm/workflows/4-implementation/correct-course/checklist.md +288 -0
- package/src/bmm/workflows/4-implementation/correct-course/instructions.md +206 -0
- package/src/bmm/workflows/4-implementation/correct-course/workflow.yaml +60 -0
- package/src/bmm/workflows/4-implementation/create-story/checklist.md +358 -0
- package/src/bmm/workflows/4-implementation/create-story/instructions.xml +345 -0
- package/src/bmm/workflows/4-implementation/create-story/template.md +49 -0
- package/src/bmm/workflows/4-implementation/create-story/workflow.yaml +61 -0
- package/src/bmm/workflows/4-implementation/dev-story/checklist.md +80 -0
- package/src/bmm/workflows/4-implementation/dev-story/instructions.xml +410 -0
- package/src/bmm/workflows/4-implementation/dev-story/workflow.yaml +27 -0
- package/src/bmm/workflows/4-implementation/retrospective/instructions.md +1443 -0
- package/src/bmm/workflows/4-implementation/retrospective/workflow.yaml +58 -0
- package/src/bmm/workflows/4-implementation/sprint-planning/checklist.md +33 -0
- package/src/bmm/workflows/4-implementation/sprint-planning/instructions.md +225 -0
- package/src/bmm/workflows/4-implementation/sprint-planning/sprint-status-template.yaml +55 -0
- package/src/bmm/workflows/4-implementation/sprint-planning/workflow.yaml +54 -0
- package/src/bmm/workflows/4-implementation/sprint-status/instructions.md +229 -0
- package/src/bmm/workflows/4-implementation/sprint-status/workflow.yaml +36 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-01-mode-detection.md +156 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-02-context-gathering.md +120 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-03-execute.md +113 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-04-self-check.md +113 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-05-adversarial-review.md +106 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/steps/step-06-resolve-findings.md +140 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-dev/workflow.md +52 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-01-understand.md +189 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-02-investigate.md +144 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-03-generate.md +128 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/steps/step-04-review.md +191 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/tech-spec-template.md +74 -0
- package/src/bmm/workflows/bmad-quick-flow/quick-spec/workflow.md +79 -0
- package/src/bmm/workflows/document-project/checklist.md +245 -0
- package/src/bmm/workflows/document-project/documentation-requirements.csv +12 -0
- package/src/bmm/workflows/document-project/instructions.md +221 -0
- package/src/bmm/workflows/document-project/templates/deep-dive-template.md +345 -0
- package/src/bmm/workflows/document-project/templates/index-template.md +169 -0
- package/src/bmm/workflows/document-project/templates/project-overview-template.md +103 -0
- package/src/bmm/workflows/document-project/templates/project-scan-report-schema.json +160 -0
- package/src/bmm/workflows/document-project/templates/source-tree-template.md +135 -0
- package/src/bmm/workflows/document-project/workflow.yaml +30 -0
- package/src/bmm/workflows/document-project/workflows/deep-dive-instructions.md +298 -0
- package/src/bmm/workflows/document-project/workflows/deep-dive.yaml +31 -0
- package/src/bmm/workflows/document-project/workflows/full-scan-instructions.md +1106 -0
- package/src/bmm/workflows/document-project/workflows/full-scan.yaml +31 -0
- package/src/bmm/workflows/excalidraw-diagrams/_shared/excalidraw-library.json +90 -0
- package/src/bmm/workflows/excalidraw-diagrams/_shared/excalidraw-templates.yaml +127 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/checklist.md +39 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/instructions.md +130 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-dataflow/workflow.yaml +27 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-diagram/checklist.md +43 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-diagram/instructions.md +141 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-diagram/workflow.yaml +27 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/checklist.md +49 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/instructions.md +241 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-flowchart/workflow.yaml +27 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/checklist.md +38 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/instructions.md +133 -0
- package/src/bmm/workflows/excalidraw-diagrams/create-wireframe/workflow.yaml +27 -0
- package/src/bmm/workflows/generate-project-context/project-context-template.md +21 -0
- package/src/bmm/workflows/generate-project-context/steps/step-01-discover.md +184 -0
- package/src/bmm/workflows/generate-project-context/steps/step-02-generate.md +318 -0
- package/src/bmm/workflows/generate-project-context/steps/step-03-complete.md +278 -0
- package/src/bmm/workflows/generate-project-context/workflow.md +49 -0
- package/src/bmm/workflows/testarch/atdd/atdd-checklist-template.md +364 -0
- package/src/bmm/workflows/testarch/atdd/checklist.md +374 -0
- package/src/bmm/workflows/testarch/atdd/instructions.md +806 -0
- package/src/bmm/workflows/testarch/atdd/workflow.yaml +47 -0
- package/src/bmm/workflows/testarch/automate/checklist.md +582 -0
- package/src/bmm/workflows/testarch/automate/instructions.md +1324 -0
- package/src/bmm/workflows/testarch/automate/workflow.yaml +54 -0
- package/src/bmm/workflows/testarch/ci/checklist.md +248 -0
- package/src/bmm/workflows/testarch/ci/github-actions-template.yaml +198 -0
- package/src/bmm/workflows/testarch/ci/gitlab-ci-template.yaml +149 -0
- package/src/bmm/workflows/testarch/ci/instructions.md +536 -0
- package/src/bmm/workflows/testarch/ci/workflow.yaml +47 -0
- package/src/bmm/workflows/testarch/framework/checklist.md +321 -0
- package/src/bmm/workflows/testarch/framework/instructions.md +481 -0
- package/src/bmm/workflows/testarch/framework/workflow.yaml +49 -0
- package/src/bmm/workflows/testarch/nfr-assess/checklist.md +407 -0
- package/src/bmm/workflows/testarch/nfr-assess/instructions.md +722 -0
- package/src/bmm/workflows/testarch/nfr-assess/nfr-report-template.md +445 -0
- package/src/bmm/workflows/testarch/nfr-assess/workflow.yaml +49 -0
- package/src/bmm/workflows/testarch/test-design/checklist.md +235 -0
- package/src/bmm/workflows/testarch/test-design/instructions.md +788 -0
- package/src/bmm/workflows/testarch/test-design/test-design-template.md +294 -0
- package/src/bmm/workflows/testarch/test-design/workflow.yaml +56 -0
- package/src/bmm/workflows/testarch/test-review/checklist.md +472 -0
- package/src/bmm/workflows/testarch/test-review/instructions.md +628 -0
- package/src/bmm/workflows/testarch/test-review/test-review-template.md +390 -0
- package/src/bmm/workflows/testarch/test-review/workflow.yaml +48 -0
- package/src/bmm/workflows/testarch/trace/checklist.md +655 -0
- package/src/bmm/workflows/testarch/trace/instructions.md +1047 -0
- package/src/bmm/workflows/testarch/trace/trace-template.md +675 -0
- package/src/bmm/workflows/testarch/trace/workflow.yaml +57 -0
- package/src/bmm/workflows/workflow-status/init/instructions.md +346 -0
- package/src/bmm/workflows/workflow-status/init/workflow.yaml +30 -0
- package/src/bmm/workflows/workflow-status/instructions.md +397 -0
- package/src/bmm/workflows/workflow-status/paths/enterprise-brownfield.yaml +103 -0
- package/src/bmm/workflows/workflow-status/paths/enterprise-greenfield.yaml +100 -0
- package/src/bmm/workflows/workflow-status/paths/method-brownfield.yaml +103 -0
- package/src/bmm/workflows/workflow-status/paths/method-greenfield.yaml +100 -0
- package/src/bmm/workflows/workflow-status/project-levels.yaml +59 -0
- package/src/bmm/workflows/workflow-status/workflow-status-template.yaml +24 -0
- package/src/bmm/workflows/workflow-status/workflow.yaml +32 -0
- package/src/core/_module-installer/installer.js +60 -0
- package/src/core/agents/bmad-master.agent.yaml +30 -0
- package/src/core/lib/scope/artifact-resolver.js +298 -0
- package/src/core/lib/scope/event-logger.js +400 -0
- package/src/core/lib/scope/index.js +30 -0
- package/src/core/lib/scope/scope-context.js +301 -0
- package/src/core/lib/scope/scope-initializer.js +456 -0
- package/src/core/lib/scope/scope-manager.js +512 -0
- package/src/core/lib/scope/scope-migrator.js +434 -0
- package/src/core/lib/scope/scope-sync.js +483 -0
- package/src/core/lib/scope/scope-validator.js +294 -0
- package/src/core/lib/scope/state-lock.js +336 -0
- package/src/core/module.yaml +53 -0
- package/src/core/resources/excalidraw/README.md +160 -0
- package/src/core/resources/excalidraw/excalidraw-helpers.md +127 -0
- package/src/core/resources/excalidraw/library-loader.md +50 -0
- package/src/core/resources/excalidraw/validate-json-instructions.md +79 -0
- package/src/core/tasks/editorial-review-prose.xml +91 -0
- package/src/core/tasks/editorial-review-structure.xml +198 -0
- package/src/core/tasks/index-docs.xml +65 -0
- package/src/core/tasks/review-adversarial-general.xml +46 -0
- package/src/core/tasks/shard-doc.xml +109 -0
- package/src/core/tasks/workflow.xml +277 -0
- package/src/core/workflows/advanced-elicitation/methods.csv +51 -0
- package/src/core/workflows/advanced-elicitation/workflow.xml +117 -0
- package/src/core/workflows/brainstorming/brain-methods.csv +62 -0
- package/src/core/workflows/brainstorming/steps/step-01-session-setup.md +197 -0
- package/src/core/workflows/brainstorming/steps/step-01b-continue.md +122 -0
- package/src/core/workflows/brainstorming/steps/step-02a-user-selected.md +225 -0
- package/src/core/workflows/brainstorming/steps/step-02b-ai-recommended.md +237 -0
- package/src/core/workflows/brainstorming/steps/step-02c-random-selection.md +209 -0
- package/src/core/workflows/brainstorming/steps/step-02d-progressive-flow.md +264 -0
- package/src/core/workflows/brainstorming/steps/step-03-technique-execution.md +399 -0
- package/src/core/workflows/brainstorming/steps/step-04-idea-organization.md +303 -0
- package/src/core/workflows/brainstorming/template.md +15 -0
- package/src/core/workflows/brainstorming/workflow.md +58 -0
- package/src/core/workflows/party-mode/steps/step-01-agent-loading.md +138 -0
- package/src/core/workflows/party-mode/steps/step-02-discussion-orchestration.md +187 -0
- package/src/core/workflows/party-mode/steps/step-03-graceful-exit.md +157 -0
- package/src/core/workflows/party-mode/workflow.md +194 -0
- package/src/utility/agent-components/activation-rules.txt +6 -0
- package/src/utility/agent-components/activation-steps.txt +28 -0
- package/src/utility/agent-components/agent-command-header.md +1 -0
- package/src/utility/agent-components/agent.customize.template.yaml +41 -0
- package/src/utility/agent-components/handler-action.txt +4 -0
- package/src/utility/agent-components/handler-data.txt +5 -0
- package/src/utility/agent-components/handler-exec.txt +19 -0
- package/src/utility/agent-components/handler-multi.txt +14 -0
- package/src/utility/agent-components/handler-tmpl.txt +5 -0
- package/src/utility/agent-components/handler-validate-workflow.txt +7 -0
- package/src/utility/agent-components/handler-workflow.txt +10 -0
- package/src/utility/agent-components/menu-handlers.txt +6 -0
- package/test/README.md +295 -0
- package/test/fixtures/agent-schema/invalid/critical-actions/actions-as-string.agent.yaml +27 -0
- package/test/fixtures/agent-schema/invalid/critical-actions/empty-string-in-actions.agent.yaml +30 -0
- package/test/fixtures/agent-schema/invalid/menu/empty-menu.agent.yaml +22 -0
- package/test/fixtures/agent-schema/invalid/menu/missing-menu.agent.yaml +20 -0
- package/test/fixtures/agent-schema/invalid/menu-commands/empty-command-target.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-commands/no-command-target.agent.yaml +24 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/camel-case.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/compound-invalid-format.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/compound-mismatched-kebab.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/duplicate-triggers.agent.yaml +31 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/empty-trigger.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/leading-asterisk.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/snake-case.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/menu-triggers/trigger-with-spaces.agent.yaml +25 -0
- package/test/fixtures/agent-schema/invalid/metadata/empty-module-string.agent.yaml +26 -0
- package/test/fixtures/agent-schema/invalid/metadata/empty-name.agent.yaml +24 -0
- package/test/fixtures/agent-schema/invalid/metadata/extra-metadata-fields.agent.yaml +27 -0
- package/test/fixtures/agent-schema/invalid/metadata/missing-id.agent.yaml +23 -0
- package/test/fixtures/agent-schema/invalid/persona/empty-principles-array.agent.yaml +24 -0
- package/test/fixtures/agent-schema/invalid/persona/empty-string-in-principles.agent.yaml +27 -0
- package/test/fixtures/agent-schema/invalid/persona/extra-persona-fields.agent.yaml +27 -0
- package/test/fixtures/agent-schema/invalid/persona/missing-role.agent.yaml +24 -0
- package/test/fixtures/agent-schema/invalid/prompts/empty-content.agent.yaml +29 -0
- package/test/fixtures/agent-schema/invalid/prompts/extra-prompt-fields.agent.yaml +31 -0
- package/test/fixtures/agent-schema/invalid/prompts/missing-content.agent.yaml +28 -0
- package/test/fixtures/agent-schema/invalid/prompts/missing-id.agent.yaml +28 -0
- package/test/fixtures/agent-schema/invalid/top-level/empty-file.agent.yaml +5 -0
- package/test/fixtures/agent-schema/invalid/top-level/extra-top-level-keys.agent.yaml +28 -0
- package/test/fixtures/agent-schema/invalid/top-level/missing-agent-key.agent.yaml +11 -0
- package/test/fixtures/agent-schema/invalid/yaml-errors/invalid-indentation.agent.yaml +19 -0
- package/test/fixtures/agent-schema/invalid/yaml-errors/malformed-yaml.agent.yaml +18 -0
- package/test/fixtures/agent-schema/valid/critical-actions/empty-critical-actions.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/critical-actions/no-critical-actions.agent.yaml +22 -0
- package/test/fixtures/agent-schema/valid/critical-actions/valid-critical-actions.agent.yaml +27 -0
- package/test/fixtures/agent-schema/valid/menu/multiple-menu-items.agent.yaml +31 -0
- package/test/fixtures/agent-schema/valid/menu/single-menu-item.agent.yaml +22 -0
- package/test/fixtures/agent-schema/valid/menu-commands/all-command-types.agent.yaml +38 -0
- package/test/fixtures/agent-schema/valid/menu-commands/multiple-commands.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/menu-triggers/compound-triggers.agent.yaml +31 -0
- package/test/fixtures/agent-schema/valid/menu-triggers/kebab-case-triggers.agent.yaml +34 -0
- package/test/fixtures/agent-schema/valid/metadata/core-agent-with-module.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/metadata/empty-module-name-in-path.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/metadata/malformed-path-treated-as-core.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/metadata/module-agent-correct.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/metadata/module-agent-missing-module.agent.yaml +23 -0
- package/test/fixtures/agent-schema/valid/metadata/wrong-module-value.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/persona/complete-persona.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/prompts/empty-prompts.agent.yaml +24 -0
- package/test/fixtures/agent-schema/valid/prompts/no-prompts.agent.yaml +22 -0
- package/test/fixtures/agent-schema/valid/prompts/valid-prompts-minimal.agent.yaml +28 -0
- package/test/fixtures/agent-schema/valid/prompts/valid-prompts-with-description.agent.yaml +30 -0
- package/test/fixtures/agent-schema/valid/top-level/minimal-core-agent.agent.yaml +24 -0
- package/test/test-agent-schema.js +387 -0
- package/test/test-cli-integration.sh +159 -0
- package/test/test-installation-components.js +214 -0
- package/test/test-scope-e2e.js +439 -0
- package/test/test-scope-system.js +781 -0
- package/test/unit-test-schema.js +133 -0
- package/tools/bmad-npx-wrapper.js +38 -0
- package/tools/build-docs.js +577 -0
- package/tools/cli/README.md +7 -0
- package/tools/cli/bmad-cli.js +58 -0
- package/tools/cli/commands/install.js +87 -0
- package/tools/cli/commands/scope.js +474 -0
- package/tools/cli/external-official-modules.yaml +41 -0
- package/tools/cli/installers/install-messages.yaml +58 -0
- package/tools/cli/installers/lib/core/config-collector.js +1079 -0
- package/tools/cli/installers/lib/core/custom-module-cache.js +259 -0
- package/tools/cli/installers/lib/core/dependency-resolver.js +739 -0
- package/tools/cli/installers/lib/core/detector.js +223 -0
- package/tools/cli/installers/lib/core/ide-config-manager.js +156 -0
- package/tools/cli/installers/lib/core/installer.js +2585 -0
- package/tools/cli/installers/lib/core/manifest-generator.js +963 -0
- package/tools/cli/installers/lib/core/manifest.js +590 -0
- package/tools/cli/installers/lib/custom/handler.js +363 -0
- package/tools/cli/installers/lib/ide/_base-ide.js +654 -0
- package/tools/cli/installers/lib/ide/antigravity.js +486 -0
- package/tools/cli/installers/lib/ide/auggie.js +244 -0
- package/tools/cli/installers/lib/ide/claude-code.js +487 -0
- package/tools/cli/installers/lib/ide/cline.js +269 -0
- package/tools/cli/installers/lib/ide/codex.js +375 -0
- package/tools/cli/installers/lib/ide/crush.js +300 -0
- package/tools/cli/installers/lib/ide/cursor.js +169 -0
- package/tools/cli/installers/lib/ide/gemini.js +301 -0
- package/tools/cli/installers/lib/ide/github-copilot.js +383 -0
- package/tools/cli/installers/lib/ide/iflow.js +191 -0
- package/tools/cli/installers/lib/ide/kilo.js +250 -0
- package/tools/cli/installers/lib/ide/kiro-cli.js +326 -0
- package/tools/cli/installers/lib/ide/manager.js +244 -0
- package/tools/cli/installers/lib/ide/opencode.js +257 -0
- package/tools/cli/installers/lib/ide/qwen.js +372 -0
- package/tools/cli/installers/lib/ide/roo.js +270 -0
- package/tools/cli/installers/lib/ide/rovo-dev.js +290 -0
- package/tools/cli/installers/lib/ide/shared/agent-command-generator.js +96 -0
- package/tools/cli/installers/lib/ide/shared/bmad-artifacts.js +158 -0
- package/tools/cli/installers/lib/ide/shared/module-injections.js +136 -0
- package/tools/cli/installers/lib/ide/shared/task-tool-command-generator.js +119 -0
- package/tools/cli/installers/lib/ide/shared/workflow-command-generator.js +242 -0
- package/tools/cli/installers/lib/ide/templates/agent-command-template.md +29 -0
- package/tools/cli/installers/lib/ide/templates/gemini-agent-command.toml +14 -0
- package/tools/cli/installers/lib/ide/templates/gemini-task-command.toml +12 -0
- package/tools/cli/installers/lib/ide/templates/workflow-command-template.md +30 -0
- package/tools/cli/installers/lib/ide/templates/workflow-commander.md +45 -0
- package/tools/cli/installers/lib/ide/trae.js +313 -0
- package/tools/cli/installers/lib/ide/windsurf.js +258 -0
- package/tools/cli/installers/lib/message-loader.js +85 -0
- package/tools/cli/installers/lib/modules/external-manager.js +133 -0
- package/tools/cli/installers/lib/modules/manager.js +1362 -0
- package/tools/cli/lib/activation-builder.js +163 -0
- package/tools/cli/lib/agent/compiler.js +522 -0
- package/tools/cli/lib/agent/installer.js +716 -0
- package/tools/cli/lib/agent/template-engine.js +152 -0
- package/tools/cli/lib/agent-analyzer.js +109 -0
- package/tools/cli/lib/agent-party-generator.js +194 -0
- package/tools/cli/lib/cli-utils.js +227 -0
- package/tools/cli/lib/config.js +213 -0
- package/tools/cli/lib/file-ops.js +204 -0
- package/tools/cli/lib/platform-codes.js +116 -0
- package/tools/cli/lib/project-root.js +77 -0
- package/tools/cli/lib/prompts.js +433 -0
- package/tools/cli/lib/ui.js +1591 -0
- package/tools/cli/lib/xml-handler.js +177 -0
- package/tools/cli/lib/xml-to-markdown.js +82 -0
- package/tools/cli/lib/yaml-format.js +245 -0
- package/tools/cli/lib/yaml-xml-builder.js +587 -0
- package/tools/cli/scripts/migrate-workflows.js +273 -0
- package/tools/docs/BUNDLE_DISTRIBUTION_SETUP.md +95 -0
- package/tools/docs/index.md +2 -0
- package/tools/fix-doc-links.js +288 -0
- package/tools/flattener/aggregate.js +76 -0
- package/tools/flattener/binary.js +80 -0
- package/tools/flattener/discovery.js +71 -0
- package/tools/flattener/files.js +35 -0
- package/tools/flattener/ignoreRules.js +172 -0
- package/tools/flattener/main.js +483 -0
- package/tools/flattener/projectRoot.js +201 -0
- package/tools/flattener/prompts.js +44 -0
- package/tools/flattener/stats.helpers.js +368 -0
- package/tools/flattener/stats.js +75 -0
- package/tools/flattener/test-matrix.js +409 -0
- package/tools/flattener/xml.js +82 -0
- package/tools/format-workflow-md.js +263 -0
- package/tools/lib/xml-utils.js +13 -0
- package/tools/maintainer/review-pr-README.md +55 -0
- package/tools/maintainer/review-pr.md +242 -0
- package/tools/migrate-custom-module-paths.js +124 -0
- package/tools/platform-codes.yaml +157 -0
- package/tools/schema/agent.js +493 -0
- package/tools/validate-agent-schema.js +110 -0
- package/tools/validate-doc-links.js +363 -0
- package/tools/validate-svg-changes.sh +356 -0
- package/website/README.md +76 -0
- package/website/astro.config.mjs +228 -0
- package/website/public/favicon.ico +0 -0
- package/website/public/img/bmad-dark.png +0 -0
- package/website/public/img/bmad-light.png +0 -0
- package/website/public/img/logo.svg +4 -0
- package/website/public/robots.txt +37 -0
- package/website/src/components/Banner.astro +59 -0
- package/website/src/components/Header.astro +121 -0
- package/website/src/components/MobileMenuFooter.astro +53 -0
- package/website/src/content/config.ts +6 -0
- package/website/src/lib/site-url.js +25 -0
- package/website/src/rehype-markdown-links.js +102 -0
- package/website/src/styles/custom.css +485 -0
|
@@ -0,0 +1,5034 @@
|
|
|
1
|
+
{
|
|
2
|
+
"type": "excalidraw",
|
|
3
|
+
"version": 2,
|
|
4
|
+
"source": "https://marketplace.visualstudio.com/items?itemName=pomdtr.excalidraw-editor",
|
|
5
|
+
"elements": [
|
|
6
|
+
{
|
|
7
|
+
"id": "title",
|
|
8
|
+
"type": "text",
|
|
9
|
+
"x": 284.6321356748704,
|
|
10
|
+
"y": 20,
|
|
11
|
+
"width": 673.7520141601562,
|
|
12
|
+
"height": 37.15738334525602,
|
|
13
|
+
"angle": 0,
|
|
14
|
+
"strokeColor": "#1e1e1e",
|
|
15
|
+
"backgroundColor": "transparent",
|
|
16
|
+
"fillStyle": "solid",
|
|
17
|
+
"strokeWidth": 2,
|
|
18
|
+
"roughness": 0,
|
|
19
|
+
"opacity": 100,
|
|
20
|
+
"groupIds": [],
|
|
21
|
+
"fontSize": 29.725906676204815,
|
|
22
|
+
"fontFamily": 1,
|
|
23
|
+
"text": "BMad Method Workflow - Standard Greenfield",
|
|
24
|
+
"textAlign": "center",
|
|
25
|
+
"verticalAlign": "top",
|
|
26
|
+
"locked": false,
|
|
27
|
+
"version": 67,
|
|
28
|
+
"versionNonce": 1431078555,
|
|
29
|
+
"index": "a0",
|
|
30
|
+
"isDeleted": false,
|
|
31
|
+
"strokeStyle": "solid",
|
|
32
|
+
"seed": 1,
|
|
33
|
+
"frameId": null,
|
|
34
|
+
"roundness": null,
|
|
35
|
+
"boundElements": [],
|
|
36
|
+
"updated": 1763522299028,
|
|
37
|
+
"link": null,
|
|
38
|
+
"containerId": null,
|
|
39
|
+
"originalText": "BMad Method Workflow - Standard Greenfield",
|
|
40
|
+
"autoResize": true,
|
|
41
|
+
"lineHeight": 1.25
|
|
42
|
+
},
|
|
43
|
+
{
|
|
44
|
+
"id": "start-ellipse",
|
|
45
|
+
"type": "ellipse",
|
|
46
|
+
"x": 60,
|
|
47
|
+
"y": 80,
|
|
48
|
+
"width": 120,
|
|
49
|
+
"height": 60,
|
|
50
|
+
"angle": 0,
|
|
51
|
+
"strokeColor": "#1976d2",
|
|
52
|
+
"backgroundColor": "#e3f2fd",
|
|
53
|
+
"fillStyle": "solid",
|
|
54
|
+
"strokeWidth": 2,
|
|
55
|
+
"roughness": 0,
|
|
56
|
+
"opacity": 100,
|
|
57
|
+
"groupIds": [
|
|
58
|
+
"start-group"
|
|
59
|
+
],
|
|
60
|
+
"boundElements": [
|
|
61
|
+
{
|
|
62
|
+
"type": "text",
|
|
63
|
+
"id": "start-text"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"type": "arrow",
|
|
67
|
+
"id": "arrow-start-discovery"
|
|
68
|
+
}
|
|
69
|
+
],
|
|
70
|
+
"locked": false,
|
|
71
|
+
"version": 2,
|
|
72
|
+
"versionNonce": 1364787547,
|
|
73
|
+
"index": "a1",
|
|
74
|
+
"isDeleted": false,
|
|
75
|
+
"strokeStyle": "solid",
|
|
76
|
+
"seed": 1,
|
|
77
|
+
"frameId": null,
|
|
78
|
+
"roundness": null,
|
|
79
|
+
"updated": 1763522171079,
|
|
80
|
+
"link": null
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"id": "start-text",
|
|
84
|
+
"type": "text",
|
|
85
|
+
"x": 93,
|
|
86
|
+
"y": 98,
|
|
87
|
+
"width": 54,
|
|
88
|
+
"height": 25,
|
|
89
|
+
"angle": 0,
|
|
90
|
+
"strokeColor": "#1e1e1e",
|
|
91
|
+
"backgroundColor": "transparent",
|
|
92
|
+
"fillStyle": "solid",
|
|
93
|
+
"strokeWidth": 2,
|
|
94
|
+
"roughness": 0,
|
|
95
|
+
"opacity": 100,
|
|
96
|
+
"groupIds": [
|
|
97
|
+
"start-group"
|
|
98
|
+
],
|
|
99
|
+
"fontSize": 20,
|
|
100
|
+
"fontFamily": 1,
|
|
101
|
+
"text": "Start",
|
|
102
|
+
"textAlign": "center",
|
|
103
|
+
"verticalAlign": "middle",
|
|
104
|
+
"containerId": "start-ellipse",
|
|
105
|
+
"locked": false,
|
|
106
|
+
"version": 2,
|
|
107
|
+
"versionNonce": 1303811541,
|
|
108
|
+
"index": "a2",
|
|
109
|
+
"isDeleted": false,
|
|
110
|
+
"strokeStyle": "solid",
|
|
111
|
+
"seed": 1,
|
|
112
|
+
"frameId": null,
|
|
113
|
+
"roundness": null,
|
|
114
|
+
"boundElements": [],
|
|
115
|
+
"updated": 1763522171079,
|
|
116
|
+
"link": null,
|
|
117
|
+
"originalText": "Start",
|
|
118
|
+
"autoResize": true,
|
|
119
|
+
"lineHeight": 1.25
|
|
120
|
+
},
|
|
121
|
+
{
|
|
122
|
+
"id": "phase1-header",
|
|
123
|
+
"type": "text",
|
|
124
|
+
"x": 13.742901708014983,
|
|
125
|
+
"y": 180.0057616006372,
|
|
126
|
+
"width": 200,
|
|
127
|
+
"height": 30,
|
|
128
|
+
"angle": 0,
|
|
129
|
+
"strokeColor": "#2e7d32",
|
|
130
|
+
"backgroundColor": "transparent",
|
|
131
|
+
"fillStyle": "solid",
|
|
132
|
+
"strokeWidth": 2,
|
|
133
|
+
"roughness": 0,
|
|
134
|
+
"opacity": 100,
|
|
135
|
+
"groupIds": [],
|
|
136
|
+
"fontSize": 24,
|
|
137
|
+
"fontFamily": 1,
|
|
138
|
+
"text": "PHASE 1",
|
|
139
|
+
"textAlign": "left",
|
|
140
|
+
"verticalAlign": "top",
|
|
141
|
+
"locked": false,
|
|
142
|
+
"version": 18,
|
|
143
|
+
"versionNonce": 1987415189,
|
|
144
|
+
"index": "a3",
|
|
145
|
+
"isDeleted": false,
|
|
146
|
+
"strokeStyle": "solid",
|
|
147
|
+
"seed": 1,
|
|
148
|
+
"frameId": null,
|
|
149
|
+
"roundness": null,
|
|
150
|
+
"boundElements": [],
|
|
151
|
+
"updated": 1763522322404,
|
|
152
|
+
"link": null,
|
|
153
|
+
"containerId": null,
|
|
154
|
+
"originalText": "PHASE 1",
|
|
155
|
+
"autoResize": true,
|
|
156
|
+
"lineHeight": 1.25
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"id": "phase1-subtitle",
|
|
160
|
+
"type": "text",
|
|
161
|
+
"x": 140.26189010000303,
|
|
162
|
+
"y": 168.98316506386624,
|
|
163
|
+
"width": 75.31195068359375,
|
|
164
|
+
"height": 40,
|
|
165
|
+
"angle": 0,
|
|
166
|
+
"strokeColor": "#666666",
|
|
167
|
+
"backgroundColor": "transparent",
|
|
168
|
+
"fillStyle": "solid",
|
|
169
|
+
"strokeWidth": 2,
|
|
170
|
+
"roughness": 0,
|
|
171
|
+
"opacity": 100,
|
|
172
|
+
"groupIds": [],
|
|
173
|
+
"fontSize": 16,
|
|
174
|
+
"fontFamily": 1,
|
|
175
|
+
"text": "Discovery\n(Optional)",
|
|
176
|
+
"textAlign": "left",
|
|
177
|
+
"verticalAlign": "top",
|
|
178
|
+
"locked": false,
|
|
179
|
+
"version": 225,
|
|
180
|
+
"versionNonce": 1515322069,
|
|
181
|
+
"index": "a4",
|
|
182
|
+
"isDeleted": false,
|
|
183
|
+
"strokeStyle": "solid",
|
|
184
|
+
"seed": 1,
|
|
185
|
+
"frameId": null,
|
|
186
|
+
"roundness": null,
|
|
187
|
+
"boundElements": [],
|
|
188
|
+
"updated": 1763522324513,
|
|
189
|
+
"link": null,
|
|
190
|
+
"containerId": null,
|
|
191
|
+
"originalText": "Discovery\n(Optional)",
|
|
192
|
+
"autoResize": true,
|
|
193
|
+
"lineHeight": 1.25
|
|
194
|
+
},
|
|
195
|
+
{
|
|
196
|
+
"id": "arrow-start-discovery",
|
|
197
|
+
"type": "arrow",
|
|
198
|
+
"x": 120,
|
|
199
|
+
"y": 140,
|
|
200
|
+
"width": 0,
|
|
201
|
+
"height": 100,
|
|
202
|
+
"angle": 0,
|
|
203
|
+
"strokeColor": "#1976d2",
|
|
204
|
+
"backgroundColor": "transparent",
|
|
205
|
+
"fillStyle": "solid",
|
|
206
|
+
"strokeWidth": 2,
|
|
207
|
+
"roughness": 0,
|
|
208
|
+
"opacity": 100,
|
|
209
|
+
"groupIds": [],
|
|
210
|
+
"startBinding": {
|
|
211
|
+
"elementId": "start-ellipse",
|
|
212
|
+
"focus": 0,
|
|
213
|
+
"gap": 1
|
|
214
|
+
},
|
|
215
|
+
"endBinding": {
|
|
216
|
+
"elementId": "decision-discovery",
|
|
217
|
+
"focus": 0,
|
|
218
|
+
"gap": 1
|
|
219
|
+
},
|
|
220
|
+
"points": [
|
|
221
|
+
[
|
|
222
|
+
0,
|
|
223
|
+
0
|
|
224
|
+
],
|
|
225
|
+
[
|
|
226
|
+
0,
|
|
227
|
+
100
|
|
228
|
+
]
|
|
229
|
+
],
|
|
230
|
+
"lastCommittedPoint": null,
|
|
231
|
+
"version": 2,
|
|
232
|
+
"versionNonce": 2116462235,
|
|
233
|
+
"index": "a5",
|
|
234
|
+
"isDeleted": false,
|
|
235
|
+
"strokeStyle": "solid",
|
|
236
|
+
"seed": 1,
|
|
237
|
+
"frameId": null,
|
|
238
|
+
"roundness": null,
|
|
239
|
+
"boundElements": [],
|
|
240
|
+
"updated": 1763522171079,
|
|
241
|
+
"link": null,
|
|
242
|
+
"locked": false,
|
|
243
|
+
"startArrowhead": null,
|
|
244
|
+
"endArrowhead": "arrow"
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
"id": "decision-discovery",
|
|
248
|
+
"type": "diamond",
|
|
249
|
+
"x": 40,
|
|
250
|
+
"y": 240,
|
|
251
|
+
"width": 160,
|
|
252
|
+
"height": 100,
|
|
253
|
+
"angle": 0,
|
|
254
|
+
"strokeColor": "#f57c00",
|
|
255
|
+
"backgroundColor": "#fff3e0",
|
|
256
|
+
"fillStyle": "solid",
|
|
257
|
+
"strokeWidth": 2,
|
|
258
|
+
"roughness": 0,
|
|
259
|
+
"opacity": 100,
|
|
260
|
+
"groupIds": [
|
|
261
|
+
"decision-discovery-group"
|
|
262
|
+
],
|
|
263
|
+
"boundElements": [
|
|
264
|
+
{
|
|
265
|
+
"type": "text",
|
|
266
|
+
"id": "decision-discovery-text"
|
|
267
|
+
},
|
|
268
|
+
{
|
|
269
|
+
"type": "arrow",
|
|
270
|
+
"id": "arrow-start-discovery"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"type": "arrow",
|
|
274
|
+
"id": "arrow-discovery-yes"
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
"type": "arrow",
|
|
278
|
+
"id": "arrow-discovery-no"
|
|
279
|
+
}
|
|
280
|
+
],
|
|
281
|
+
"locked": false,
|
|
282
|
+
"version": 2,
|
|
283
|
+
"versionNonce": 1508959381,
|
|
284
|
+
"index": "a6",
|
|
285
|
+
"isDeleted": false,
|
|
286
|
+
"strokeStyle": "solid",
|
|
287
|
+
"seed": 1,
|
|
288
|
+
"frameId": null,
|
|
289
|
+
"roundness": null,
|
|
290
|
+
"updated": 1763522171079,
|
|
291
|
+
"link": null
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"id": "decision-discovery-text",
|
|
295
|
+
"type": "text",
|
|
296
|
+
"x": 55,
|
|
297
|
+
"y": 265,
|
|
298
|
+
"width": 130,
|
|
299
|
+
"height": 50,
|
|
300
|
+
"angle": 0,
|
|
301
|
+
"strokeColor": "#1e1e1e",
|
|
302
|
+
"backgroundColor": "transparent",
|
|
303
|
+
"fillStyle": "solid",
|
|
304
|
+
"strokeWidth": 2,
|
|
305
|
+
"roughness": 0,
|
|
306
|
+
"opacity": 100,
|
|
307
|
+
"groupIds": [
|
|
308
|
+
"decision-discovery-group"
|
|
309
|
+
],
|
|
310
|
+
"fontSize": 16,
|
|
311
|
+
"fontFamily": 1,
|
|
312
|
+
"text": "Include\nDiscovery?",
|
|
313
|
+
"textAlign": "center",
|
|
314
|
+
"verticalAlign": "middle",
|
|
315
|
+
"containerId": "decision-discovery",
|
|
316
|
+
"locked": false,
|
|
317
|
+
"version": 2,
|
|
318
|
+
"versionNonce": 627907387,
|
|
319
|
+
"index": "a7",
|
|
320
|
+
"isDeleted": false,
|
|
321
|
+
"strokeStyle": "solid",
|
|
322
|
+
"seed": 1,
|
|
323
|
+
"frameId": null,
|
|
324
|
+
"roundness": null,
|
|
325
|
+
"boundElements": [],
|
|
326
|
+
"updated": 1763522171079,
|
|
327
|
+
"link": null,
|
|
328
|
+
"originalText": "Include\nDiscovery?",
|
|
329
|
+
"autoResize": true,
|
|
330
|
+
"lineHeight": 1.5625
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"id": "arrow-discovery-yes",
|
|
334
|
+
"type": "arrow",
|
|
335
|
+
"x": 120,
|
|
336
|
+
"y": 340,
|
|
337
|
+
"width": 0,
|
|
338
|
+
"height": 40,
|
|
339
|
+
"angle": 0,
|
|
340
|
+
"strokeColor": "#1976d2",
|
|
341
|
+
"backgroundColor": "transparent",
|
|
342
|
+
"fillStyle": "solid",
|
|
343
|
+
"strokeWidth": 2,
|
|
344
|
+
"roughness": 0,
|
|
345
|
+
"opacity": 100,
|
|
346
|
+
"groupIds": [],
|
|
347
|
+
"startBinding": {
|
|
348
|
+
"elementId": "decision-discovery",
|
|
349
|
+
"focus": 0,
|
|
350
|
+
"gap": 1
|
|
351
|
+
},
|
|
352
|
+
"endBinding": {
|
|
353
|
+
"elementId": "proc-brainstorm",
|
|
354
|
+
"focus": 0,
|
|
355
|
+
"gap": 1
|
|
356
|
+
},
|
|
357
|
+
"points": [
|
|
358
|
+
[
|
|
359
|
+
0,
|
|
360
|
+
0
|
|
361
|
+
],
|
|
362
|
+
[
|
|
363
|
+
0,
|
|
364
|
+
40
|
|
365
|
+
]
|
|
366
|
+
],
|
|
367
|
+
"lastCommittedPoint": null,
|
|
368
|
+
"version": 2,
|
|
369
|
+
"versionNonce": 133270005,
|
|
370
|
+
"index": "a8",
|
|
371
|
+
"isDeleted": false,
|
|
372
|
+
"strokeStyle": "solid",
|
|
373
|
+
"seed": 1,
|
|
374
|
+
"frameId": null,
|
|
375
|
+
"roundness": null,
|
|
376
|
+
"boundElements": [],
|
|
377
|
+
"updated": 1763522171079,
|
|
378
|
+
"link": null,
|
|
379
|
+
"locked": false,
|
|
380
|
+
"startArrowhead": null,
|
|
381
|
+
"endArrowhead": "arrow"
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"id": "label-yes-discovery",
|
|
385
|
+
"type": "text",
|
|
386
|
+
"x": 130,
|
|
387
|
+
"y": 350,
|
|
388
|
+
"width": 30,
|
|
389
|
+
"height": 20,
|
|
390
|
+
"angle": 0,
|
|
391
|
+
"strokeColor": "#2e7d32",
|
|
392
|
+
"backgroundColor": "transparent",
|
|
393
|
+
"fillStyle": "solid",
|
|
394
|
+
"strokeWidth": 2,
|
|
395
|
+
"roughness": 0,
|
|
396
|
+
"opacity": 100,
|
|
397
|
+
"groupIds": [],
|
|
398
|
+
"fontSize": 16,
|
|
399
|
+
"fontFamily": 1,
|
|
400
|
+
"text": "Yes",
|
|
401
|
+
"textAlign": "left",
|
|
402
|
+
"verticalAlign": "top",
|
|
403
|
+
"locked": false,
|
|
404
|
+
"version": 2,
|
|
405
|
+
"versionNonce": 1362885595,
|
|
406
|
+
"index": "a9",
|
|
407
|
+
"isDeleted": false,
|
|
408
|
+
"strokeStyle": "solid",
|
|
409
|
+
"seed": 1,
|
|
410
|
+
"frameId": null,
|
|
411
|
+
"roundness": null,
|
|
412
|
+
"boundElements": [],
|
|
413
|
+
"updated": 1763522171079,
|
|
414
|
+
"link": null,
|
|
415
|
+
"containerId": null,
|
|
416
|
+
"originalText": "Yes",
|
|
417
|
+
"autoResize": true,
|
|
418
|
+
"lineHeight": 1.25
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"id": "proc-brainstorm",
|
|
422
|
+
"type": "rectangle",
|
|
423
|
+
"x": 40,
|
|
424
|
+
"y": 380,
|
|
425
|
+
"width": 160,
|
|
426
|
+
"height": 80,
|
|
427
|
+
"angle": 0,
|
|
428
|
+
"strokeColor": "#00acc1",
|
|
429
|
+
"backgroundColor": "#b2ebf2",
|
|
430
|
+
"fillStyle": "solid",
|
|
431
|
+
"strokeWidth": 2,
|
|
432
|
+
"roughness": 0,
|
|
433
|
+
"opacity": 100,
|
|
434
|
+
"roundness": {
|
|
435
|
+
"type": 3,
|
|
436
|
+
"value": 8
|
|
437
|
+
},
|
|
438
|
+
"groupIds": [
|
|
439
|
+
"proc-brainstorm-group"
|
|
440
|
+
],
|
|
441
|
+
"boundElements": [
|
|
442
|
+
{
|
|
443
|
+
"type": "text",
|
|
444
|
+
"id": "proc-brainstorm-text"
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"type": "arrow",
|
|
448
|
+
"id": "arrow-discovery-yes"
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
"type": "arrow",
|
|
452
|
+
"id": "arrow-brainstorm-research"
|
|
453
|
+
},
|
|
454
|
+
{
|
|
455
|
+
"id": "jv0rnlK2D9JKIGTO7pUtT",
|
|
456
|
+
"type": "arrow"
|
|
457
|
+
}
|
|
458
|
+
],
|
|
459
|
+
"locked": false,
|
|
460
|
+
"version": 3,
|
|
461
|
+
"versionNonce": 115423290,
|
|
462
|
+
"index": "aA",
|
|
463
|
+
"isDeleted": false,
|
|
464
|
+
"strokeStyle": "solid",
|
|
465
|
+
"seed": 1,
|
|
466
|
+
"frameId": null,
|
|
467
|
+
"updated": 1764191341773,
|
|
468
|
+
"link": null
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"id": "proc-brainstorm-text",
|
|
472
|
+
"type": "text",
|
|
473
|
+
"x": 50,
|
|
474
|
+
"y": 395,
|
|
475
|
+
"width": 140,
|
|
476
|
+
"height": 50,
|
|
477
|
+
"angle": 0,
|
|
478
|
+
"strokeColor": "#1e1e1e",
|
|
479
|
+
"backgroundColor": "transparent",
|
|
480
|
+
"fillStyle": "solid",
|
|
481
|
+
"strokeWidth": 2,
|
|
482
|
+
"roughness": 0,
|
|
483
|
+
"opacity": 100,
|
|
484
|
+
"groupIds": [
|
|
485
|
+
"proc-brainstorm-group"
|
|
486
|
+
],
|
|
487
|
+
"fontSize": 14,
|
|
488
|
+
"fontFamily": 1,
|
|
489
|
+
"text": "Brainstorm\n<<optional>>",
|
|
490
|
+
"textAlign": "center",
|
|
491
|
+
"verticalAlign": "middle",
|
|
492
|
+
"containerId": "proc-brainstorm",
|
|
493
|
+
"locked": false,
|
|
494
|
+
"version": 2,
|
|
495
|
+
"versionNonce": 765839483,
|
|
496
|
+
"index": "aB",
|
|
497
|
+
"isDeleted": false,
|
|
498
|
+
"strokeStyle": "solid",
|
|
499
|
+
"seed": 1,
|
|
500
|
+
"frameId": null,
|
|
501
|
+
"roundness": null,
|
|
502
|
+
"boundElements": [],
|
|
503
|
+
"updated": 1763522171079,
|
|
504
|
+
"link": null,
|
|
505
|
+
"originalText": "Brainstorm\n<<optional>>",
|
|
506
|
+
"autoResize": true,
|
|
507
|
+
"lineHeight": 1.7857142857142858
|
|
508
|
+
},
|
|
509
|
+
{
|
|
510
|
+
"id": "arrow-brainstorm-research",
|
|
511
|
+
"type": "arrow",
|
|
512
|
+
"x": 120,
|
|
513
|
+
"y": 460.45161416125165,
|
|
514
|
+
"width": 0,
|
|
515
|
+
"height": 29.096771677496633,
|
|
516
|
+
"angle": 0,
|
|
517
|
+
"strokeColor": "#1976d2",
|
|
518
|
+
"backgroundColor": "transparent",
|
|
519
|
+
"fillStyle": "solid",
|
|
520
|
+
"strokeWidth": 2,
|
|
521
|
+
"roughness": 0,
|
|
522
|
+
"opacity": 100,
|
|
523
|
+
"groupIds": [],
|
|
524
|
+
"startBinding": {
|
|
525
|
+
"elementId": "proc-brainstorm",
|
|
526
|
+
"focus": 0,
|
|
527
|
+
"gap": 1
|
|
528
|
+
},
|
|
529
|
+
"endBinding": {
|
|
530
|
+
"elementId": "proc-research",
|
|
531
|
+
"focus": 0,
|
|
532
|
+
"gap": 1
|
|
533
|
+
},
|
|
534
|
+
"points": [
|
|
535
|
+
[
|
|
536
|
+
0,
|
|
537
|
+
0
|
|
538
|
+
],
|
|
539
|
+
[
|
|
540
|
+
0,
|
|
541
|
+
29.096771677496633
|
|
542
|
+
]
|
|
543
|
+
],
|
|
544
|
+
"lastCommittedPoint": null,
|
|
545
|
+
"version": 3,
|
|
546
|
+
"versionNonce": 828709094,
|
|
547
|
+
"index": "aC",
|
|
548
|
+
"isDeleted": false,
|
|
549
|
+
"strokeStyle": "solid",
|
|
550
|
+
"seed": 1,
|
|
551
|
+
"frameId": null,
|
|
552
|
+
"roundness": null,
|
|
553
|
+
"boundElements": [],
|
|
554
|
+
"updated": 1764191023838,
|
|
555
|
+
"link": null,
|
|
556
|
+
"locked": false,
|
|
557
|
+
"startArrowhead": null,
|
|
558
|
+
"endArrowhead": "arrow"
|
|
559
|
+
},
|
|
560
|
+
{
|
|
561
|
+
"id": "proc-research",
|
|
562
|
+
"type": "rectangle",
|
|
563
|
+
"x": 40,
|
|
564
|
+
"y": 490,
|
|
565
|
+
"width": 160,
|
|
566
|
+
"height": 80,
|
|
567
|
+
"angle": 0,
|
|
568
|
+
"strokeColor": "#00acc1",
|
|
569
|
+
"backgroundColor": "#b2ebf2",
|
|
570
|
+
"fillStyle": "solid",
|
|
571
|
+
"strokeWidth": 2,
|
|
572
|
+
"roughness": 0,
|
|
573
|
+
"opacity": 100,
|
|
574
|
+
"roundness": {
|
|
575
|
+
"type": 3,
|
|
576
|
+
"value": 8
|
|
577
|
+
},
|
|
578
|
+
"groupIds": [
|
|
579
|
+
"proc-research-group"
|
|
580
|
+
],
|
|
581
|
+
"boundElements": [
|
|
582
|
+
{
|
|
583
|
+
"type": "text",
|
|
584
|
+
"id": "proc-research-text"
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"type": "arrow",
|
|
588
|
+
"id": "arrow-brainstorm-research"
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"type": "arrow",
|
|
592
|
+
"id": "arrow-research-brief"
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
"id": "RF10FfKbmG72P77I2IoP4",
|
|
596
|
+
"type": "arrow"
|
|
597
|
+
}
|
|
598
|
+
],
|
|
599
|
+
"locked": false,
|
|
600
|
+
"version": 5,
|
|
601
|
+
"versionNonce": 987493562,
|
|
602
|
+
"index": "aD",
|
|
603
|
+
"isDeleted": false,
|
|
604
|
+
"strokeStyle": "solid",
|
|
605
|
+
"seed": 1,
|
|
606
|
+
"frameId": null,
|
|
607
|
+
"updated": 1764191042826,
|
|
608
|
+
"link": null
|
|
609
|
+
},
|
|
610
|
+
{
|
|
611
|
+
"id": "proc-research-text",
|
|
612
|
+
"type": "text",
|
|
613
|
+
"x": 78.26604461669922,
|
|
614
|
+
"y": 505,
|
|
615
|
+
"width": 83.46791076660156,
|
|
616
|
+
"height": 50,
|
|
617
|
+
"angle": 0,
|
|
618
|
+
"strokeColor": "#1e1e1e",
|
|
619
|
+
"backgroundColor": "transparent",
|
|
620
|
+
"fillStyle": "solid",
|
|
621
|
+
"strokeWidth": 2,
|
|
622
|
+
"roughness": 0,
|
|
623
|
+
"opacity": 100,
|
|
624
|
+
"groupIds": [
|
|
625
|
+
"proc-research-group"
|
|
626
|
+
],
|
|
627
|
+
"fontSize": 14,
|
|
628
|
+
"fontFamily": 1,
|
|
629
|
+
"text": "Research\n<<optional>>",
|
|
630
|
+
"textAlign": "center",
|
|
631
|
+
"verticalAlign": "middle",
|
|
632
|
+
"containerId": "proc-research",
|
|
633
|
+
"locked": false,
|
|
634
|
+
"version": 5,
|
|
635
|
+
"versionNonce": 92329914,
|
|
636
|
+
"index": "aE",
|
|
637
|
+
"isDeleted": false,
|
|
638
|
+
"strokeStyle": "solid",
|
|
639
|
+
"seed": 1,
|
|
640
|
+
"frameId": null,
|
|
641
|
+
"roundness": null,
|
|
642
|
+
"boundElements": [],
|
|
643
|
+
"updated": 1764191023838,
|
|
644
|
+
"link": null,
|
|
645
|
+
"originalText": "Research\n<<optional>>",
|
|
646
|
+
"autoResize": true,
|
|
647
|
+
"lineHeight": 1.7857142857142858
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"id": "arrow-research-brief",
|
|
651
|
+
"type": "arrow",
|
|
652
|
+
"x": 120.00000000000001,
|
|
653
|
+
"y": 570.4516141612517,
|
|
654
|
+
"width": 0,
|
|
655
|
+
"height": 29.09677167749669,
|
|
656
|
+
"angle": 0,
|
|
657
|
+
"strokeColor": "#1976d2",
|
|
658
|
+
"backgroundColor": "transparent",
|
|
659
|
+
"fillStyle": "solid",
|
|
660
|
+
"strokeWidth": 2,
|
|
661
|
+
"roughness": 0,
|
|
662
|
+
"opacity": 100,
|
|
663
|
+
"groupIds": [],
|
|
664
|
+
"startBinding": {
|
|
665
|
+
"elementId": "proc-research",
|
|
666
|
+
"focus": 0,
|
|
667
|
+
"gap": 1
|
|
668
|
+
},
|
|
669
|
+
"endBinding": {
|
|
670
|
+
"elementId": "proc-product-brief",
|
|
671
|
+
"focus": 0,
|
|
672
|
+
"gap": 1
|
|
673
|
+
},
|
|
674
|
+
"points": [
|
|
675
|
+
[
|
|
676
|
+
0,
|
|
677
|
+
0
|
|
678
|
+
],
|
|
679
|
+
[
|
|
680
|
+
0,
|
|
681
|
+
29.09677167749669
|
|
682
|
+
]
|
|
683
|
+
],
|
|
684
|
+
"lastCommittedPoint": null,
|
|
685
|
+
"version": 4,
|
|
686
|
+
"versionNonce": 1012730918,
|
|
687
|
+
"index": "aF",
|
|
688
|
+
"isDeleted": false,
|
|
689
|
+
"strokeStyle": "solid",
|
|
690
|
+
"seed": 1,
|
|
691
|
+
"frameId": null,
|
|
692
|
+
"roundness": null,
|
|
693
|
+
"boundElements": [],
|
|
694
|
+
"updated": 1764191023838,
|
|
695
|
+
"link": null,
|
|
696
|
+
"locked": false,
|
|
697
|
+
"startArrowhead": null,
|
|
698
|
+
"endArrowhead": "arrow"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"id": "proc-product-brief",
|
|
702
|
+
"type": "rectangle",
|
|
703
|
+
"x": 40,
|
|
704
|
+
"y": 600,
|
|
705
|
+
"width": 160,
|
|
706
|
+
"height": 80,
|
|
707
|
+
"angle": 0,
|
|
708
|
+
"strokeColor": "#00acc1",
|
|
709
|
+
"backgroundColor": "#b2ebf2",
|
|
710
|
+
"fillStyle": "solid",
|
|
711
|
+
"strokeWidth": 2,
|
|
712
|
+
"roughness": 0,
|
|
713
|
+
"opacity": 100,
|
|
714
|
+
"roundness": {
|
|
715
|
+
"type": 3,
|
|
716
|
+
"value": 8
|
|
717
|
+
},
|
|
718
|
+
"groupIds": [
|
|
719
|
+
"proc-product-brief-group"
|
|
720
|
+
],
|
|
721
|
+
"boundElements": [
|
|
722
|
+
{
|
|
723
|
+
"type": "text",
|
|
724
|
+
"id": "proc-product-brief-text"
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
"type": "arrow",
|
|
728
|
+
"id": "arrow-research-brief"
|
|
729
|
+
},
|
|
730
|
+
{
|
|
731
|
+
"id": "arrow-phase1-to-phase2",
|
|
732
|
+
"type": "arrow"
|
|
733
|
+
}
|
|
734
|
+
],
|
|
735
|
+
"locked": false,
|
|
736
|
+
"version": 6,
|
|
737
|
+
"versionNonce": 1568298662,
|
|
738
|
+
"index": "aG",
|
|
739
|
+
"isDeleted": false,
|
|
740
|
+
"strokeStyle": "solid",
|
|
741
|
+
"seed": 1,
|
|
742
|
+
"frameId": null,
|
|
743
|
+
"updated": 1764190985483,
|
|
744
|
+
"link": null
|
|
745
|
+
},
|
|
746
|
+
{
|
|
747
|
+
"id": "proc-product-brief-text",
|
|
748
|
+
"type": "text",
|
|
749
|
+
"x": 72.69404602050781,
|
|
750
|
+
"y": 615,
|
|
751
|
+
"width": 94.61190795898438,
|
|
752
|
+
"height": 50,
|
|
753
|
+
"angle": 0,
|
|
754
|
+
"strokeColor": "#1e1e1e",
|
|
755
|
+
"backgroundColor": "transparent",
|
|
756
|
+
"fillStyle": "solid",
|
|
757
|
+
"strokeWidth": 2,
|
|
758
|
+
"roughness": 0,
|
|
759
|
+
"opacity": 100,
|
|
760
|
+
"groupIds": [
|
|
761
|
+
"proc-product-brief-group"
|
|
762
|
+
],
|
|
763
|
+
"fontSize": 14,
|
|
764
|
+
"fontFamily": 1,
|
|
765
|
+
"text": "Product Brief\n<<optional>>",
|
|
766
|
+
"textAlign": "center",
|
|
767
|
+
"verticalAlign": "middle",
|
|
768
|
+
"containerId": "proc-product-brief",
|
|
769
|
+
"locked": false,
|
|
770
|
+
"version": 3,
|
|
771
|
+
"versionNonce": 1653785435,
|
|
772
|
+
"index": "aH",
|
|
773
|
+
"isDeleted": false,
|
|
774
|
+
"strokeStyle": "solid",
|
|
775
|
+
"seed": 1,
|
|
776
|
+
"frameId": null,
|
|
777
|
+
"roundness": null,
|
|
778
|
+
"boundElements": [],
|
|
779
|
+
"updated": 1763522366663,
|
|
780
|
+
"link": null,
|
|
781
|
+
"originalText": "Product Brief\n<<optional>>",
|
|
782
|
+
"autoResize": true,
|
|
783
|
+
"lineHeight": 1.7857142857142858
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"id": "arrow-discovery-no",
|
|
787
|
+
"type": "arrow",
|
|
788
|
+
"x": 199.68944196572753,
|
|
789
|
+
"y": 290.14813727772287,
|
|
790
|
+
"width": 154.38771404438515,
|
|
791
|
+
"height": 0.2869361997344413,
|
|
792
|
+
"angle": 0,
|
|
793
|
+
"strokeColor": "#1976d2",
|
|
794
|
+
"backgroundColor": "transparent",
|
|
795
|
+
"fillStyle": "solid",
|
|
796
|
+
"strokeWidth": 2,
|
|
797
|
+
"roughness": 0,
|
|
798
|
+
"opacity": 100,
|
|
799
|
+
"groupIds": [],
|
|
800
|
+
"startBinding": {
|
|
801
|
+
"elementId": "decision-discovery",
|
|
802
|
+
"focus": 0,
|
|
803
|
+
"gap": 1
|
|
804
|
+
},
|
|
805
|
+
"endBinding": {
|
|
806
|
+
"elementId": "proc-prd",
|
|
807
|
+
"focus": 0,
|
|
808
|
+
"gap": 5.918648042715176
|
|
809
|
+
},
|
|
810
|
+
"points": [
|
|
811
|
+
[
|
|
812
|
+
0,
|
|
813
|
+
0
|
|
814
|
+
],
|
|
815
|
+
[
|
|
816
|
+
154.38771404438515,
|
|
817
|
+
0.2869361997344413
|
|
818
|
+
]
|
|
819
|
+
],
|
|
820
|
+
"lastCommittedPoint": null,
|
|
821
|
+
"version": 134,
|
|
822
|
+
"versionNonce": 1651808102,
|
|
823
|
+
"index": "aI",
|
|
824
|
+
"isDeleted": false,
|
|
825
|
+
"strokeStyle": "solid",
|
|
826
|
+
"seed": 1,
|
|
827
|
+
"frameId": null,
|
|
828
|
+
"roundness": null,
|
|
829
|
+
"boundElements": [],
|
|
830
|
+
"updated": 1764191023838,
|
|
831
|
+
"link": null,
|
|
832
|
+
"locked": false,
|
|
833
|
+
"startArrowhead": null,
|
|
834
|
+
"endArrowhead": "arrow"
|
|
835
|
+
},
|
|
836
|
+
{
|
|
837
|
+
"id": "label-no-discovery",
|
|
838
|
+
"type": "text",
|
|
839
|
+
"x": 220,
|
|
840
|
+
"y": 270,
|
|
841
|
+
"width": 25,
|
|
842
|
+
"height": 20,
|
|
843
|
+
"angle": 0,
|
|
844
|
+
"strokeColor": "#d32f2f",
|
|
845
|
+
"backgroundColor": "transparent",
|
|
846
|
+
"fillStyle": "solid",
|
|
847
|
+
"strokeWidth": 2,
|
|
848
|
+
"roughness": 0,
|
|
849
|
+
"opacity": 100,
|
|
850
|
+
"groupIds": [],
|
|
851
|
+
"fontSize": 16,
|
|
852
|
+
"fontFamily": 1,
|
|
853
|
+
"text": "No",
|
|
854
|
+
"textAlign": "left",
|
|
855
|
+
"verticalAlign": "top",
|
|
856
|
+
"locked": false,
|
|
857
|
+
"version": 2,
|
|
858
|
+
"versionNonce": 198980347,
|
|
859
|
+
"index": "aJ",
|
|
860
|
+
"isDeleted": false,
|
|
861
|
+
"strokeStyle": "solid",
|
|
862
|
+
"seed": 1,
|
|
863
|
+
"frameId": null,
|
|
864
|
+
"roundness": null,
|
|
865
|
+
"boundElements": [],
|
|
866
|
+
"updated": 1763522171079,
|
|
867
|
+
"link": null,
|
|
868
|
+
"containerId": null,
|
|
869
|
+
"originalText": "No",
|
|
870
|
+
"autoResize": true,
|
|
871
|
+
"lineHeight": 1.25
|
|
872
|
+
},
|
|
873
|
+
{
|
|
874
|
+
"id": "arrow-phase1-to-phase2",
|
|
875
|
+
"type": "arrow",
|
|
876
|
+
"x": 200.89221334296062,
|
|
877
|
+
"y": 647.2552625380853,
|
|
878
|
+
"width": 155.54926796151912,
|
|
879
|
+
"height": 344.1924874570816,
|
|
880
|
+
"angle": 0,
|
|
881
|
+
"strokeColor": "#1976d2",
|
|
882
|
+
"backgroundColor": "transparent",
|
|
883
|
+
"fillStyle": "solid",
|
|
884
|
+
"strokeWidth": 2,
|
|
885
|
+
"roughness": 0,
|
|
886
|
+
"opacity": 100,
|
|
887
|
+
"groupIds": [],
|
|
888
|
+
"startBinding": {
|
|
889
|
+
"elementId": "proc-product-brief",
|
|
890
|
+
"focus": 0.6109361701343846,
|
|
891
|
+
"gap": 1
|
|
892
|
+
},
|
|
893
|
+
"endBinding": {
|
|
894
|
+
"elementId": "proc-prd",
|
|
895
|
+
"focus": 0.48602478253370496,
|
|
896
|
+
"gap": 3.21773034122549
|
|
897
|
+
},
|
|
898
|
+
"points": [
|
|
899
|
+
[
|
|
900
|
+
0,
|
|
901
|
+
0
|
|
902
|
+
],
|
|
903
|
+
[
|
|
904
|
+
71.35560764925268,
|
|
905
|
+
-38.29318660613865
|
|
906
|
+
],
|
|
907
|
+
[
|
|
908
|
+
84.68337472706096,
|
|
909
|
+
-292.7672603376131
|
|
910
|
+
],
|
|
911
|
+
[
|
|
912
|
+
155.54926796151912,
|
|
913
|
+
-344.1924874570816
|
|
914
|
+
]
|
|
915
|
+
],
|
|
916
|
+
"lastCommittedPoint": null,
|
|
917
|
+
"version": 1393,
|
|
918
|
+
"versionNonce": 261518822,
|
|
919
|
+
"index": "aK",
|
|
920
|
+
"isDeleted": false,
|
|
921
|
+
"strokeStyle": "solid",
|
|
922
|
+
"seed": 1,
|
|
923
|
+
"frameId": null,
|
|
924
|
+
"roundness": {
|
|
925
|
+
"type": 2
|
|
926
|
+
},
|
|
927
|
+
"boundElements": [],
|
|
928
|
+
"updated": 1764191023838,
|
|
929
|
+
"link": null,
|
|
930
|
+
"locked": false,
|
|
931
|
+
"startArrowhead": null,
|
|
932
|
+
"endArrowhead": "arrow",
|
|
933
|
+
"elbowed": false
|
|
934
|
+
},
|
|
935
|
+
{
|
|
936
|
+
"id": "phase2-header",
|
|
937
|
+
"type": "text",
|
|
938
|
+
"x": 340,
|
|
939
|
+
"y": 180,
|
|
940
|
+
"width": 200,
|
|
941
|
+
"height": 30,
|
|
942
|
+
"angle": 0,
|
|
943
|
+
"strokeColor": "#2e7d32",
|
|
944
|
+
"backgroundColor": "transparent",
|
|
945
|
+
"fillStyle": "solid",
|
|
946
|
+
"strokeWidth": 2,
|
|
947
|
+
"roughness": 0,
|
|
948
|
+
"opacity": 100,
|
|
949
|
+
"groupIds": [],
|
|
950
|
+
"fontSize": 24,
|
|
951
|
+
"fontFamily": 1,
|
|
952
|
+
"text": "PHASE 2",
|
|
953
|
+
"textAlign": "left",
|
|
954
|
+
"verticalAlign": "top",
|
|
955
|
+
"locked": false,
|
|
956
|
+
"version": 2,
|
|
957
|
+
"versionNonce": 292690843,
|
|
958
|
+
"index": "aL",
|
|
959
|
+
"isDeleted": false,
|
|
960
|
+
"strokeStyle": "solid",
|
|
961
|
+
"seed": 1,
|
|
962
|
+
"frameId": null,
|
|
963
|
+
"roundness": null,
|
|
964
|
+
"boundElements": [],
|
|
965
|
+
"updated": 1763522171079,
|
|
966
|
+
"link": null,
|
|
967
|
+
"containerId": null,
|
|
968
|
+
"originalText": "PHASE 2",
|
|
969
|
+
"autoResize": true,
|
|
970
|
+
"lineHeight": 1.25
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
"id": "phase2-subtitle",
|
|
974
|
+
"type": "text",
|
|
975
|
+
"x": 340,
|
|
976
|
+
"y": 210,
|
|
977
|
+
"width": 200,
|
|
978
|
+
"height": 20,
|
|
979
|
+
"angle": 0,
|
|
980
|
+
"strokeColor": "#666666",
|
|
981
|
+
"backgroundColor": "transparent",
|
|
982
|
+
"fillStyle": "solid",
|
|
983
|
+
"strokeWidth": 2,
|
|
984
|
+
"roughness": 0,
|
|
985
|
+
"opacity": 100,
|
|
986
|
+
"groupIds": [],
|
|
987
|
+
"fontSize": 16,
|
|
988
|
+
"fontFamily": 1,
|
|
989
|
+
"text": "Planning (Required)",
|
|
990
|
+
"textAlign": "left",
|
|
991
|
+
"verticalAlign": "top",
|
|
992
|
+
"locked": false,
|
|
993
|
+
"version": 2,
|
|
994
|
+
"versionNonce": 184762261,
|
|
995
|
+
"index": "aM",
|
|
996
|
+
"isDeleted": false,
|
|
997
|
+
"strokeStyle": "solid",
|
|
998
|
+
"seed": 1,
|
|
999
|
+
"frameId": null,
|
|
1000
|
+
"roundness": null,
|
|
1001
|
+
"boundElements": [],
|
|
1002
|
+
"updated": 1763522171079,
|
|
1003
|
+
"link": null,
|
|
1004
|
+
"containerId": null,
|
|
1005
|
+
"originalText": "Planning (Required)",
|
|
1006
|
+
"autoResize": true,
|
|
1007
|
+
"lineHeight": 1.25
|
|
1008
|
+
},
|
|
1009
|
+
{
|
|
1010
|
+
"id": "proc-prd",
|
|
1011
|
+
"type": "rectangle",
|
|
1012
|
+
"x": 359.2970847222632,
|
|
1013
|
+
"y": 250.5934448656302,
|
|
1014
|
+
"width": 160,
|
|
1015
|
+
"height": 80,
|
|
1016
|
+
"angle": 0,
|
|
1017
|
+
"strokeColor": "#43a047",
|
|
1018
|
+
"backgroundColor": "#c8e6c9",
|
|
1019
|
+
"fillStyle": "solid",
|
|
1020
|
+
"strokeWidth": 2,
|
|
1021
|
+
"roughness": 0,
|
|
1022
|
+
"opacity": 100,
|
|
1023
|
+
"roundness": {
|
|
1024
|
+
"type": 3,
|
|
1025
|
+
"value": 8
|
|
1026
|
+
},
|
|
1027
|
+
"groupIds": [
|
|
1028
|
+
"proc-prd-group"
|
|
1029
|
+
],
|
|
1030
|
+
"boundElements": [
|
|
1031
|
+
{
|
|
1032
|
+
"type": "text",
|
|
1033
|
+
"id": "proc-prd-text"
|
|
1034
|
+
},
|
|
1035
|
+
{
|
|
1036
|
+
"type": "arrow",
|
|
1037
|
+
"id": "arrow-discovery-no"
|
|
1038
|
+
},
|
|
1039
|
+
{
|
|
1040
|
+
"id": "arrow-phase1-to-phase2",
|
|
1041
|
+
"type": "arrow"
|
|
1042
|
+
},
|
|
1043
|
+
{
|
|
1044
|
+
"id": "RF10FfKbmG72P77I2IoP4",
|
|
1045
|
+
"type": "arrow"
|
|
1046
|
+
},
|
|
1047
|
+
{
|
|
1048
|
+
"id": "jv0rnlK2D9JKIGTO7pUtT",
|
|
1049
|
+
"type": "arrow"
|
|
1050
|
+
},
|
|
1051
|
+
{
|
|
1052
|
+
"id": "arrow-has-ui-no",
|
|
1053
|
+
"type": "arrow"
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"id": "arrow-prd-hasui",
|
|
1057
|
+
"type": "arrow"
|
|
1058
|
+
}
|
|
1059
|
+
],
|
|
1060
|
+
"locked": false,
|
|
1061
|
+
"version": 108,
|
|
1062
|
+
"versionNonce": 930129275,
|
|
1063
|
+
"index": "aN",
|
|
1064
|
+
"isDeleted": false,
|
|
1065
|
+
"strokeStyle": "solid",
|
|
1066
|
+
"seed": 1,
|
|
1067
|
+
"frameId": null,
|
|
1068
|
+
"updated": 1764952855000,
|
|
1069
|
+
"link": null
|
|
1070
|
+
},
|
|
1071
|
+
{
|
|
1072
|
+
"id": "proc-prd-text",
|
|
1073
|
+
"type": "text",
|
|
1074
|
+
"x": 418.107097539646,
|
|
1075
|
+
"y": 278.0934448656302,
|
|
1076
|
+
"width": 42.379974365234375,
|
|
1077
|
+
"height": 25,
|
|
1078
|
+
"angle": 0,
|
|
1079
|
+
"strokeColor": "#1e1e1e",
|
|
1080
|
+
"backgroundColor": "transparent",
|
|
1081
|
+
"fillStyle": "solid",
|
|
1082
|
+
"strokeWidth": 2,
|
|
1083
|
+
"roughness": 0,
|
|
1084
|
+
"opacity": 100,
|
|
1085
|
+
"groupIds": [
|
|
1086
|
+
"proc-prd-group"
|
|
1087
|
+
],
|
|
1088
|
+
"fontSize": 20,
|
|
1089
|
+
"fontFamily": 1,
|
|
1090
|
+
"text": "PRD",
|
|
1091
|
+
"textAlign": "center",
|
|
1092
|
+
"verticalAlign": "middle",
|
|
1093
|
+
"containerId": "proc-prd",
|
|
1094
|
+
"locked": false,
|
|
1095
|
+
"version": 103,
|
|
1096
|
+
"versionNonce": 1402977702,
|
|
1097
|
+
"index": "aO",
|
|
1098
|
+
"isDeleted": false,
|
|
1099
|
+
"strokeStyle": "solid",
|
|
1100
|
+
"seed": 1,
|
|
1101
|
+
"frameId": null,
|
|
1102
|
+
"roundness": null,
|
|
1103
|
+
"boundElements": [],
|
|
1104
|
+
"updated": 1764191023837,
|
|
1105
|
+
"link": null,
|
|
1106
|
+
"originalText": "PRD",
|
|
1107
|
+
"autoResize": true,
|
|
1108
|
+
"lineHeight": 1.25
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
"id": "decision-has-ui",
|
|
1112
|
+
"type": "diamond",
|
|
1113
|
+
"x": 360,
|
|
1114
|
+
"y": 470,
|
|
1115
|
+
"width": 160,
|
|
1116
|
+
"height": 100,
|
|
1117
|
+
"angle": 0,
|
|
1118
|
+
"strokeColor": "#f57c00",
|
|
1119
|
+
"backgroundColor": "#fff3e0",
|
|
1120
|
+
"fillStyle": "solid",
|
|
1121
|
+
"strokeWidth": 2,
|
|
1122
|
+
"roughness": 0,
|
|
1123
|
+
"opacity": 100,
|
|
1124
|
+
"groupIds": [
|
|
1125
|
+
"decision-has-ui-group"
|
|
1126
|
+
],
|
|
1127
|
+
"boundElements": [
|
|
1128
|
+
{
|
|
1129
|
+
"type": "text",
|
|
1130
|
+
"id": "decision-has-ui-text"
|
|
1131
|
+
},
|
|
1132
|
+
{
|
|
1133
|
+
"type": "arrow",
|
|
1134
|
+
"id": "arrow-prd-hasui"
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
"type": "arrow",
|
|
1138
|
+
"id": "arrow-has-ui-yes"
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
"type": "arrow",
|
|
1142
|
+
"id": "arrow-has-ui-no"
|
|
1143
|
+
}
|
|
1144
|
+
],
|
|
1145
|
+
"locked": false,
|
|
1146
|
+
"version": 3,
|
|
1147
|
+
"versionNonce": 1003877916,
|
|
1148
|
+
"index": "aT",
|
|
1149
|
+
"isDeleted": false,
|
|
1150
|
+
"strokeStyle": "solid",
|
|
1151
|
+
"seed": 1,
|
|
1152
|
+
"frameId": null,
|
|
1153
|
+
"roundness": null,
|
|
1154
|
+
"updated": 1764952855000,
|
|
1155
|
+
"link": null
|
|
1156
|
+
},
|
|
1157
|
+
{
|
|
1158
|
+
"id": "decision-has-ui-text",
|
|
1159
|
+
"type": "text",
|
|
1160
|
+
"x": 375,
|
|
1161
|
+
"y": 495,
|
|
1162
|
+
"width": 130,
|
|
1163
|
+
"height": 50,
|
|
1164
|
+
"angle": 0,
|
|
1165
|
+
"strokeColor": "#1e1e1e",
|
|
1166
|
+
"backgroundColor": "transparent",
|
|
1167
|
+
"fillStyle": "solid",
|
|
1168
|
+
"strokeWidth": 2,
|
|
1169
|
+
"roughness": 0,
|
|
1170
|
+
"opacity": 100,
|
|
1171
|
+
"groupIds": [
|
|
1172
|
+
"decision-has-ui-group"
|
|
1173
|
+
],
|
|
1174
|
+
"fontSize": 16,
|
|
1175
|
+
"fontFamily": 1,
|
|
1176
|
+
"text": "Has UI?",
|
|
1177
|
+
"textAlign": "center",
|
|
1178
|
+
"verticalAlign": "middle",
|
|
1179
|
+
"containerId": "decision-has-ui",
|
|
1180
|
+
"locked": false,
|
|
1181
|
+
"version": 2,
|
|
1182
|
+
"versionNonce": 222317845,
|
|
1183
|
+
"index": "aU",
|
|
1184
|
+
"isDeleted": false,
|
|
1185
|
+
"strokeStyle": "solid",
|
|
1186
|
+
"seed": 1,
|
|
1187
|
+
"frameId": null,
|
|
1188
|
+
"roundness": null,
|
|
1189
|
+
"boundElements": [],
|
|
1190
|
+
"updated": 1763522171080,
|
|
1191
|
+
"link": null,
|
|
1192
|
+
"originalText": "Has UI?",
|
|
1193
|
+
"autoResize": true,
|
|
1194
|
+
"lineHeight": 3.125
|
|
1195
|
+
},
|
|
1196
|
+
{
|
|
1197
|
+
"id": "arrow-has-ui-yes",
|
|
1198
|
+
"type": "arrow",
|
|
1199
|
+
"x": 440,
|
|
1200
|
+
"y": 570,
|
|
1201
|
+
"width": 0,
|
|
1202
|
+
"height": 30,
|
|
1203
|
+
"angle": 0,
|
|
1204
|
+
"strokeColor": "#1976d2",
|
|
1205
|
+
"backgroundColor": "transparent",
|
|
1206
|
+
"fillStyle": "solid",
|
|
1207
|
+
"strokeWidth": 2,
|
|
1208
|
+
"roughness": 0,
|
|
1209
|
+
"opacity": 100,
|
|
1210
|
+
"groupIds": [],
|
|
1211
|
+
"startBinding": {
|
|
1212
|
+
"elementId": "decision-has-ui",
|
|
1213
|
+
"focus": 0,
|
|
1214
|
+
"gap": 1
|
|
1215
|
+
},
|
|
1216
|
+
"endBinding": {
|
|
1217
|
+
"elementId": "proc-ux-design",
|
|
1218
|
+
"focus": 0,
|
|
1219
|
+
"gap": 1
|
|
1220
|
+
},
|
|
1221
|
+
"points": [
|
|
1222
|
+
[
|
|
1223
|
+
0,
|
|
1224
|
+
0
|
|
1225
|
+
],
|
|
1226
|
+
[
|
|
1227
|
+
0,
|
|
1228
|
+
30
|
|
1229
|
+
]
|
|
1230
|
+
],
|
|
1231
|
+
"lastCommittedPoint": null,
|
|
1232
|
+
"version": 2,
|
|
1233
|
+
"versionNonce": 528906939,
|
|
1234
|
+
"index": "aV",
|
|
1235
|
+
"isDeleted": false,
|
|
1236
|
+
"strokeStyle": "solid",
|
|
1237
|
+
"seed": 1,
|
|
1238
|
+
"frameId": null,
|
|
1239
|
+
"roundness": null,
|
|
1240
|
+
"boundElements": [],
|
|
1241
|
+
"updated": 1763522171080,
|
|
1242
|
+
"link": null,
|
|
1243
|
+
"locked": false,
|
|
1244
|
+
"startArrowhead": null,
|
|
1245
|
+
"endArrowhead": "arrow"
|
|
1246
|
+
},
|
|
1247
|
+
{
|
|
1248
|
+
"id": "label-yes-ui",
|
|
1249
|
+
"type": "text",
|
|
1250
|
+
"x": 450,
|
|
1251
|
+
"y": 580,
|
|
1252
|
+
"width": 30,
|
|
1253
|
+
"height": 20,
|
|
1254
|
+
"angle": 0,
|
|
1255
|
+
"strokeColor": "#2e7d32",
|
|
1256
|
+
"backgroundColor": "transparent",
|
|
1257
|
+
"fillStyle": "solid",
|
|
1258
|
+
"strokeWidth": 2,
|
|
1259
|
+
"roughness": 0,
|
|
1260
|
+
"opacity": 100,
|
|
1261
|
+
"groupIds": [],
|
|
1262
|
+
"fontSize": 16,
|
|
1263
|
+
"fontFamily": 1,
|
|
1264
|
+
"text": "Yes",
|
|
1265
|
+
"textAlign": "left",
|
|
1266
|
+
"verticalAlign": "top",
|
|
1267
|
+
"locked": false,
|
|
1268
|
+
"version": 2,
|
|
1269
|
+
"versionNonce": 1581245045,
|
|
1270
|
+
"index": "aW",
|
|
1271
|
+
"isDeleted": false,
|
|
1272
|
+
"strokeStyle": "solid",
|
|
1273
|
+
"seed": 1,
|
|
1274
|
+
"frameId": null,
|
|
1275
|
+
"roundness": null,
|
|
1276
|
+
"boundElements": [],
|
|
1277
|
+
"updated": 1763522171080,
|
|
1278
|
+
"link": null,
|
|
1279
|
+
"containerId": null,
|
|
1280
|
+
"originalText": "Yes",
|
|
1281
|
+
"autoResize": true,
|
|
1282
|
+
"lineHeight": 1.25
|
|
1283
|
+
},
|
|
1284
|
+
{
|
|
1285
|
+
"id": "proc-ux-design",
|
|
1286
|
+
"type": "rectangle",
|
|
1287
|
+
"x": 360,
|
|
1288
|
+
"y": 600,
|
|
1289
|
+
"width": 160,
|
|
1290
|
+
"height": 80,
|
|
1291
|
+
"angle": 0,
|
|
1292
|
+
"strokeColor": "#8e24aa",
|
|
1293
|
+
"backgroundColor": "#e1bee7",
|
|
1294
|
+
"fillStyle": "solid",
|
|
1295
|
+
"strokeWidth": 2,
|
|
1296
|
+
"roughness": 0,
|
|
1297
|
+
"opacity": 100,
|
|
1298
|
+
"roundness": {
|
|
1299
|
+
"type": 3,
|
|
1300
|
+
"value": 8
|
|
1301
|
+
},
|
|
1302
|
+
"groupIds": [
|
|
1303
|
+
"proc-ux-design-group"
|
|
1304
|
+
],
|
|
1305
|
+
"boundElements": [
|
|
1306
|
+
{
|
|
1307
|
+
"type": "text",
|
|
1308
|
+
"id": "proc-ux-design-text"
|
|
1309
|
+
},
|
|
1310
|
+
{
|
|
1311
|
+
"type": "arrow",
|
|
1312
|
+
"id": "arrow-has-ui-yes"
|
|
1313
|
+
},
|
|
1314
|
+
{
|
|
1315
|
+
"type": "arrow",
|
|
1316
|
+
"id": "arrow-ux-to-phase3"
|
|
1317
|
+
}
|
|
1318
|
+
],
|
|
1319
|
+
"locked": false,
|
|
1320
|
+
"version": 2,
|
|
1321
|
+
"versionNonce": 268266331,
|
|
1322
|
+
"index": "aX",
|
|
1323
|
+
"isDeleted": false,
|
|
1324
|
+
"strokeStyle": "solid",
|
|
1325
|
+
"seed": 1,
|
|
1326
|
+
"frameId": null,
|
|
1327
|
+
"updated": 1763522171080,
|
|
1328
|
+
"link": null
|
|
1329
|
+
},
|
|
1330
|
+
{
|
|
1331
|
+
"id": "proc-ux-design-text",
|
|
1332
|
+
"type": "text",
|
|
1333
|
+
"x": 370,
|
|
1334
|
+
"y": 628,
|
|
1335
|
+
"width": 140,
|
|
1336
|
+
"height": 25,
|
|
1337
|
+
"angle": 0,
|
|
1338
|
+
"strokeColor": "#1e1e1e",
|
|
1339
|
+
"backgroundColor": "transparent",
|
|
1340
|
+
"fillStyle": "solid",
|
|
1341
|
+
"strokeWidth": 2,
|
|
1342
|
+
"roughness": 0,
|
|
1343
|
+
"opacity": 100,
|
|
1344
|
+
"groupIds": [
|
|
1345
|
+
"proc-ux-design-group"
|
|
1346
|
+
],
|
|
1347
|
+
"fontSize": 20,
|
|
1348
|
+
"fontFamily": 1,
|
|
1349
|
+
"text": "Create UX",
|
|
1350
|
+
"textAlign": "center",
|
|
1351
|
+
"verticalAlign": "middle",
|
|
1352
|
+
"containerId": "proc-ux-design",
|
|
1353
|
+
"locked": false,
|
|
1354
|
+
"version": 2,
|
|
1355
|
+
"versionNonce": 157666261,
|
|
1356
|
+
"index": "aY",
|
|
1357
|
+
"isDeleted": false,
|
|
1358
|
+
"strokeStyle": "solid",
|
|
1359
|
+
"seed": 1,
|
|
1360
|
+
"frameId": null,
|
|
1361
|
+
"roundness": null,
|
|
1362
|
+
"boundElements": [],
|
|
1363
|
+
"updated": 1763522171080,
|
|
1364
|
+
"link": null,
|
|
1365
|
+
"originalText": "Create UX",
|
|
1366
|
+
"autoResize": true,
|
|
1367
|
+
"lineHeight": 1.25
|
|
1368
|
+
},
|
|
1369
|
+
{
|
|
1370
|
+
"id": "arrow-has-ui-no",
|
|
1371
|
+
"type": "arrow",
|
|
1372
|
+
"x": 517.6863546461885,
|
|
1373
|
+
"y": 287.4640953051147,
|
|
1374
|
+
"width": 158.4487370618814,
|
|
1375
|
+
"height": 25.521141112371026,
|
|
1376
|
+
"angle": 0,
|
|
1377
|
+
"strokeColor": "#1976d2",
|
|
1378
|
+
"backgroundColor": "transparent",
|
|
1379
|
+
"fillStyle": "solid",
|
|
1380
|
+
"strokeWidth": 2,
|
|
1381
|
+
"roughness": 0,
|
|
1382
|
+
"opacity": 100,
|
|
1383
|
+
"groupIds": [],
|
|
1384
|
+
"startBinding": {
|
|
1385
|
+
"elementId": "proc-prd",
|
|
1386
|
+
"focus": -0.13686633304390483,
|
|
1387
|
+
"gap": 1.6107300760746739
|
|
1388
|
+
},
|
|
1389
|
+
"endBinding": {
|
|
1390
|
+
"elementId": "proc-architecture",
|
|
1391
|
+
"focus": 0.16050512337240405,
|
|
1392
|
+
"gap": 6.573819526326588
|
|
1393
|
+
},
|
|
1394
|
+
"points": [
|
|
1395
|
+
[
|
|
1396
|
+
0,
|
|
1397
|
+
0
|
|
1398
|
+
],
|
|
1399
|
+
[
|
|
1400
|
+
65.15287677643596,
|
|
1401
|
+
2.2657676476494544
|
|
1402
|
+
],
|
|
1403
|
+
[
|
|
1404
|
+
111.59197355857077,
|
|
1405
|
+
25.521141112371026
|
|
1406
|
+
],
|
|
1407
|
+
[
|
|
1408
|
+
158.4487370618814,
|
|
1409
|
+
24.060724236900796
|
|
1410
|
+
]
|
|
1411
|
+
],
|
|
1412
|
+
"lastCommittedPoint": null,
|
|
1413
|
+
"version": 831,
|
|
1414
|
+
"versionNonce": 1382987110,
|
|
1415
|
+
"index": "aZ",
|
|
1416
|
+
"isDeleted": false,
|
|
1417
|
+
"strokeStyle": "solid",
|
|
1418
|
+
"seed": 1,
|
|
1419
|
+
"frameId": null,
|
|
1420
|
+
"roundness": {
|
|
1421
|
+
"type": 2
|
|
1422
|
+
},
|
|
1423
|
+
"boundElements": [],
|
|
1424
|
+
"updated": 1764191570205,
|
|
1425
|
+
"link": null,
|
|
1426
|
+
"locked": false,
|
|
1427
|
+
"startArrowhead": null,
|
|
1428
|
+
"endArrowhead": "arrow",
|
|
1429
|
+
"elbowed": false
|
|
1430
|
+
},
|
|
1431
|
+
{
|
|
1432
|
+
"id": "label-no-ui",
|
|
1433
|
+
"type": "text",
|
|
1434
|
+
"x": 540,
|
|
1435
|
+
"y": 500,
|
|
1436
|
+
"width": 25,
|
|
1437
|
+
"height": 20,
|
|
1438
|
+
"angle": 0,
|
|
1439
|
+
"strokeColor": "#d32f2f",
|
|
1440
|
+
"backgroundColor": "transparent",
|
|
1441
|
+
"fillStyle": "solid",
|
|
1442
|
+
"strokeWidth": 2,
|
|
1443
|
+
"roughness": 0,
|
|
1444
|
+
"opacity": 100,
|
|
1445
|
+
"groupIds": [],
|
|
1446
|
+
"fontSize": 16,
|
|
1447
|
+
"fontFamily": 1,
|
|
1448
|
+
"text": "No",
|
|
1449
|
+
"textAlign": "left",
|
|
1450
|
+
"verticalAlign": "top",
|
|
1451
|
+
"locked": false,
|
|
1452
|
+
"version": 5,
|
|
1453
|
+
"versionNonce": 183981370,
|
|
1454
|
+
"index": "aa",
|
|
1455
|
+
"isDeleted": false,
|
|
1456
|
+
"strokeStyle": "solid",
|
|
1457
|
+
"seed": 1,
|
|
1458
|
+
"frameId": null,
|
|
1459
|
+
"roundness": null,
|
|
1460
|
+
"boundElements": [
|
|
1461
|
+
{
|
|
1462
|
+
"id": "arrow-has-ui-no",
|
|
1463
|
+
"type": "arrow"
|
|
1464
|
+
}
|
|
1465
|
+
],
|
|
1466
|
+
"updated": 1764191508105,
|
|
1467
|
+
"link": null,
|
|
1468
|
+
"containerId": null,
|
|
1469
|
+
"originalText": "No",
|
|
1470
|
+
"autoResize": true,
|
|
1471
|
+
"lineHeight": 1.25
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
"id": "arrow-ux-to-phase3",
|
|
1475
|
+
"type": "arrow",
|
|
1476
|
+
"x": 523.3221723982787,
|
|
1477
|
+
"y": 642.0805139439535,
|
|
1478
|
+
"width": 158.4945254931572,
|
|
1479
|
+
"height": 296.63050159541245,
|
|
1480
|
+
"angle": 0,
|
|
1481
|
+
"strokeColor": "#1976d2",
|
|
1482
|
+
"backgroundColor": "transparent",
|
|
1483
|
+
"fillStyle": "solid",
|
|
1484
|
+
"strokeWidth": 2,
|
|
1485
|
+
"roughness": 0,
|
|
1486
|
+
"opacity": 100,
|
|
1487
|
+
"groupIds": [],
|
|
1488
|
+
"startBinding": {
|
|
1489
|
+
"elementId": "proc-ux-design",
|
|
1490
|
+
"focus": 0.5906867967554547,
|
|
1491
|
+
"gap": 3.322172398278667
|
|
1492
|
+
},
|
|
1493
|
+
"endBinding": {
|
|
1494
|
+
"elementId": "proc-architecture",
|
|
1495
|
+
"focus": 0.3856343135512404,
|
|
1496
|
+
"gap": 1
|
|
1497
|
+
},
|
|
1498
|
+
"points": [
|
|
1499
|
+
[
|
|
1500
|
+
0,
|
|
1501
|
+
0
|
|
1502
|
+
],
|
|
1503
|
+
[
|
|
1504
|
+
76.98345162139776,
|
|
1505
|
+
-45.99075822656016
|
|
1506
|
+
],
|
|
1507
|
+
[
|
|
1508
|
+
116.19277860378315,
|
|
1509
|
+
-258.3973533698057
|
|
1510
|
+
],
|
|
1511
|
+
[
|
|
1512
|
+
158.4945254931572,
|
|
1513
|
+
-296.63050159541245
|
|
1514
|
+
]
|
|
1515
|
+
],
|
|
1516
|
+
"lastCommittedPoint": null,
|
|
1517
|
+
"version": 328,
|
|
1518
|
+
"versionNonce": 517434918,
|
|
1519
|
+
"index": "ab",
|
|
1520
|
+
"isDeleted": false,
|
|
1521
|
+
"strokeStyle": "solid",
|
|
1522
|
+
"seed": 1,
|
|
1523
|
+
"frameId": null,
|
|
1524
|
+
"roundness": {
|
|
1525
|
+
"type": 2
|
|
1526
|
+
},
|
|
1527
|
+
"boundElements": [],
|
|
1528
|
+
"updated": 1764191529677,
|
|
1529
|
+
"link": null,
|
|
1530
|
+
"locked": false,
|
|
1531
|
+
"startArrowhead": null,
|
|
1532
|
+
"endArrowhead": "arrow",
|
|
1533
|
+
"elbowed": false
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
"id": "phase3-header",
|
|
1537
|
+
"type": "text",
|
|
1538
|
+
"x": 709.0199784799299,
|
|
1539
|
+
"y": 181.88359184111607,
|
|
1540
|
+
"width": 200,
|
|
1541
|
+
"height": 30,
|
|
1542
|
+
"angle": 0,
|
|
1543
|
+
"strokeColor": "#2e7d32",
|
|
1544
|
+
"backgroundColor": "transparent",
|
|
1545
|
+
"fillStyle": "solid",
|
|
1546
|
+
"strokeWidth": 2,
|
|
1547
|
+
"roughness": 0,
|
|
1548
|
+
"opacity": 100,
|
|
1549
|
+
"groupIds": [],
|
|
1550
|
+
"fontSize": 24,
|
|
1551
|
+
"fontFamily": 1,
|
|
1552
|
+
"text": "PHASE 3",
|
|
1553
|
+
"textAlign": "left",
|
|
1554
|
+
"verticalAlign": "top",
|
|
1555
|
+
"locked": false,
|
|
1556
|
+
"version": 32,
|
|
1557
|
+
"versionNonce": 1258326202,
|
|
1558
|
+
"index": "ac",
|
|
1559
|
+
"isDeleted": false,
|
|
1560
|
+
"strokeStyle": "solid",
|
|
1561
|
+
"seed": 1,
|
|
1562
|
+
"frameId": null,
|
|
1563
|
+
"roundness": null,
|
|
1564
|
+
"boundElements": [],
|
|
1565
|
+
"updated": 1764190667244,
|
|
1566
|
+
"link": null,
|
|
1567
|
+
"containerId": null,
|
|
1568
|
+
"originalText": "PHASE 3",
|
|
1569
|
+
"autoResize": true,
|
|
1570
|
+
"lineHeight": 1.25
|
|
1571
|
+
},
|
|
1572
|
+
{
|
|
1573
|
+
"id": "phase3-subtitle",
|
|
1574
|
+
"type": "text",
|
|
1575
|
+
"x": 687.4485256281371,
|
|
1576
|
+
"y": 215.63080811867223,
|
|
1577
|
+
"width": 220,
|
|
1578
|
+
"height": 20,
|
|
1579
|
+
"angle": 0,
|
|
1580
|
+
"strokeColor": "#666666",
|
|
1581
|
+
"backgroundColor": "transparent",
|
|
1582
|
+
"fillStyle": "solid",
|
|
1583
|
+
"strokeWidth": 2,
|
|
1584
|
+
"roughness": 0,
|
|
1585
|
+
"opacity": 100,
|
|
1586
|
+
"groupIds": [],
|
|
1587
|
+
"fontSize": 16,
|
|
1588
|
+
"fontFamily": 1,
|
|
1589
|
+
"text": "Solutioning (Required)",
|
|
1590
|
+
"textAlign": "left",
|
|
1591
|
+
"verticalAlign": "top",
|
|
1592
|
+
"locked": false,
|
|
1593
|
+
"version": 35,
|
|
1594
|
+
"versionNonce": 360954426,
|
|
1595
|
+
"index": "ad",
|
|
1596
|
+
"isDeleted": false,
|
|
1597
|
+
"strokeStyle": "solid",
|
|
1598
|
+
"seed": 1,
|
|
1599
|
+
"frameId": null,
|
|
1600
|
+
"roundness": null,
|
|
1601
|
+
"boundElements": [],
|
|
1602
|
+
"updated": 1764190669111,
|
|
1603
|
+
"link": null,
|
|
1604
|
+
"containerId": null,
|
|
1605
|
+
"originalText": "Solutioning (Required)",
|
|
1606
|
+
"autoResize": true,
|
|
1607
|
+
"lineHeight": 1.25
|
|
1608
|
+
},
|
|
1609
|
+
{
|
|
1610
|
+
"id": "proc-architecture",
|
|
1611
|
+
"type": "rectangle",
|
|
1612
|
+
"x": 682.7089112343965,
|
|
1613
|
+
"y": 275.64692474279855,
|
|
1614
|
+
"width": 160,
|
|
1615
|
+
"height": 80,
|
|
1616
|
+
"angle": 0,
|
|
1617
|
+
"strokeColor": "#f4511e",
|
|
1618
|
+
"backgroundColor": "#ffccbc",
|
|
1619
|
+
"fillStyle": "solid",
|
|
1620
|
+
"strokeWidth": 2,
|
|
1621
|
+
"roughness": 0,
|
|
1622
|
+
"opacity": 100,
|
|
1623
|
+
"roundness": {
|
|
1624
|
+
"type": 3,
|
|
1625
|
+
"value": 8
|
|
1626
|
+
},
|
|
1627
|
+
"groupIds": [
|
|
1628
|
+
"proc-architecture-group"
|
|
1629
|
+
],
|
|
1630
|
+
"boundElements": [
|
|
1631
|
+
{
|
|
1632
|
+
"type": "text",
|
|
1633
|
+
"id": "proc-architecture-text"
|
|
1634
|
+
},
|
|
1635
|
+
{
|
|
1636
|
+
"type": "arrow",
|
|
1637
|
+
"id": "arrow-ux-to-phase3"
|
|
1638
|
+
},
|
|
1639
|
+
{
|
|
1640
|
+
"type": "arrow",
|
|
1641
|
+
"id": "arrow-arch-epics"
|
|
1642
|
+
},
|
|
1643
|
+
{
|
|
1644
|
+
"id": "arrow-has-ui-no",
|
|
1645
|
+
"type": "arrow"
|
|
1646
|
+
}
|
|
1647
|
+
],
|
|
1648
|
+
"locked": false,
|
|
1649
|
+
"version": 90,
|
|
1650
|
+
"versionNonce": 1912262330,
|
|
1651
|
+
"index": "ae",
|
|
1652
|
+
"isDeleted": false,
|
|
1653
|
+
"strokeStyle": "solid",
|
|
1654
|
+
"seed": 1,
|
|
1655
|
+
"frameId": null,
|
|
1656
|
+
"updated": 1764191508105,
|
|
1657
|
+
"link": null
|
|
1658
|
+
},
|
|
1659
|
+
{
|
|
1660
|
+
"id": "proc-architecture-text",
|
|
1661
|
+
"type": "text",
|
|
1662
|
+
"x": 692.7089112343965,
|
|
1663
|
+
"y": 303.64692474279855,
|
|
1664
|
+
"width": 140,
|
|
1665
|
+
"height": 25,
|
|
1666
|
+
"angle": 0,
|
|
1667
|
+
"strokeColor": "#1e1e1e",
|
|
1668
|
+
"backgroundColor": "transparent",
|
|
1669
|
+
"fillStyle": "solid",
|
|
1670
|
+
"strokeWidth": 2,
|
|
1671
|
+
"roughness": 0,
|
|
1672
|
+
"opacity": 100,
|
|
1673
|
+
"groupIds": [
|
|
1674
|
+
"proc-architecture-group"
|
|
1675
|
+
],
|
|
1676
|
+
"fontSize": 20,
|
|
1677
|
+
"fontFamily": 1,
|
|
1678
|
+
"text": "Architecture",
|
|
1679
|
+
"textAlign": "center",
|
|
1680
|
+
"verticalAlign": "middle",
|
|
1681
|
+
"containerId": "proc-architecture",
|
|
1682
|
+
"locked": false,
|
|
1683
|
+
"version": 88,
|
|
1684
|
+
"versionNonce": 452440186,
|
|
1685
|
+
"index": "af",
|
|
1686
|
+
"isDeleted": false,
|
|
1687
|
+
"strokeStyle": "solid",
|
|
1688
|
+
"seed": 1,
|
|
1689
|
+
"frameId": null,
|
|
1690
|
+
"roundness": null,
|
|
1691
|
+
"boundElements": [],
|
|
1692
|
+
"updated": 1764191451669,
|
|
1693
|
+
"link": null,
|
|
1694
|
+
"originalText": "Architecture",
|
|
1695
|
+
"autoResize": true,
|
|
1696
|
+
"lineHeight": 1.25
|
|
1697
|
+
},
|
|
1698
|
+
{
|
|
1699
|
+
"id": "arrow-arch-epics",
|
|
1700
|
+
"type": "arrow",
|
|
1701
|
+
"x": 760.6640738654764,
|
|
1702
|
+
"y": 358.02872135607737,
|
|
1703
|
+
"width": 0.007789277755136936,
|
|
1704
|
+
"height": 35.679359419065065,
|
|
1705
|
+
"angle": 0,
|
|
1706
|
+
"strokeColor": "#1976d2",
|
|
1707
|
+
"backgroundColor": "transparent",
|
|
1708
|
+
"fillStyle": "solid",
|
|
1709
|
+
"strokeWidth": 2,
|
|
1710
|
+
"roughness": 0,
|
|
1711
|
+
"opacity": 100,
|
|
1712
|
+
"groupIds": [],
|
|
1713
|
+
"startBinding": {
|
|
1714
|
+
"elementId": "proc-architecture",
|
|
1715
|
+
"focus": 0.025673321057619772,
|
|
1716
|
+
"gap": 2.381796613278823
|
|
1717
|
+
},
|
|
1718
|
+
"endBinding": {
|
|
1719
|
+
"elementId": "proc-validate-arch",
|
|
1720
|
+
"focus": -0.09156227842994098,
|
|
1721
|
+
"gap": 2.5273595258319688
|
|
1722
|
+
},
|
|
1723
|
+
"points": [
|
|
1724
|
+
[
|
|
1725
|
+
0,
|
|
1726
|
+
0
|
|
1727
|
+
],
|
|
1728
|
+
[
|
|
1729
|
+
0.007789277755136936,
|
|
1730
|
+
35.679359419065065
|
|
1731
|
+
]
|
|
1732
|
+
],
|
|
1733
|
+
"lastCommittedPoint": null,
|
|
1734
|
+
"version": 549,
|
|
1735
|
+
"versionNonce": 1665519674,
|
|
1736
|
+
"index": "ag",
|
|
1737
|
+
"isDeleted": false,
|
|
1738
|
+
"strokeStyle": "solid",
|
|
1739
|
+
"seed": 1,
|
|
1740
|
+
"frameId": null,
|
|
1741
|
+
"roundness": null,
|
|
1742
|
+
"boundElements": [],
|
|
1743
|
+
"updated": 1764191459184,
|
|
1744
|
+
"link": null,
|
|
1745
|
+
"locked": false,
|
|
1746
|
+
"startArrowhead": null,
|
|
1747
|
+
"endArrowhead": "arrow"
|
|
1748
|
+
},
|
|
1749
|
+
{
|
|
1750
|
+
"id": "proc-epics",
|
|
1751
|
+
"type": "rectangle",
|
|
1752
|
+
"x": 670.1028230821919,
|
|
1753
|
+
"y": 510.76268244350774,
|
|
1754
|
+
"width": 160,
|
|
1755
|
+
"height": 80,
|
|
1756
|
+
"angle": 0,
|
|
1757
|
+
"strokeColor": "#43a047",
|
|
1758
|
+
"backgroundColor": "#c8e6c9",
|
|
1759
|
+
"fillStyle": "solid",
|
|
1760
|
+
"strokeWidth": 2,
|
|
1761
|
+
"roughness": 0,
|
|
1762
|
+
"opacity": 100,
|
|
1763
|
+
"roundness": {
|
|
1764
|
+
"type": 3,
|
|
1765
|
+
"value": 8
|
|
1766
|
+
},
|
|
1767
|
+
"groupIds": [
|
|
1768
|
+
"proc-epics-group"
|
|
1769
|
+
],
|
|
1770
|
+
"boundElements": [
|
|
1771
|
+
{
|
|
1772
|
+
"type": "text",
|
|
1773
|
+
"id": "proc-epics-text"
|
|
1774
|
+
},
|
|
1775
|
+
{
|
|
1776
|
+
"type": "arrow",
|
|
1777
|
+
"id": "arrow-arch-epics"
|
|
1778
|
+
},
|
|
1779
|
+
{
|
|
1780
|
+
"type": "arrow",
|
|
1781
|
+
"id": "arrow-epics-test"
|
|
1782
|
+
},
|
|
1783
|
+
{
|
|
1784
|
+
"id": "arrow-validate-ready",
|
|
1785
|
+
"type": "arrow"
|
|
1786
|
+
}
|
|
1787
|
+
],
|
|
1788
|
+
"locked": false,
|
|
1789
|
+
"version": 178,
|
|
1790
|
+
"versionNonce": 1597058278,
|
|
1791
|
+
"index": "ah",
|
|
1792
|
+
"isDeleted": false,
|
|
1793
|
+
"strokeStyle": "solid",
|
|
1794
|
+
"seed": 1,
|
|
1795
|
+
"frameId": null,
|
|
1796
|
+
"updated": 1764191442604,
|
|
1797
|
+
"link": null
|
|
1798
|
+
},
|
|
1799
|
+
{
|
|
1800
|
+
"id": "proc-epics-text",
|
|
1801
|
+
"type": "text",
|
|
1802
|
+
"x": 680.1028230821919,
|
|
1803
|
+
"y": 538.7626824435077,
|
|
1804
|
+
"width": 140,
|
|
1805
|
+
"height": 25,
|
|
1806
|
+
"angle": 0,
|
|
1807
|
+
"strokeColor": "#1e1e1e",
|
|
1808
|
+
"backgroundColor": "transparent",
|
|
1809
|
+
"fillStyle": "solid",
|
|
1810
|
+
"strokeWidth": 2,
|
|
1811
|
+
"roughness": 0,
|
|
1812
|
+
"opacity": 100,
|
|
1813
|
+
"groupIds": [
|
|
1814
|
+
"proc-epics-group"
|
|
1815
|
+
],
|
|
1816
|
+
"fontSize": 20,
|
|
1817
|
+
"fontFamily": 1,
|
|
1818
|
+
"text": "Epics/Stories",
|
|
1819
|
+
"textAlign": "center",
|
|
1820
|
+
"verticalAlign": "middle",
|
|
1821
|
+
"containerId": "proc-epics",
|
|
1822
|
+
"locked": false,
|
|
1823
|
+
"version": 177,
|
|
1824
|
+
"versionNonce": 2105920614,
|
|
1825
|
+
"index": "ai",
|
|
1826
|
+
"isDeleted": false,
|
|
1827
|
+
"strokeStyle": "solid",
|
|
1828
|
+
"seed": 1,
|
|
1829
|
+
"frameId": null,
|
|
1830
|
+
"roundness": null,
|
|
1831
|
+
"boundElements": [],
|
|
1832
|
+
"updated": 1764191427908,
|
|
1833
|
+
"link": null,
|
|
1834
|
+
"originalText": "Epics/Stories",
|
|
1835
|
+
"autoResize": true,
|
|
1836
|
+
"lineHeight": 1.25
|
|
1837
|
+
},
|
|
1838
|
+
{
|
|
1839
|
+
"id": "arrow-epics-test",
|
|
1840
|
+
"type": "arrow",
|
|
1841
|
+
"x": 750.5489606775325,
|
|
1842
|
+
"y": 591.2142966047594,
|
|
1843
|
+
"width": 0.4387418927216231,
|
|
1844
|
+
"height": 60.43894121748178,
|
|
1845
|
+
"angle": 0,
|
|
1846
|
+
"strokeColor": "#1976d2",
|
|
1847
|
+
"backgroundColor": "transparent",
|
|
1848
|
+
"fillStyle": "solid",
|
|
1849
|
+
"strokeWidth": 2,
|
|
1850
|
+
"roughness": 0,
|
|
1851
|
+
"opacity": 100,
|
|
1852
|
+
"groupIds": [],
|
|
1853
|
+
"startBinding": {
|
|
1854
|
+
"elementId": "proc-epics",
|
|
1855
|
+
"focus": 0,
|
|
1856
|
+
"gap": 1
|
|
1857
|
+
},
|
|
1858
|
+
"endBinding": {
|
|
1859
|
+
"elementId": "proc-test-design",
|
|
1860
|
+
"focus": 0,
|
|
1861
|
+
"gap": 1
|
|
1862
|
+
},
|
|
1863
|
+
"points": [
|
|
1864
|
+
[
|
|
1865
|
+
0,
|
|
1866
|
+
0
|
|
1867
|
+
],
|
|
1868
|
+
[
|
|
1869
|
+
0.4387418927216231,
|
|
1870
|
+
60.43894121748178
|
|
1871
|
+
]
|
|
1872
|
+
],
|
|
1873
|
+
"lastCommittedPoint": null,
|
|
1874
|
+
"version": 358,
|
|
1875
|
+
"versionNonce": 1168009958,
|
|
1876
|
+
"index": "aj",
|
|
1877
|
+
"isDeleted": false,
|
|
1878
|
+
"strokeStyle": "solid",
|
|
1879
|
+
"seed": 1,
|
|
1880
|
+
"frameId": null,
|
|
1881
|
+
"roundness": null,
|
|
1882
|
+
"boundElements": [],
|
|
1883
|
+
"updated": 1764191427908,
|
|
1884
|
+
"link": null,
|
|
1885
|
+
"locked": false,
|
|
1886
|
+
"startArrowhead": null,
|
|
1887
|
+
"endArrowhead": "arrow"
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
"id": "proc-test-design",
|
|
1891
|
+
"type": "rectangle",
|
|
1892
|
+
"x": 671.2209977440557,
|
|
1893
|
+
"y": 652.1048519834928,
|
|
1894
|
+
"width": 160,
|
|
1895
|
+
"height": 80,
|
|
1896
|
+
"angle": 0,
|
|
1897
|
+
"strokeColor": "#e91e63",
|
|
1898
|
+
"backgroundColor": "#f8bbd0",
|
|
1899
|
+
"fillStyle": "solid",
|
|
1900
|
+
"strokeWidth": 2,
|
|
1901
|
+
"roughness": 0,
|
|
1902
|
+
"opacity": 100,
|
|
1903
|
+
"roundness": {
|
|
1904
|
+
"type": 3,
|
|
1905
|
+
"value": 8
|
|
1906
|
+
},
|
|
1907
|
+
"groupIds": [
|
|
1908
|
+
"proc-test-design-group"
|
|
1909
|
+
],
|
|
1910
|
+
"boundElements": [
|
|
1911
|
+
{
|
|
1912
|
+
"type": "text",
|
|
1913
|
+
"id": "proc-test-design-text"
|
|
1914
|
+
},
|
|
1915
|
+
{
|
|
1916
|
+
"type": "arrow",
|
|
1917
|
+
"id": "arrow-epics-test"
|
|
1918
|
+
},
|
|
1919
|
+
{
|
|
1920
|
+
"type": "arrow",
|
|
1921
|
+
"id": "arrow-test-validate"
|
|
1922
|
+
}
|
|
1923
|
+
],
|
|
1924
|
+
"locked": false,
|
|
1925
|
+
"version": 124,
|
|
1926
|
+
"versionNonce": 456543462,
|
|
1927
|
+
"index": "ak",
|
|
1928
|
+
"isDeleted": false,
|
|
1929
|
+
"strokeStyle": "solid",
|
|
1930
|
+
"seed": 1,
|
|
1931
|
+
"frameId": null,
|
|
1932
|
+
"updated": 1764191425140,
|
|
1933
|
+
"link": null
|
|
1934
|
+
},
|
|
1935
|
+
{
|
|
1936
|
+
"id": "proc-test-design-text",
|
|
1937
|
+
"type": "text",
|
|
1938
|
+
"x": 709.1090363793096,
|
|
1939
|
+
"y": 667.1048519834928,
|
|
1940
|
+
"width": 84.22392272949219,
|
|
1941
|
+
"height": 50,
|
|
1942
|
+
"angle": 0,
|
|
1943
|
+
"strokeColor": "#1e1e1e",
|
|
1944
|
+
"backgroundColor": "transparent",
|
|
1945
|
+
"fillStyle": "solid",
|
|
1946
|
+
"strokeWidth": 2,
|
|
1947
|
+
"roughness": 0,
|
|
1948
|
+
"opacity": 100,
|
|
1949
|
+
"groupIds": [
|
|
1950
|
+
"proc-test-design-group"
|
|
1951
|
+
],
|
|
1952
|
+
"fontSize": 14,
|
|
1953
|
+
"fontFamily": 1,
|
|
1954
|
+
"text": "Test Design\n<<optional>>",
|
|
1955
|
+
"textAlign": "center",
|
|
1956
|
+
"verticalAlign": "middle",
|
|
1957
|
+
"containerId": "proc-test-design",
|
|
1958
|
+
"locked": false,
|
|
1959
|
+
"version": 133,
|
|
1960
|
+
"versionNonce": 1038598182,
|
|
1961
|
+
"index": "al",
|
|
1962
|
+
"isDeleted": false,
|
|
1963
|
+
"strokeStyle": "solid",
|
|
1964
|
+
"seed": 1,
|
|
1965
|
+
"frameId": null,
|
|
1966
|
+
"roundness": null,
|
|
1967
|
+
"boundElements": [],
|
|
1968
|
+
"updated": 1764191425140,
|
|
1969
|
+
"link": null,
|
|
1970
|
+
"originalText": "Test Design\n<<optional>>",
|
|
1971
|
+
"autoResize": true,
|
|
1972
|
+
"lineHeight": 1.7857142857142858
|
|
1973
|
+
},
|
|
1974
|
+
{
|
|
1975
|
+
"id": "arrow-test-validate",
|
|
1976
|
+
"type": "arrow",
|
|
1977
|
+
"x": 742.3164554890545,
|
|
1978
|
+
"y": 732.7428812826017,
|
|
1979
|
+
"width": 0.2331013464803391,
|
|
1980
|
+
"height": 41.16039866169126,
|
|
1981
|
+
"angle": 0,
|
|
1982
|
+
"strokeColor": "#1976d2",
|
|
1983
|
+
"backgroundColor": "transparent",
|
|
1984
|
+
"fillStyle": "solid",
|
|
1985
|
+
"strokeWidth": 2,
|
|
1986
|
+
"roughness": 0,
|
|
1987
|
+
"opacity": 100,
|
|
1988
|
+
"groupIds": [],
|
|
1989
|
+
"startBinding": {
|
|
1990
|
+
"elementId": "proc-test-design",
|
|
1991
|
+
"focus": 0.11090307971902064,
|
|
1992
|
+
"gap": 1.407314849962063
|
|
1993
|
+
},
|
|
1994
|
+
"endBinding": {
|
|
1995
|
+
"elementId": "proc-impl-ready",
|
|
1996
|
+
"focus": -0.07891534010655449,
|
|
1997
|
+
"gap": 6.845537084300759
|
|
1998
|
+
},
|
|
1999
|
+
"points": [
|
|
2000
|
+
[
|
|
2001
|
+
0,
|
|
2002
|
+
0
|
|
2003
|
+
],
|
|
2004
|
+
[
|
|
2005
|
+
0.2331013464803391,
|
|
2006
|
+
41.16039866169126
|
|
2007
|
+
]
|
|
2008
|
+
],
|
|
2009
|
+
"lastCommittedPoint": null,
|
|
2010
|
+
"version": 482,
|
|
2011
|
+
"versionNonce": 362456762,
|
|
2012
|
+
"index": "am",
|
|
2013
|
+
"isDeleted": false,
|
|
2014
|
+
"strokeStyle": "solid",
|
|
2015
|
+
"seed": 1,
|
|
2016
|
+
"frameId": null,
|
|
2017
|
+
"roundness": null,
|
|
2018
|
+
"boundElements": [],
|
|
2019
|
+
"updated": 1764191475964,
|
|
2020
|
+
"link": null,
|
|
2021
|
+
"locked": false,
|
|
2022
|
+
"startArrowhead": null,
|
|
2023
|
+
"endArrowhead": "arrow"
|
|
2024
|
+
},
|
|
2025
|
+
{
|
|
2026
|
+
"id": "proc-validate-arch",
|
|
2027
|
+
"type": "rectangle",
|
|
2028
|
+
"x": 688.0069292751327,
|
|
2029
|
+
"y": 396.2354403009744,
|
|
2030
|
+
"width": 160,
|
|
2031
|
+
"height": 80,
|
|
2032
|
+
"angle": 0,
|
|
2033
|
+
"strokeColor": "#f4511e",
|
|
2034
|
+
"backgroundColor": "#ffccbc",
|
|
2035
|
+
"fillStyle": "solid",
|
|
2036
|
+
"strokeWidth": 2,
|
|
2037
|
+
"roughness": 0,
|
|
2038
|
+
"opacity": 100,
|
|
2039
|
+
"roundness": {
|
|
2040
|
+
"type": 3,
|
|
2041
|
+
"value": 8
|
|
2042
|
+
},
|
|
2043
|
+
"groupIds": [
|
|
2044
|
+
"proc-validate-arch-group"
|
|
2045
|
+
],
|
|
2046
|
+
"boundElements": [
|
|
2047
|
+
{
|
|
2048
|
+
"type": "text",
|
|
2049
|
+
"id": "proc-validate-arch-text"
|
|
2050
|
+
},
|
|
2051
|
+
{
|
|
2052
|
+
"type": "arrow",
|
|
2053
|
+
"id": "arrow-test-validate"
|
|
2054
|
+
},
|
|
2055
|
+
{
|
|
2056
|
+
"type": "arrow",
|
|
2057
|
+
"id": "arrow-validate-ready"
|
|
2058
|
+
},
|
|
2059
|
+
{
|
|
2060
|
+
"id": "arrow-arch-epics",
|
|
2061
|
+
"type": "arrow"
|
|
2062
|
+
}
|
|
2063
|
+
],
|
|
2064
|
+
"locked": false,
|
|
2065
|
+
"version": 234,
|
|
2066
|
+
"versionNonce": 940473658,
|
|
2067
|
+
"index": "an",
|
|
2068
|
+
"isDeleted": false,
|
|
2069
|
+
"strokeStyle": "solid",
|
|
2070
|
+
"seed": 1,
|
|
2071
|
+
"frameId": null,
|
|
2072
|
+
"updated": 1764191449834,
|
|
2073
|
+
"link": null
|
|
2074
|
+
},
|
|
2075
|
+
{
|
|
2076
|
+
"id": "proc-validate-arch-text",
|
|
2077
|
+
"type": "text",
|
|
2078
|
+
"x": 698.0069292751327,
|
|
2079
|
+
"y": 411.2354403009744,
|
|
2080
|
+
"width": 140,
|
|
2081
|
+
"height": 50,
|
|
2082
|
+
"angle": 0,
|
|
2083
|
+
"strokeColor": "#1e1e1e",
|
|
2084
|
+
"backgroundColor": "transparent",
|
|
2085
|
+
"fillStyle": "solid",
|
|
2086
|
+
"strokeWidth": 2,
|
|
2087
|
+
"roughness": 0,
|
|
2088
|
+
"opacity": 100,
|
|
2089
|
+
"groupIds": [
|
|
2090
|
+
"proc-validate-arch-group"
|
|
2091
|
+
],
|
|
2092
|
+
"fontSize": 14,
|
|
2093
|
+
"fontFamily": 1,
|
|
2094
|
+
"text": "Validate Arch\n<<optional>>",
|
|
2095
|
+
"textAlign": "center",
|
|
2096
|
+
"verticalAlign": "middle",
|
|
2097
|
+
"containerId": "proc-validate-arch",
|
|
2098
|
+
"locked": false,
|
|
2099
|
+
"version": 233,
|
|
2100
|
+
"versionNonce": 41862650,
|
|
2101
|
+
"index": "ao",
|
|
2102
|
+
"isDeleted": false,
|
|
2103
|
+
"strokeStyle": "solid",
|
|
2104
|
+
"seed": 1,
|
|
2105
|
+
"frameId": null,
|
|
2106
|
+
"roundness": null,
|
|
2107
|
+
"boundElements": [],
|
|
2108
|
+
"updated": 1764191449834,
|
|
2109
|
+
"link": null,
|
|
2110
|
+
"originalText": "Validate Arch\n<<optional>>",
|
|
2111
|
+
"autoResize": true,
|
|
2112
|
+
"lineHeight": 1.7857142857142858
|
|
2113
|
+
},
|
|
2114
|
+
{
|
|
2115
|
+
"id": "arrow-validate-ready",
|
|
2116
|
+
"type": "arrow",
|
|
2117
|
+
"x": 756.1926048905458,
|
|
2118
|
+
"y": 477.82525825285865,
|
|
2119
|
+
"width": 2.6030810941729214,
|
|
2120
|
+
"height": 34.90186599521081,
|
|
2121
|
+
"angle": 0,
|
|
2122
|
+
"strokeColor": "#1976d2",
|
|
2123
|
+
"backgroundColor": "transparent",
|
|
2124
|
+
"fillStyle": "solid",
|
|
2125
|
+
"strokeWidth": 2,
|
|
2126
|
+
"roughness": 0,
|
|
2127
|
+
"opacity": 100,
|
|
2128
|
+
"groupIds": [],
|
|
2129
|
+
"startBinding": {
|
|
2130
|
+
"elementId": "proc-validate-arch",
|
|
2131
|
+
"focus": 0.10499022285337105,
|
|
2132
|
+
"gap": 1.5898179518842426
|
|
2133
|
+
},
|
|
2134
|
+
"endBinding": {
|
|
2135
|
+
"elementId": "proc-epics",
|
|
2136
|
+
"focus": 0.007831693483179265,
|
|
2137
|
+
"gap": 1.9644418045617158
|
|
2138
|
+
},
|
|
2139
|
+
"points": [
|
|
2140
|
+
[
|
|
2141
|
+
0,
|
|
2142
|
+
0
|
|
2143
|
+
],
|
|
2144
|
+
[
|
|
2145
|
+
-2.6030810941729214,
|
|
2146
|
+
34.90186599521081
|
|
2147
|
+
]
|
|
2148
|
+
],
|
|
2149
|
+
"lastCommittedPoint": null,
|
|
2150
|
+
"version": 527,
|
|
2151
|
+
"versionNonce": 679932090,
|
|
2152
|
+
"index": "ap",
|
|
2153
|
+
"isDeleted": false,
|
|
2154
|
+
"strokeStyle": "solid",
|
|
2155
|
+
"seed": 1,
|
|
2156
|
+
"frameId": null,
|
|
2157
|
+
"roundness": null,
|
|
2158
|
+
"boundElements": [],
|
|
2159
|
+
"updated": 1764191469649,
|
|
2160
|
+
"link": null,
|
|
2161
|
+
"locked": false,
|
|
2162
|
+
"startArrowhead": null,
|
|
2163
|
+
"endArrowhead": "arrow"
|
|
2164
|
+
},
|
|
2165
|
+
{
|
|
2166
|
+
"id": "proc-impl-ready",
|
|
2167
|
+
"type": "rectangle",
|
|
2168
|
+
"x": 669.3773407122919,
|
|
2169
|
+
"y": 777.1531869468762,
|
|
2170
|
+
"width": 160,
|
|
2171
|
+
"height": 80,
|
|
2172
|
+
"angle": 0,
|
|
2173
|
+
"strokeColor": "#f4511e",
|
|
2174
|
+
"backgroundColor": "#ffccbc",
|
|
2175
|
+
"fillStyle": "solid",
|
|
2176
|
+
"strokeWidth": 2,
|
|
2177
|
+
"roughness": 0,
|
|
2178
|
+
"opacity": 100,
|
|
2179
|
+
"roundness": {
|
|
2180
|
+
"type": 3,
|
|
2181
|
+
"value": 8
|
|
2182
|
+
},
|
|
2183
|
+
"groupIds": [
|
|
2184
|
+
"proc-impl-ready-group"
|
|
2185
|
+
],
|
|
2186
|
+
"boundElements": [
|
|
2187
|
+
{
|
|
2188
|
+
"type": "text",
|
|
2189
|
+
"id": "proc-impl-ready-text"
|
|
2190
|
+
},
|
|
2191
|
+
{
|
|
2192
|
+
"type": "arrow",
|
|
2193
|
+
"id": "arrow-validate-ready"
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
"type": "arrow",
|
|
2197
|
+
"id": "arrow-phase3-to-phase4"
|
|
2198
|
+
},
|
|
2199
|
+
{
|
|
2200
|
+
"id": "arrow-test-validate",
|
|
2201
|
+
"type": "arrow"
|
|
2202
|
+
}
|
|
2203
|
+
],
|
|
2204
|
+
"locked": false,
|
|
2205
|
+
"version": 102,
|
|
2206
|
+
"versionNonce": 1799933050,
|
|
2207
|
+
"index": "aq",
|
|
2208
|
+
"isDeleted": false,
|
|
2209
|
+
"strokeStyle": "solid",
|
|
2210
|
+
"seed": 1,
|
|
2211
|
+
"frameId": null,
|
|
2212
|
+
"updated": 1764191475963,
|
|
2213
|
+
"link": null
|
|
2214
|
+
},
|
|
2215
|
+
{
|
|
2216
|
+
"id": "proc-impl-ready-text",
|
|
2217
|
+
"type": "text",
|
|
2218
|
+
"x": 679.3773407122919,
|
|
2219
|
+
"y": 792.1531869468762,
|
|
2220
|
+
"width": 140,
|
|
2221
|
+
"height": 50,
|
|
2222
|
+
"angle": 0,
|
|
2223
|
+
"strokeColor": "#1e1e1e",
|
|
2224
|
+
"backgroundColor": "transparent",
|
|
2225
|
+
"fillStyle": "solid",
|
|
2226
|
+
"strokeWidth": 2,
|
|
2227
|
+
"roughness": 0,
|
|
2228
|
+
"opacity": 100,
|
|
2229
|
+
"groupIds": [
|
|
2230
|
+
"proc-impl-ready-group"
|
|
2231
|
+
],
|
|
2232
|
+
"fontSize": 16,
|
|
2233
|
+
"fontFamily": 1,
|
|
2234
|
+
"text": "Implementation\nReadiness",
|
|
2235
|
+
"textAlign": "center",
|
|
2236
|
+
"verticalAlign": "middle",
|
|
2237
|
+
"containerId": "proc-impl-ready",
|
|
2238
|
+
"locked": false,
|
|
2239
|
+
"version": 101,
|
|
2240
|
+
"versionNonce": 1345137978,
|
|
2241
|
+
"index": "ar",
|
|
2242
|
+
"isDeleted": false,
|
|
2243
|
+
"strokeStyle": "solid",
|
|
2244
|
+
"seed": 1,
|
|
2245
|
+
"frameId": null,
|
|
2246
|
+
"roundness": null,
|
|
2247
|
+
"boundElements": [],
|
|
2248
|
+
"updated": 1764191475963,
|
|
2249
|
+
"link": null,
|
|
2250
|
+
"originalText": "Implementation\nReadiness",
|
|
2251
|
+
"autoResize": true,
|
|
2252
|
+
"lineHeight": 1.5625
|
|
2253
|
+
},
|
|
2254
|
+
{
|
|
2255
|
+
"id": "arrow-phase3-to-phase4",
|
|
2256
|
+
"type": "arrow",
|
|
2257
|
+
"x": 832.3758366994932,
|
|
2258
|
+
"y": 828.1314512149465,
|
|
2259
|
+
"width": 332.79883769023445,
|
|
2260
|
+
"height": 519.9927682908395,
|
|
2261
|
+
"angle": 0,
|
|
2262
|
+
"strokeColor": "#1976d2",
|
|
2263
|
+
"backgroundColor": "transparent",
|
|
2264
|
+
"fillStyle": "solid",
|
|
2265
|
+
"strokeWidth": 2,
|
|
2266
|
+
"roughness": 0,
|
|
2267
|
+
"opacity": 100,
|
|
2268
|
+
"groupIds": [],
|
|
2269
|
+
"startBinding": {
|
|
2270
|
+
"elementId": "proc-impl-ready",
|
|
2271
|
+
"focus": 0.8094917779899522,
|
|
2272
|
+
"gap": 3.380037483859951
|
|
2273
|
+
},
|
|
2274
|
+
"endBinding": {
|
|
2275
|
+
"elementId": "proc-sprint-planning",
|
|
2276
|
+
"focus": 0.538276991056649,
|
|
2277
|
+
"gap": 1.1436349518342013
|
|
2278
|
+
},
|
|
2279
|
+
"points": [
|
|
2280
|
+
[
|
|
2281
|
+
0,
|
|
2282
|
+
0
|
|
2283
|
+
],
|
|
2284
|
+
[
|
|
2285
|
+
80.82567439689569,
|
|
2286
|
+
-94.83900216621896
|
|
2287
|
+
],
|
|
2288
|
+
[
|
|
2289
|
+
159.28426317101867,
|
|
2290
|
+
-458.225799867337
|
|
2291
|
+
],
|
|
2292
|
+
[
|
|
2293
|
+
332.79883769023445,
|
|
2294
|
+
-519.9927682908395
|
|
2295
|
+
]
|
|
2296
|
+
],
|
|
2297
|
+
"lastCommittedPoint": null,
|
|
2298
|
+
"version": 1116,
|
|
2299
|
+
"versionNonce": 55014906,
|
|
2300
|
+
"index": "as",
|
|
2301
|
+
"isDeleted": false,
|
|
2302
|
+
"strokeStyle": "solid",
|
|
2303
|
+
"seed": 1,
|
|
2304
|
+
"frameId": null,
|
|
2305
|
+
"roundness": {
|
|
2306
|
+
"type": 2
|
|
2307
|
+
},
|
|
2308
|
+
"boundElements": [],
|
|
2309
|
+
"updated": 1764191475964,
|
|
2310
|
+
"link": null,
|
|
2311
|
+
"locked": false,
|
|
2312
|
+
"startArrowhead": null,
|
|
2313
|
+
"endArrowhead": "arrow",
|
|
2314
|
+
"elbowed": false
|
|
2315
|
+
},
|
|
2316
|
+
{
|
|
2317
|
+
"id": "phase4-header",
|
|
2318
|
+
"type": "text",
|
|
2319
|
+
"x": 1175.3730315866237,
|
|
2320
|
+
"y": 167.81322734599433,
|
|
2321
|
+
"width": 200,
|
|
2322
|
+
"height": 30,
|
|
2323
|
+
"angle": 0,
|
|
2324
|
+
"strokeColor": "#2e7d32",
|
|
2325
|
+
"backgroundColor": "transparent",
|
|
2326
|
+
"fillStyle": "solid",
|
|
2327
|
+
"strokeWidth": 2,
|
|
2328
|
+
"roughness": 0,
|
|
2329
|
+
"opacity": 100,
|
|
2330
|
+
"groupIds": [],
|
|
2331
|
+
"fontSize": 24,
|
|
2332
|
+
"fontFamily": 1,
|
|
2333
|
+
"text": "PHASE 4",
|
|
2334
|
+
"textAlign": "left",
|
|
2335
|
+
"verticalAlign": "top",
|
|
2336
|
+
"locked": false,
|
|
2337
|
+
"version": 271,
|
|
2338
|
+
"versionNonce": 866534438,
|
|
2339
|
+
"index": "at",
|
|
2340
|
+
"isDeleted": false,
|
|
2341
|
+
"strokeStyle": "solid",
|
|
2342
|
+
"seed": 1,
|
|
2343
|
+
"frameId": null,
|
|
2344
|
+
"roundness": null,
|
|
2345
|
+
"boundElements": [],
|
|
2346
|
+
"updated": 1764190763204,
|
|
2347
|
+
"link": null,
|
|
2348
|
+
"containerId": null,
|
|
2349
|
+
"originalText": "PHASE 4",
|
|
2350
|
+
"autoResize": true,
|
|
2351
|
+
"lineHeight": 1.25
|
|
2352
|
+
},
|
|
2353
|
+
{
|
|
2354
|
+
"id": "phase4-subtitle",
|
|
2355
|
+
"type": "text",
|
|
2356
|
+
"x": 1139.1188804963076,
|
|
2357
|
+
"y": 204.18282943768378,
|
|
2358
|
+
"width": 260,
|
|
2359
|
+
"height": 20,
|
|
2360
|
+
"angle": 0,
|
|
2361
|
+
"strokeColor": "#666666",
|
|
2362
|
+
"backgroundColor": "transparent",
|
|
2363
|
+
"fillStyle": "solid",
|
|
2364
|
+
"strokeWidth": 2,
|
|
2365
|
+
"roughness": 0,
|
|
2366
|
+
"opacity": 100,
|
|
2367
|
+
"groupIds": [],
|
|
2368
|
+
"fontSize": 16,
|
|
2369
|
+
"fontFamily": 1,
|
|
2370
|
+
"text": "Implementation (Required)",
|
|
2371
|
+
"textAlign": "left",
|
|
2372
|
+
"verticalAlign": "top",
|
|
2373
|
+
"locked": false,
|
|
2374
|
+
"version": 238,
|
|
2375
|
+
"versionNonce": 198627174,
|
|
2376
|
+
"index": "au",
|
|
2377
|
+
"isDeleted": false,
|
|
2378
|
+
"strokeStyle": "solid",
|
|
2379
|
+
"seed": 1,
|
|
2380
|
+
"frameId": null,
|
|
2381
|
+
"roundness": null,
|
|
2382
|
+
"boundElements": [],
|
|
2383
|
+
"updated": 1764190763204,
|
|
2384
|
+
"link": null,
|
|
2385
|
+
"containerId": null,
|
|
2386
|
+
"originalText": "Implementation (Required)",
|
|
2387
|
+
"autoResize": true,
|
|
2388
|
+
"lineHeight": 1.25
|
|
2389
|
+
},
|
|
2390
|
+
{
|
|
2391
|
+
"id": "proc-sprint-planning",
|
|
2392
|
+
"type": "rectangle",
|
|
2393
|
+
"x": 1166.1946812371566,
|
|
2394
|
+
"y": 276.1576920193427,
|
|
2395
|
+
"width": 160,
|
|
2396
|
+
"height": 80,
|
|
2397
|
+
"angle": 0,
|
|
2398
|
+
"strokeColor": "#1e88e5",
|
|
2399
|
+
"backgroundColor": "#bbdefb",
|
|
2400
|
+
"fillStyle": "solid",
|
|
2401
|
+
"strokeWidth": 2,
|
|
2402
|
+
"roughness": 0,
|
|
2403
|
+
"opacity": 100,
|
|
2404
|
+
"roundness": {
|
|
2405
|
+
"type": 3,
|
|
2406
|
+
"value": 8
|
|
2407
|
+
},
|
|
2408
|
+
"groupIds": [
|
|
2409
|
+
"proc-sprint-planning-group"
|
|
2410
|
+
],
|
|
2411
|
+
"boundElements": [
|
|
2412
|
+
{
|
|
2413
|
+
"type": "text",
|
|
2414
|
+
"id": "proc-sprint-planning-text"
|
|
2415
|
+
},
|
|
2416
|
+
{
|
|
2417
|
+
"type": "arrow",
|
|
2418
|
+
"id": "arrow-phase3-to-phase4"
|
|
2419
|
+
},
|
|
2420
|
+
{
|
|
2421
|
+
"id": "arrow-validate-epic-story",
|
|
2422
|
+
"type": "arrow"
|
|
2423
|
+
}
|
|
2424
|
+
],
|
|
2425
|
+
"locked": false,
|
|
2426
|
+
"version": 379,
|
|
2427
|
+
"versionNonce": 2085876390,
|
|
2428
|
+
"index": "av",
|
|
2429
|
+
"isDeleted": false,
|
|
2430
|
+
"strokeStyle": "solid",
|
|
2431
|
+
"seed": 1,
|
|
2432
|
+
"frameId": null,
|
|
2433
|
+
"updated": 1764190763204,
|
|
2434
|
+
"link": null
|
|
2435
|
+
},
|
|
2436
|
+
{
|
|
2437
|
+
"id": "proc-sprint-planning-text",
|
|
2438
|
+
"type": "text",
|
|
2439
|
+
"x": 1176.1946812371566,
|
|
2440
|
+
"y": 304.1576920193427,
|
|
2441
|
+
"width": 140,
|
|
2442
|
+
"height": 25,
|
|
2443
|
+
"angle": 0,
|
|
2444
|
+
"strokeColor": "#1e1e1e",
|
|
2445
|
+
"backgroundColor": "transparent",
|
|
2446
|
+
"fillStyle": "solid",
|
|
2447
|
+
"strokeWidth": 2,
|
|
2448
|
+
"roughness": 0,
|
|
2449
|
+
"opacity": 100,
|
|
2450
|
+
"groupIds": [
|
|
2451
|
+
"proc-sprint-planning-group"
|
|
2452
|
+
],
|
|
2453
|
+
"fontSize": 20,
|
|
2454
|
+
"fontFamily": 1,
|
|
2455
|
+
"text": "Sprint Plan",
|
|
2456
|
+
"textAlign": "center",
|
|
2457
|
+
"verticalAlign": "middle",
|
|
2458
|
+
"containerId": "proc-sprint-planning",
|
|
2459
|
+
"locked": false,
|
|
2460
|
+
"version": 377,
|
|
2461
|
+
"versionNonce": 2143989222,
|
|
2462
|
+
"index": "aw",
|
|
2463
|
+
"isDeleted": false,
|
|
2464
|
+
"strokeStyle": "solid",
|
|
2465
|
+
"seed": 1,
|
|
2466
|
+
"frameId": null,
|
|
2467
|
+
"roundness": null,
|
|
2468
|
+
"boundElements": [],
|
|
2469
|
+
"updated": 1764190763204,
|
|
2470
|
+
"link": null,
|
|
2471
|
+
"originalText": "Sprint Plan",
|
|
2472
|
+
"autoResize": true,
|
|
2473
|
+
"lineHeight": 1.25
|
|
2474
|
+
},
|
|
2475
|
+
{
|
|
2476
|
+
"id": "label-story-loop",
|
|
2477
|
+
"type": "text",
|
|
2478
|
+
"x": 1176.2977877917795,
|
|
2479
|
+
"y": 441.904906795244,
|
|
2480
|
+
"width": 130.87991333007812,
|
|
2481
|
+
"height": 25,
|
|
2482
|
+
"angle": 0,
|
|
2483
|
+
"strokeColor": "#e65100",
|
|
2484
|
+
"backgroundColor": "transparent",
|
|
2485
|
+
"fillStyle": "solid",
|
|
2486
|
+
"strokeWidth": 2,
|
|
2487
|
+
"roughness": 0,
|
|
2488
|
+
"opacity": 100,
|
|
2489
|
+
"groupIds": [],
|
|
2490
|
+
"fontSize": 20,
|
|
2491
|
+
"fontFamily": 1,
|
|
2492
|
+
"text": "STORY LOOP",
|
|
2493
|
+
"textAlign": "left",
|
|
2494
|
+
"verticalAlign": "top",
|
|
2495
|
+
"locked": false,
|
|
2496
|
+
"version": 603,
|
|
2497
|
+
"versionNonce": 40529830,
|
|
2498
|
+
"index": "b04",
|
|
2499
|
+
"isDeleted": false,
|
|
2500
|
+
"strokeStyle": "solid",
|
|
2501
|
+
"seed": 1,
|
|
2502
|
+
"frameId": null,
|
|
2503
|
+
"roundness": null,
|
|
2504
|
+
"boundElements": [],
|
|
2505
|
+
"updated": 1764190763204,
|
|
2506
|
+
"link": null,
|
|
2507
|
+
"containerId": null,
|
|
2508
|
+
"originalText": "STORY LOOP",
|
|
2509
|
+
"autoResize": true,
|
|
2510
|
+
"lineHeight": 1.25
|
|
2511
|
+
},
|
|
2512
|
+
{
|
|
2513
|
+
"id": "arrow-validate-epic-story",
|
|
2514
|
+
"type": "arrow",
|
|
2515
|
+
"x": 1249.6597155437828,
|
|
2516
|
+
"y": 357.36880197268204,
|
|
2517
|
+
"width": 2.9293448190794606,
|
|
2518
|
+
"height": 208.61271744725804,
|
|
2519
|
+
"angle": 0,
|
|
2520
|
+
"strokeColor": "#1976d2",
|
|
2521
|
+
"backgroundColor": "transparent",
|
|
2522
|
+
"fillStyle": "solid",
|
|
2523
|
+
"strokeWidth": 2,
|
|
2524
|
+
"roughness": 0,
|
|
2525
|
+
"opacity": 100,
|
|
2526
|
+
"groupIds": [],
|
|
2527
|
+
"startBinding": {
|
|
2528
|
+
"elementId": "proc-sprint-planning",
|
|
2529
|
+
"focus": -0.050194107916528306,
|
|
2530
|
+
"gap": 1.21110995333936
|
|
2531
|
+
},
|
|
2532
|
+
"endBinding": {
|
|
2533
|
+
"elementId": "proc-create-story",
|
|
2534
|
+
"focus": -0.004614835874420464,
|
|
2535
|
+
"gap": 1
|
|
2536
|
+
},
|
|
2537
|
+
"points": [
|
|
2538
|
+
[
|
|
2539
|
+
0,
|
|
2540
|
+
0
|
|
2541
|
+
],
|
|
2542
|
+
[
|
|
2543
|
+
-2.9293448190794606,
|
|
2544
|
+
208.61271744725804
|
|
2545
|
+
]
|
|
2546
|
+
],
|
|
2547
|
+
"lastCommittedPoint": null,
|
|
2548
|
+
"version": 951,
|
|
2549
|
+
"versionNonce": 1394233274,
|
|
2550
|
+
"index": "b05",
|
|
2551
|
+
"isDeleted": false,
|
|
2552
|
+
"strokeStyle": "solid",
|
|
2553
|
+
"seed": 1,
|
|
2554
|
+
"frameId": null,
|
|
2555
|
+
"roundness": null,
|
|
2556
|
+
"boundElements": [],
|
|
2557
|
+
"updated": 1764190763619,
|
|
2558
|
+
"link": null,
|
|
2559
|
+
"locked": false,
|
|
2560
|
+
"startArrowhead": null,
|
|
2561
|
+
"endArrowhead": "arrow"
|
|
2562
|
+
},
|
|
2563
|
+
{
|
|
2564
|
+
"id": "proc-create-story",
|
|
2565
|
+
"type": "rectangle",
|
|
2566
|
+
"x": 1166.5341271166512,
|
|
2567
|
+
"y": 566.4331335811917,
|
|
2568
|
+
"width": 160,
|
|
2569
|
+
"height": 80,
|
|
2570
|
+
"angle": 0,
|
|
2571
|
+
"strokeColor": "#1e88e5",
|
|
2572
|
+
"backgroundColor": "#bbdefb",
|
|
2573
|
+
"fillStyle": "solid",
|
|
2574
|
+
"strokeWidth": 2,
|
|
2575
|
+
"roughness": 0,
|
|
2576
|
+
"opacity": 100,
|
|
2577
|
+
"roundness": {
|
|
2578
|
+
"type": 3,
|
|
2579
|
+
"value": 8
|
|
2580
|
+
},
|
|
2581
|
+
"groupIds": [
|
|
2582
|
+
"proc-create-story-group"
|
|
2583
|
+
],
|
|
2584
|
+
"boundElements": [
|
|
2585
|
+
{
|
|
2586
|
+
"type": "text",
|
|
2587
|
+
"id": "proc-create-story-text"
|
|
2588
|
+
},
|
|
2589
|
+
{
|
|
2590
|
+
"type": "arrow",
|
|
2591
|
+
"id": "arrow-validate-epic-story"
|
|
2592
|
+
},
|
|
2593
|
+
{
|
|
2594
|
+
"type": "arrow",
|
|
2595
|
+
"id": "arrow-create-validate-story"
|
|
2596
|
+
},
|
|
2597
|
+
{
|
|
2598
|
+
"type": "arrow",
|
|
2599
|
+
"id": "arrow-more-stories-yes"
|
|
2600
|
+
}
|
|
2601
|
+
],
|
|
2602
|
+
"locked": false,
|
|
2603
|
+
"version": 282,
|
|
2604
|
+
"versionNonce": 966999590,
|
|
2605
|
+
"index": "b06",
|
|
2606
|
+
"isDeleted": false,
|
|
2607
|
+
"strokeStyle": "solid",
|
|
2608
|
+
"seed": 1,
|
|
2609
|
+
"frameId": null,
|
|
2610
|
+
"updated": 1764190763204,
|
|
2611
|
+
"link": null
|
|
2612
|
+
},
|
|
2613
|
+
{
|
|
2614
|
+
"id": "proc-create-story-text",
|
|
2615
|
+
"type": "text",
|
|
2616
|
+
"x": 1176.5341271166512,
|
|
2617
|
+
"y": 594.4331335811917,
|
|
2618
|
+
"width": 140,
|
|
2619
|
+
"height": 25,
|
|
2620
|
+
"angle": 0,
|
|
2621
|
+
"strokeColor": "#1e1e1e",
|
|
2622
|
+
"backgroundColor": "transparent",
|
|
2623
|
+
"fillStyle": "solid",
|
|
2624
|
+
"strokeWidth": 2,
|
|
2625
|
+
"roughness": 0,
|
|
2626
|
+
"opacity": 100,
|
|
2627
|
+
"groupIds": [
|
|
2628
|
+
"proc-create-story-group"
|
|
2629
|
+
],
|
|
2630
|
+
"fontSize": 20,
|
|
2631
|
+
"fontFamily": 1,
|
|
2632
|
+
"text": "Create Story",
|
|
2633
|
+
"textAlign": "center",
|
|
2634
|
+
"verticalAlign": "middle",
|
|
2635
|
+
"containerId": "proc-create-story",
|
|
2636
|
+
"locked": false,
|
|
2637
|
+
"version": 282,
|
|
2638
|
+
"versionNonce": 2082769254,
|
|
2639
|
+
"index": "b07",
|
|
2640
|
+
"isDeleted": false,
|
|
2641
|
+
"strokeStyle": "solid",
|
|
2642
|
+
"seed": 1,
|
|
2643
|
+
"frameId": null,
|
|
2644
|
+
"roundness": null,
|
|
2645
|
+
"boundElements": [],
|
|
2646
|
+
"updated": 1764190763204,
|
|
2647
|
+
"link": null,
|
|
2648
|
+
"originalText": "Create Story",
|
|
2649
|
+
"autoResize": true,
|
|
2650
|
+
"lineHeight": 1.25
|
|
2651
|
+
},
|
|
2652
|
+
{
|
|
2653
|
+
"id": "arrow-create-validate-story",
|
|
2654
|
+
"type": "arrow",
|
|
2655
|
+
"x": 1246.5341271166512,
|
|
2656
|
+
"y": 646.4331335811917,
|
|
2657
|
+
"width": 0,
|
|
2658
|
+
"height": 30,
|
|
2659
|
+
"angle": 0,
|
|
2660
|
+
"strokeColor": "#1976d2",
|
|
2661
|
+
"backgroundColor": "transparent",
|
|
2662
|
+
"fillStyle": "solid",
|
|
2663
|
+
"strokeWidth": 2,
|
|
2664
|
+
"roughness": 0,
|
|
2665
|
+
"opacity": 100,
|
|
2666
|
+
"groupIds": [],
|
|
2667
|
+
"startBinding": {
|
|
2668
|
+
"elementId": "proc-create-story",
|
|
2669
|
+
"focus": 0,
|
|
2670
|
+
"gap": 1
|
|
2671
|
+
},
|
|
2672
|
+
"endBinding": {
|
|
2673
|
+
"elementId": "proc-validate-story",
|
|
2674
|
+
"focus": 0,
|
|
2675
|
+
"gap": 1
|
|
2676
|
+
},
|
|
2677
|
+
"points": [
|
|
2678
|
+
[
|
|
2679
|
+
0,
|
|
2680
|
+
0
|
|
2681
|
+
],
|
|
2682
|
+
[
|
|
2683
|
+
0,
|
|
2684
|
+
30
|
|
2685
|
+
]
|
|
2686
|
+
],
|
|
2687
|
+
"lastCommittedPoint": null,
|
|
2688
|
+
"version": 848,
|
|
2689
|
+
"versionNonce": 1820404026,
|
|
2690
|
+
"index": "b08",
|
|
2691
|
+
"isDeleted": false,
|
|
2692
|
+
"strokeStyle": "solid",
|
|
2693
|
+
"seed": 1,
|
|
2694
|
+
"frameId": null,
|
|
2695
|
+
"roundness": null,
|
|
2696
|
+
"boundElements": [],
|
|
2697
|
+
"updated": 1764190763619,
|
|
2698
|
+
"link": null,
|
|
2699
|
+
"locked": false,
|
|
2700
|
+
"startArrowhead": null,
|
|
2701
|
+
"endArrowhead": "arrow"
|
|
2702
|
+
},
|
|
2703
|
+
{
|
|
2704
|
+
"id": "proc-validate-story",
|
|
2705
|
+
"type": "rectangle",
|
|
2706
|
+
"x": 1166.5341271166512,
|
|
2707
|
+
"y": 676.4331335811917,
|
|
2708
|
+
"width": 160,
|
|
2709
|
+
"height": 80,
|
|
2710
|
+
"angle": 0,
|
|
2711
|
+
"strokeColor": "#1e88e5",
|
|
2712
|
+
"backgroundColor": "#bbdefb",
|
|
2713
|
+
"fillStyle": "solid",
|
|
2714
|
+
"strokeWidth": 2,
|
|
2715
|
+
"roughness": 0,
|
|
2716
|
+
"opacity": 100,
|
|
2717
|
+
"roundness": {
|
|
2718
|
+
"type": 3,
|
|
2719
|
+
"value": 8
|
|
2720
|
+
},
|
|
2721
|
+
"groupIds": [
|
|
2722
|
+
"proc-validate-story-group"
|
|
2723
|
+
],
|
|
2724
|
+
"boundElements": [
|
|
2725
|
+
{
|
|
2726
|
+
"type": "text",
|
|
2727
|
+
"id": "proc-validate-story-text"
|
|
2728
|
+
},
|
|
2729
|
+
{
|
|
2730
|
+
"type": "arrow",
|
|
2731
|
+
"id": "arrow-create-validate-story"
|
|
2732
|
+
},
|
|
2733
|
+
{
|
|
2734
|
+
"type": "arrow",
|
|
2735
|
+
"id": "arrow-validate-story-decision"
|
|
2736
|
+
}
|
|
2737
|
+
],
|
|
2738
|
+
"locked": false,
|
|
2739
|
+
"version": 282,
|
|
2740
|
+
"versionNonce": 282699366,
|
|
2741
|
+
"index": "b09",
|
|
2742
|
+
"isDeleted": false,
|
|
2743
|
+
"strokeStyle": "solid",
|
|
2744
|
+
"seed": 1,
|
|
2745
|
+
"frameId": null,
|
|
2746
|
+
"updated": 1764190763204,
|
|
2747
|
+
"link": null
|
|
2748
|
+
},
|
|
2749
|
+
{
|
|
2750
|
+
"id": "proc-validate-story-text",
|
|
2751
|
+
"type": "text",
|
|
2752
|
+
"x": 1176.5341271166512,
|
|
2753
|
+
"y": 691.4331335811917,
|
|
2754
|
+
"width": 140,
|
|
2755
|
+
"height": 50,
|
|
2756
|
+
"angle": 0,
|
|
2757
|
+
"strokeColor": "#1e1e1e",
|
|
2758
|
+
"backgroundColor": "transparent",
|
|
2759
|
+
"fillStyle": "solid",
|
|
2760
|
+
"strokeWidth": 2,
|
|
2761
|
+
"roughness": 0,
|
|
2762
|
+
"opacity": 100,
|
|
2763
|
+
"groupIds": [
|
|
2764
|
+
"proc-validate-story-group"
|
|
2765
|
+
],
|
|
2766
|
+
"fontSize": 14,
|
|
2767
|
+
"fontFamily": 1,
|
|
2768
|
+
"text": "Validate Story\n<<optional>>",
|
|
2769
|
+
"textAlign": "center",
|
|
2770
|
+
"verticalAlign": "middle",
|
|
2771
|
+
"containerId": "proc-validate-story",
|
|
2772
|
+
"locked": false,
|
|
2773
|
+
"version": 282,
|
|
2774
|
+
"versionNonce": 686025126,
|
|
2775
|
+
"index": "b0A",
|
|
2776
|
+
"isDeleted": false,
|
|
2777
|
+
"strokeStyle": "solid",
|
|
2778
|
+
"seed": 1,
|
|
2779
|
+
"frameId": null,
|
|
2780
|
+
"roundness": null,
|
|
2781
|
+
"boundElements": [],
|
|
2782
|
+
"updated": 1764190763204,
|
|
2783
|
+
"link": null,
|
|
2784
|
+
"originalText": "Validate Story\n<<optional>>",
|
|
2785
|
+
"autoResize": true,
|
|
2786
|
+
"lineHeight": 1.7857142857142858
|
|
2787
|
+
},
|
|
2788
|
+
{
|
|
2789
|
+
"id": "arrow-validate-story-decision",
|
|
2790
|
+
"type": "arrow",
|
|
2791
|
+
"x": 1246.5341271166512,
|
|
2792
|
+
"y": 756.4331335811917,
|
|
2793
|
+
"width": 0,
|
|
2794
|
+
"height": 30,
|
|
2795
|
+
"angle": 0,
|
|
2796
|
+
"strokeColor": "#1976d2",
|
|
2797
|
+
"backgroundColor": "transparent",
|
|
2798
|
+
"fillStyle": "solid",
|
|
2799
|
+
"strokeWidth": 2,
|
|
2800
|
+
"roughness": 0,
|
|
2801
|
+
"opacity": 100,
|
|
2802
|
+
"groupIds": [],
|
|
2803
|
+
"startBinding": {
|
|
2804
|
+
"elementId": "proc-validate-story",
|
|
2805
|
+
"focus": 0,
|
|
2806
|
+
"gap": 1
|
|
2807
|
+
},
|
|
2808
|
+
"endBinding": null,
|
|
2809
|
+
"points": [
|
|
2810
|
+
[
|
|
2811
|
+
0,
|
|
2812
|
+
0
|
|
2813
|
+
],
|
|
2814
|
+
[
|
|
2815
|
+
0,
|
|
2816
|
+
30
|
|
2817
|
+
]
|
|
2818
|
+
],
|
|
2819
|
+
"lastCommittedPoint": null,
|
|
2820
|
+
"version": 566,
|
|
2821
|
+
"versionNonce": 1807479290,
|
|
2822
|
+
"index": "b0B",
|
|
2823
|
+
"isDeleted": false,
|
|
2824
|
+
"strokeStyle": "solid",
|
|
2825
|
+
"seed": 1,
|
|
2826
|
+
"frameId": null,
|
|
2827
|
+
"roundness": null,
|
|
2828
|
+
"boundElements": [],
|
|
2829
|
+
"updated": 1764190763619,
|
|
2830
|
+
"link": null,
|
|
2831
|
+
"locked": false,
|
|
2832
|
+
"startArrowhead": null,
|
|
2833
|
+
"endArrowhead": "arrow"
|
|
2834
|
+
},
|
|
2835
|
+
{
|
|
2836
|
+
"id": "proc-dev-story",
|
|
2837
|
+
"type": "rectangle",
|
|
2838
|
+
"x": 1164.0395418694,
|
|
2839
|
+
"y": 788.7867016847945,
|
|
2840
|
+
"width": 160,
|
|
2841
|
+
"height": 80,
|
|
2842
|
+
"angle": 0,
|
|
2843
|
+
"strokeColor": "#3f51b5",
|
|
2844
|
+
"backgroundColor": "#c5cae9",
|
|
2845
|
+
"fillStyle": "solid",
|
|
2846
|
+
"strokeWidth": 2,
|
|
2847
|
+
"roughness": 0,
|
|
2848
|
+
"opacity": 100,
|
|
2849
|
+
"roundness": {
|
|
2850
|
+
"type": 3,
|
|
2851
|
+
"value": 8
|
|
2852
|
+
},
|
|
2853
|
+
"groupIds": [
|
|
2854
|
+
"proc-dev-story-group"
|
|
2855
|
+
],
|
|
2856
|
+
"boundElements": [
|
|
2857
|
+
{
|
|
2858
|
+
"type": "text",
|
|
2859
|
+
"id": "proc-dev-story-text"
|
|
2860
|
+
},
|
|
2861
|
+
{
|
|
2862
|
+
"type": "arrow",
|
|
2863
|
+
"id": "arrow-dev-review"
|
|
2864
|
+
}
|
|
2865
|
+
],
|
|
2866
|
+
"locked": false,
|
|
2867
|
+
"version": 367,
|
|
2868
|
+
"versionNonce": 935782054,
|
|
2869
|
+
"index": "b0R",
|
|
2870
|
+
"isDeleted": false,
|
|
2871
|
+
"strokeStyle": "solid",
|
|
2872
|
+
"seed": 1,
|
|
2873
|
+
"frameId": null,
|
|
2874
|
+
"updated": 1764190763204,
|
|
2875
|
+
"link": null
|
|
2876
|
+
},
|
|
2877
|
+
{
|
|
2878
|
+
"id": "proc-dev-story-text",
|
|
2879
|
+
"type": "text",
|
|
2880
|
+
"x": 1174.0395418694,
|
|
2881
|
+
"y": 816.7867016847945,
|
|
2882
|
+
"width": 140,
|
|
2883
|
+
"height": 25,
|
|
2884
|
+
"angle": 0,
|
|
2885
|
+
"strokeColor": "#1e1e1e",
|
|
2886
|
+
"backgroundColor": "transparent",
|
|
2887
|
+
"fillStyle": "solid",
|
|
2888
|
+
"strokeWidth": 2,
|
|
2889
|
+
"roughness": 0,
|
|
2890
|
+
"opacity": 100,
|
|
2891
|
+
"groupIds": [
|
|
2892
|
+
"proc-dev-story-group"
|
|
2893
|
+
],
|
|
2894
|
+
"fontSize": 20,
|
|
2895
|
+
"fontFamily": 1,
|
|
2896
|
+
"text": "Develop Story",
|
|
2897
|
+
"textAlign": "center",
|
|
2898
|
+
"verticalAlign": "middle",
|
|
2899
|
+
"containerId": "proc-dev-story",
|
|
2900
|
+
"locked": false,
|
|
2901
|
+
"version": 364,
|
|
2902
|
+
"versionNonce": 952050150,
|
|
2903
|
+
"index": "b0S",
|
|
2904
|
+
"isDeleted": false,
|
|
2905
|
+
"strokeStyle": "solid",
|
|
2906
|
+
"seed": 1,
|
|
2907
|
+
"frameId": null,
|
|
2908
|
+
"roundness": null,
|
|
2909
|
+
"boundElements": [],
|
|
2910
|
+
"updated": 1764190763204,
|
|
2911
|
+
"link": null,
|
|
2912
|
+
"originalText": "Develop Story",
|
|
2913
|
+
"autoResize": true,
|
|
2914
|
+
"lineHeight": 1.25
|
|
2915
|
+
},
|
|
2916
|
+
{
|
|
2917
|
+
"id": "arrow-dev-review",
|
|
2918
|
+
"type": "arrow",
|
|
2919
|
+
"x": 1244.2149450712877,
|
|
2920
|
+
"y": 869.2383158460461,
|
|
2921
|
+
"width": 5.032331195699953,
|
|
2922
|
+
"height": 76.6679634046609,
|
|
2923
|
+
"angle": 0,
|
|
2924
|
+
"strokeColor": "#1976d2",
|
|
2925
|
+
"backgroundColor": "transparent",
|
|
2926
|
+
"fillStyle": "solid",
|
|
2927
|
+
"strokeWidth": 2,
|
|
2928
|
+
"roughness": 0,
|
|
2929
|
+
"opacity": 100,
|
|
2930
|
+
"groupIds": [],
|
|
2931
|
+
"startBinding": {
|
|
2932
|
+
"elementId": "proc-dev-story",
|
|
2933
|
+
"focus": 0.030012029555609845,
|
|
2934
|
+
"gap": 1
|
|
2935
|
+
},
|
|
2936
|
+
"endBinding": {
|
|
2937
|
+
"elementId": "proc-code-review",
|
|
2938
|
+
"focus": 0.04241833499478815,
|
|
2939
|
+
"gap": 1.3466869862454587
|
|
2940
|
+
},
|
|
2941
|
+
"points": [
|
|
2942
|
+
[
|
|
2943
|
+
0,
|
|
2944
|
+
0
|
|
2945
|
+
],
|
|
2946
|
+
[
|
|
2947
|
+
5.032331195699953,
|
|
2948
|
+
76.6679634046609
|
|
2949
|
+
]
|
|
2950
|
+
],
|
|
2951
|
+
"lastCommittedPoint": null,
|
|
2952
|
+
"version": 1191,
|
|
2953
|
+
"versionNonce": 2052012922,
|
|
2954
|
+
"index": "b0T",
|
|
2955
|
+
"isDeleted": false,
|
|
2956
|
+
"strokeStyle": "solid",
|
|
2957
|
+
"seed": 1,
|
|
2958
|
+
"frameId": null,
|
|
2959
|
+
"roundness": null,
|
|
2960
|
+
"boundElements": [],
|
|
2961
|
+
"updated": 1764190763619,
|
|
2962
|
+
"link": null,
|
|
2963
|
+
"locked": false,
|
|
2964
|
+
"startArrowhead": null,
|
|
2965
|
+
"endArrowhead": "arrow"
|
|
2966
|
+
},
|
|
2967
|
+
{
|
|
2968
|
+
"id": "decision-code-review",
|
|
2969
|
+
"type": "diamond",
|
|
2970
|
+
"x": 1156.5341271166512,
|
|
2971
|
+
"y": 1156.4331335811917,
|
|
2972
|
+
"width": 180,
|
|
2973
|
+
"height": 120,
|
|
2974
|
+
"angle": 0,
|
|
2975
|
+
"strokeColor": "#f57c00",
|
|
2976
|
+
"backgroundColor": "#fff3e0",
|
|
2977
|
+
"fillStyle": "solid",
|
|
2978
|
+
"strokeWidth": 2,
|
|
2979
|
+
"roughness": 0,
|
|
2980
|
+
"opacity": 100,
|
|
2981
|
+
"groupIds": [
|
|
2982
|
+
"decision-code-review-group"
|
|
2983
|
+
],
|
|
2984
|
+
"boundElements": [
|
|
2985
|
+
{
|
|
2986
|
+
"type": "text",
|
|
2987
|
+
"id": "decision-code-review-text"
|
|
2988
|
+
},
|
|
2989
|
+
{
|
|
2990
|
+
"type": "arrow",
|
|
2991
|
+
"id": "arrow-dev-review"
|
|
2992
|
+
},
|
|
2993
|
+
{
|
|
2994
|
+
"type": "arrow",
|
|
2995
|
+
"id": "arrow-review-fail"
|
|
2996
|
+
},
|
|
2997
|
+
{
|
|
2998
|
+
"id": "arrow-done-more-stories",
|
|
2999
|
+
"type": "arrow"
|
|
3000
|
+
},
|
|
3001
|
+
{
|
|
3002
|
+
"id": "4chQ7PksRKpPe5YX-TfFJ",
|
|
3003
|
+
"type": "arrow"
|
|
3004
|
+
}
|
|
3005
|
+
],
|
|
3006
|
+
"locked": false,
|
|
3007
|
+
"version": 285,
|
|
3008
|
+
"versionNonce": 46359462,
|
|
3009
|
+
"index": "b0U",
|
|
3010
|
+
"isDeleted": false,
|
|
3011
|
+
"strokeStyle": "solid",
|
|
3012
|
+
"seed": 1,
|
|
3013
|
+
"frameId": null,
|
|
3014
|
+
"roundness": null,
|
|
3015
|
+
"updated": 1764190763204,
|
|
3016
|
+
"link": null
|
|
3017
|
+
},
|
|
3018
|
+
{
|
|
3019
|
+
"id": "decision-code-review-text",
|
|
3020
|
+
"type": "text",
|
|
3021
|
+
"x": 1171.5341271166512,
|
|
3022
|
+
"y": 1191.4331335811917,
|
|
3023
|
+
"width": 150,
|
|
3024
|
+
"height": 50,
|
|
3025
|
+
"angle": 0,
|
|
3026
|
+
"strokeColor": "#1e1e1e",
|
|
3027
|
+
"backgroundColor": "transparent",
|
|
3028
|
+
"fillStyle": "solid",
|
|
3029
|
+
"strokeWidth": 2,
|
|
3030
|
+
"roughness": 0,
|
|
3031
|
+
"opacity": 100,
|
|
3032
|
+
"groupIds": [
|
|
3033
|
+
"decision-code-review-group"
|
|
3034
|
+
],
|
|
3035
|
+
"fontSize": 16,
|
|
3036
|
+
"fontFamily": 1,
|
|
3037
|
+
"text": "Code Review\nPass?",
|
|
3038
|
+
"textAlign": "center",
|
|
3039
|
+
"verticalAlign": "middle",
|
|
3040
|
+
"containerId": "decision-code-review",
|
|
3041
|
+
"locked": false,
|
|
3042
|
+
"version": 282,
|
|
3043
|
+
"versionNonce": 1227095782,
|
|
3044
|
+
"index": "b0V",
|
|
3045
|
+
"isDeleted": false,
|
|
3046
|
+
"strokeStyle": "solid",
|
|
3047
|
+
"seed": 1,
|
|
3048
|
+
"frameId": null,
|
|
3049
|
+
"roundness": null,
|
|
3050
|
+
"boundElements": [],
|
|
3051
|
+
"updated": 1764190763204,
|
|
3052
|
+
"link": null,
|
|
3053
|
+
"originalText": "Code Review\nPass?",
|
|
3054
|
+
"autoResize": true,
|
|
3055
|
+
"lineHeight": 1.5625
|
|
3056
|
+
},
|
|
3057
|
+
{
|
|
3058
|
+
"id": "arrow-review-fail",
|
|
3059
|
+
"type": "arrow",
|
|
3060
|
+
"x": 1151.5341271166512,
|
|
3061
|
+
"y": 1216.3331335811918,
|
|
3062
|
+
"width": 42.50541475274872,
|
|
3063
|
+
"height": 387.6464318963972,
|
|
3064
|
+
"angle": 0,
|
|
3065
|
+
"strokeColor": "#1976d2",
|
|
3066
|
+
"backgroundColor": "transparent",
|
|
3067
|
+
"fillStyle": "solid",
|
|
3068
|
+
"strokeWidth": 2,
|
|
3069
|
+
"roughness": 0,
|
|
3070
|
+
"opacity": 100,
|
|
3071
|
+
"groupIds": [],
|
|
3072
|
+
"startBinding": null,
|
|
3073
|
+
"endBinding": null,
|
|
3074
|
+
"points": [
|
|
3075
|
+
[
|
|
3076
|
+
0,
|
|
3077
|
+
0
|
|
3078
|
+
],
|
|
3079
|
+
[
|
|
3080
|
+
-35,
|
|
3081
|
+
0
|
|
3082
|
+
],
|
|
3083
|
+
[
|
|
3084
|
+
-35,
|
|
3085
|
+
-387.6464318963972
|
|
3086
|
+
],
|
|
3087
|
+
[
|
|
3088
|
+
7.50541475274872,
|
|
3089
|
+
-387.6464318963972
|
|
3090
|
+
]
|
|
3091
|
+
],
|
|
3092
|
+
"lastCommittedPoint": null,
|
|
3093
|
+
"elbowed": true,
|
|
3094
|
+
"version": 319,
|
|
3095
|
+
"versionNonce": 405929318,
|
|
3096
|
+
"index": "b0W",
|
|
3097
|
+
"isDeleted": false,
|
|
3098
|
+
"strokeStyle": "solid",
|
|
3099
|
+
"seed": 1,
|
|
3100
|
+
"frameId": null,
|
|
3101
|
+
"roundness": null,
|
|
3102
|
+
"boundElements": [],
|
|
3103
|
+
"updated": 1764190763204,
|
|
3104
|
+
"link": null,
|
|
3105
|
+
"locked": false,
|
|
3106
|
+
"startArrowhead": null,
|
|
3107
|
+
"endArrowhead": "arrow",
|
|
3108
|
+
"fixedSegments": null,
|
|
3109
|
+
"startIsSpecial": null,
|
|
3110
|
+
"endIsSpecial": null
|
|
3111
|
+
},
|
|
3112
|
+
{
|
|
3113
|
+
"id": "label-fail",
|
|
3114
|
+
"type": "text",
|
|
3115
|
+
"x": 1065.6231186673836,
|
|
3116
|
+
"y": 1185.462969542075,
|
|
3117
|
+
"width": 35,
|
|
3118
|
+
"height": 20,
|
|
3119
|
+
"angle": 0,
|
|
3120
|
+
"strokeColor": "#d32f2f",
|
|
3121
|
+
"backgroundColor": "transparent",
|
|
3122
|
+
"fillStyle": "solid",
|
|
3123
|
+
"strokeWidth": 2,
|
|
3124
|
+
"roughness": 0,
|
|
3125
|
+
"opacity": 100,
|
|
3126
|
+
"groupIds": [],
|
|
3127
|
+
"fontSize": 16,
|
|
3128
|
+
"fontFamily": 1,
|
|
3129
|
+
"text": "Fail",
|
|
3130
|
+
"textAlign": "left",
|
|
3131
|
+
"verticalAlign": "top",
|
|
3132
|
+
"locked": false,
|
|
3133
|
+
"version": 316,
|
|
3134
|
+
"versionNonce": 1897488550,
|
|
3135
|
+
"index": "b0Y",
|
|
3136
|
+
"isDeleted": false,
|
|
3137
|
+
"strokeStyle": "solid",
|
|
3138
|
+
"seed": 1,
|
|
3139
|
+
"frameId": null,
|
|
3140
|
+
"roundness": null,
|
|
3141
|
+
"boundElements": [],
|
|
3142
|
+
"updated": 1764190763204,
|
|
3143
|
+
"link": null,
|
|
3144
|
+
"containerId": null,
|
|
3145
|
+
"originalText": "Fail",
|
|
3146
|
+
"autoResize": true,
|
|
3147
|
+
"lineHeight": 1.25
|
|
3148
|
+
},
|
|
3149
|
+
{
|
|
3150
|
+
"id": "label-pass",
|
|
3151
|
+
"type": "text",
|
|
3152
|
+
"x": 1229.6819134569105,
|
|
3153
|
+
"y": 1281.2421635916448,
|
|
3154
|
+
"width": 40,
|
|
3155
|
+
"height": 20,
|
|
3156
|
+
"angle": 0,
|
|
3157
|
+
"strokeColor": "#2e7d32",
|
|
3158
|
+
"backgroundColor": "transparent",
|
|
3159
|
+
"fillStyle": "solid",
|
|
3160
|
+
"strokeWidth": 2,
|
|
3161
|
+
"roughness": 0,
|
|
3162
|
+
"opacity": 100,
|
|
3163
|
+
"groupIds": [],
|
|
3164
|
+
"fontSize": 16,
|
|
3165
|
+
"fontFamily": 1,
|
|
3166
|
+
"text": "Pass",
|
|
3167
|
+
"textAlign": "left",
|
|
3168
|
+
"verticalAlign": "top",
|
|
3169
|
+
"locked": false,
|
|
3170
|
+
"version": 408,
|
|
3171
|
+
"versionNonce": 1437752294,
|
|
3172
|
+
"index": "b0a",
|
|
3173
|
+
"isDeleted": false,
|
|
3174
|
+
"strokeStyle": "solid",
|
|
3175
|
+
"seed": 1,
|
|
3176
|
+
"frameId": null,
|
|
3177
|
+
"roundness": null,
|
|
3178
|
+
"boundElements": [
|
|
3179
|
+
{
|
|
3180
|
+
"id": "4chQ7PksRKpPe5YX-TfFJ",
|
|
3181
|
+
"type": "arrow"
|
|
3182
|
+
}
|
|
3183
|
+
],
|
|
3184
|
+
"updated": 1764190763204,
|
|
3185
|
+
"link": null,
|
|
3186
|
+
"containerId": null,
|
|
3187
|
+
"originalText": "Pass",
|
|
3188
|
+
"autoResize": true,
|
|
3189
|
+
"lineHeight": 1.25
|
|
3190
|
+
},
|
|
3191
|
+
{
|
|
3192
|
+
"id": "proc-code-review",
|
|
3193
|
+
"type": "rectangle",
|
|
3194
|
+
"x": 1169.3991588878014,
|
|
3195
|
+
"y": 947.2529662369525,
|
|
3196
|
+
"width": 160,
|
|
3197
|
+
"height": 110,
|
|
3198
|
+
"angle": 0,
|
|
3199
|
+
"strokeColor": "#3f51b5",
|
|
3200
|
+
"backgroundColor": "#c5cae9",
|
|
3201
|
+
"fillStyle": "solid",
|
|
3202
|
+
"strokeWidth": 2,
|
|
3203
|
+
"roughness": 0,
|
|
3204
|
+
"opacity": 100,
|
|
3205
|
+
"roundness": {
|
|
3206
|
+
"type": 3,
|
|
3207
|
+
"value": 8
|
|
3208
|
+
},
|
|
3209
|
+
"groupIds": [
|
|
3210
|
+
"proc-code-review-group"
|
|
3211
|
+
],
|
|
3212
|
+
"boundElements": [
|
|
3213
|
+
{
|
|
3214
|
+
"type": "text",
|
|
3215
|
+
"id": "proc-code-review-text"
|
|
3216
|
+
},
|
|
3217
|
+
{
|
|
3218
|
+
"type": "arrow",
|
|
3219
|
+
"id": "arrow-done-more-stories"
|
|
3220
|
+
},
|
|
3221
|
+
{
|
|
3222
|
+
"id": "arrow-dev-review",
|
|
3223
|
+
"type": "arrow"
|
|
3224
|
+
}
|
|
3225
|
+
],
|
|
3226
|
+
"locked": false,
|
|
3227
|
+
"version": 453,
|
|
3228
|
+
"versionNonce": 277682790,
|
|
3229
|
+
"index": "b0b",
|
|
3230
|
+
"isDeleted": false,
|
|
3231
|
+
"strokeStyle": "solid",
|
|
3232
|
+
"seed": 1,
|
|
3233
|
+
"frameId": null,
|
|
3234
|
+
"updated": 1764190763204,
|
|
3235
|
+
"link": null
|
|
3236
|
+
},
|
|
3237
|
+
{
|
|
3238
|
+
"id": "proc-code-review-text",
|
|
3239
|
+
"type": "text",
|
|
3240
|
+
"x": 1187.9272045420983,
|
|
3241
|
+
"y": 972.2529662369525,
|
|
3242
|
+
"width": 122.94390869140625,
|
|
3243
|
+
"height": 60,
|
|
3244
|
+
"angle": 0,
|
|
3245
|
+
"strokeColor": "#1e1e1e",
|
|
3246
|
+
"backgroundColor": "transparent",
|
|
3247
|
+
"fillStyle": "solid",
|
|
3248
|
+
"strokeWidth": 2,
|
|
3249
|
+
"roughness": 0,
|
|
3250
|
+
"opacity": 100,
|
|
3251
|
+
"groupIds": [
|
|
3252
|
+
"proc-code-review-group"
|
|
3253
|
+
],
|
|
3254
|
+
"fontSize": 16,
|
|
3255
|
+
"fontFamily": 1,
|
|
3256
|
+
"text": "Code Review\n<<use different\nLLM>>",
|
|
3257
|
+
"textAlign": "center",
|
|
3258
|
+
"verticalAlign": "middle",
|
|
3259
|
+
"containerId": "proc-code-review",
|
|
3260
|
+
"locked": false,
|
|
3261
|
+
"version": 502,
|
|
3262
|
+
"versionNonce": 1242095014,
|
|
3263
|
+
"index": "b0c",
|
|
3264
|
+
"isDeleted": false,
|
|
3265
|
+
"strokeStyle": "solid",
|
|
3266
|
+
"seed": 1,
|
|
3267
|
+
"frameId": null,
|
|
3268
|
+
"roundness": null,
|
|
3269
|
+
"boundElements": [],
|
|
3270
|
+
"updated": 1764190763204,
|
|
3271
|
+
"link": null,
|
|
3272
|
+
"originalText": "Code Review\n<<use different LLM>>",
|
|
3273
|
+
"autoResize": true,
|
|
3274
|
+
"lineHeight": 1.25
|
|
3275
|
+
},
|
|
3276
|
+
{
|
|
3277
|
+
"id": "arrow-done-more-stories",
|
|
3278
|
+
"type": "arrow",
|
|
3279
|
+
"x": 1249.4681490735618,
|
|
3280
|
+
"y": 1065.5372616587838,
|
|
3281
|
+
"width": 1.7879398006109568,
|
|
3282
|
+
"height": 90.97426236326123,
|
|
3283
|
+
"angle": 0,
|
|
3284
|
+
"strokeColor": "#1976d2",
|
|
3285
|
+
"backgroundColor": "transparent",
|
|
3286
|
+
"fillStyle": "solid",
|
|
3287
|
+
"strokeWidth": 2,
|
|
3288
|
+
"roughness": 0,
|
|
3289
|
+
"opacity": 100,
|
|
3290
|
+
"groupIds": [],
|
|
3291
|
+
"startBinding": {
|
|
3292
|
+
"elementId": "proc-code-review",
|
|
3293
|
+
"focus": 0.014488632877232727,
|
|
3294
|
+
"gap": 8.284295421831303
|
|
3295
|
+
},
|
|
3296
|
+
"endBinding": {
|
|
3297
|
+
"elementId": "decision-code-review",
|
|
3298
|
+
"focus": 0.09832693417954867,
|
|
3299
|
+
"gap": 2.039543956918169
|
|
3300
|
+
},
|
|
3301
|
+
"points": [
|
|
3302
|
+
[
|
|
3303
|
+
0,
|
|
3304
|
+
0
|
|
3305
|
+
],
|
|
3306
|
+
[
|
|
3307
|
+
1.7879398006109568,
|
|
3308
|
+
90.97426236326123
|
|
3309
|
+
]
|
|
3310
|
+
],
|
|
3311
|
+
"lastCommittedPoint": null,
|
|
3312
|
+
"version": 1093,
|
|
3313
|
+
"versionNonce": 146679034,
|
|
3314
|
+
"index": "b0d",
|
|
3315
|
+
"isDeleted": false,
|
|
3316
|
+
"strokeStyle": "solid",
|
|
3317
|
+
"seed": 1,
|
|
3318
|
+
"frameId": null,
|
|
3319
|
+
"roundness": null,
|
|
3320
|
+
"boundElements": [],
|
|
3321
|
+
"updated": 1764190763619,
|
|
3322
|
+
"link": null,
|
|
3323
|
+
"locked": false,
|
|
3324
|
+
"startArrowhead": null,
|
|
3325
|
+
"endArrowhead": "arrow"
|
|
3326
|
+
},
|
|
3327
|
+
{
|
|
3328
|
+
"id": "decision-more-stories",
|
|
3329
|
+
"type": "diamond",
|
|
3330
|
+
"x": 1163.8719002449689,
|
|
3331
|
+
"y": 1363.600308336051,
|
|
3332
|
+
"width": 180,
|
|
3333
|
+
"height": 120,
|
|
3334
|
+
"angle": 0,
|
|
3335
|
+
"strokeColor": "#f57c00",
|
|
3336
|
+
"backgroundColor": "#fff3e0",
|
|
3337
|
+
"fillStyle": "solid",
|
|
3338
|
+
"strokeWidth": 2,
|
|
3339
|
+
"roughness": 0,
|
|
3340
|
+
"opacity": 100,
|
|
3341
|
+
"groupIds": [
|
|
3342
|
+
"decision-more-stories-group"
|
|
3343
|
+
],
|
|
3344
|
+
"boundElements": [
|
|
3345
|
+
{
|
|
3346
|
+
"type": "text",
|
|
3347
|
+
"id": "decision-more-stories-text"
|
|
3348
|
+
},
|
|
3349
|
+
{
|
|
3350
|
+
"type": "arrow",
|
|
3351
|
+
"id": "arrow-done-more-stories"
|
|
3352
|
+
},
|
|
3353
|
+
{
|
|
3354
|
+
"type": "arrow",
|
|
3355
|
+
"id": "arrow-more-stories-yes"
|
|
3356
|
+
},
|
|
3357
|
+
{
|
|
3358
|
+
"type": "arrow",
|
|
3359
|
+
"id": "arrow-more-stories-no"
|
|
3360
|
+
},
|
|
3361
|
+
{
|
|
3362
|
+
"id": "4chQ7PksRKpPe5YX-TfFJ",
|
|
3363
|
+
"type": "arrow"
|
|
3364
|
+
}
|
|
3365
|
+
],
|
|
3366
|
+
"locked": false,
|
|
3367
|
+
"version": 441,
|
|
3368
|
+
"versionNonce": 886168230,
|
|
3369
|
+
"index": "b0e",
|
|
3370
|
+
"isDeleted": false,
|
|
3371
|
+
"strokeStyle": "solid",
|
|
3372
|
+
"seed": 1,
|
|
3373
|
+
"frameId": null,
|
|
3374
|
+
"roundness": null,
|
|
3375
|
+
"updated": 1764190763204,
|
|
3376
|
+
"link": null
|
|
3377
|
+
},
|
|
3378
|
+
{
|
|
3379
|
+
"id": "decision-more-stories-text",
|
|
3380
|
+
"type": "text",
|
|
3381
|
+
"x": 1178.8719002449689,
|
|
3382
|
+
"y": 1398.600308336051,
|
|
3383
|
+
"width": 150,
|
|
3384
|
+
"height": 50,
|
|
3385
|
+
"angle": 0,
|
|
3386
|
+
"strokeColor": "#1e1e1e",
|
|
3387
|
+
"backgroundColor": "transparent",
|
|
3388
|
+
"fillStyle": "solid",
|
|
3389
|
+
"strokeWidth": 2,
|
|
3390
|
+
"roughness": 0,
|
|
3391
|
+
"opacity": 100,
|
|
3392
|
+
"groupIds": [
|
|
3393
|
+
"decision-more-stories-group"
|
|
3394
|
+
],
|
|
3395
|
+
"fontSize": 16,
|
|
3396
|
+
"fontFamily": 1,
|
|
3397
|
+
"text": "More Stories\nin Epic?",
|
|
3398
|
+
"textAlign": "center",
|
|
3399
|
+
"verticalAlign": "middle",
|
|
3400
|
+
"containerId": "decision-more-stories",
|
|
3401
|
+
"locked": false,
|
|
3402
|
+
"version": 440,
|
|
3403
|
+
"versionNonce": 1078695398,
|
|
3404
|
+
"index": "b0f",
|
|
3405
|
+
"isDeleted": false,
|
|
3406
|
+
"strokeStyle": "solid",
|
|
3407
|
+
"seed": 1,
|
|
3408
|
+
"frameId": null,
|
|
3409
|
+
"roundness": null,
|
|
3410
|
+
"boundElements": [],
|
|
3411
|
+
"updated": 1764190763204,
|
|
3412
|
+
"link": null,
|
|
3413
|
+
"originalText": "More Stories\nin Epic?",
|
|
3414
|
+
"autoResize": true,
|
|
3415
|
+
"lineHeight": 1.5625
|
|
3416
|
+
},
|
|
3417
|
+
{
|
|
3418
|
+
"id": "arrow-more-stories-yes",
|
|
3419
|
+
"type": "arrow",
|
|
3420
|
+
"x": 1158.8719002449689,
|
|
3421
|
+
"y": 1423.5003083360511,
|
|
3422
|
+
"width": 141.95595587699154,
|
|
3423
|
+
"height": 827.0007685048595,
|
|
3424
|
+
"angle": 0,
|
|
3425
|
+
"strokeColor": "#1976d2",
|
|
3426
|
+
"backgroundColor": "transparent",
|
|
3427
|
+
"fillStyle": "solid",
|
|
3428
|
+
"strokeWidth": 2,
|
|
3429
|
+
"roughness": 0,
|
|
3430
|
+
"opacity": 100,
|
|
3431
|
+
"groupIds": [],
|
|
3432
|
+
"startBinding": {
|
|
3433
|
+
"elementId": "decision-more-stories",
|
|
3434
|
+
"fixedPoint": [
|
|
3435
|
+
-0.027777777777777776,
|
|
3436
|
+
0.4991666666666674
|
|
3437
|
+
],
|
|
3438
|
+
"focus": 0,
|
|
3439
|
+
"gap": 0
|
|
3440
|
+
},
|
|
3441
|
+
"endBinding": null,
|
|
3442
|
+
"points": [
|
|
3443
|
+
[
|
|
3444
|
+
0,
|
|
3445
|
+
0
|
|
3446
|
+
],
|
|
3447
|
+
[
|
|
3448
|
+
-140.44216650530916,
|
|
3449
|
+
0
|
|
3450
|
+
],
|
|
3451
|
+
[
|
|
3452
|
+
-140.44216650530916,
|
|
3453
|
+
-827.0007685048595
|
|
3454
|
+
],
|
|
3455
|
+
[
|
|
3456
|
+
1.5137893716823783,
|
|
3457
|
+
-827.0007685048595
|
|
3458
|
+
]
|
|
3459
|
+
],
|
|
3460
|
+
"lastCommittedPoint": null,
|
|
3461
|
+
"elbowed": true,
|
|
3462
|
+
"version": 954,
|
|
3463
|
+
"versionNonce": 2094428902,
|
|
3464
|
+
"index": "b0g",
|
|
3465
|
+
"isDeleted": false,
|
|
3466
|
+
"strokeStyle": "solid",
|
|
3467
|
+
"seed": 1,
|
|
3468
|
+
"frameId": null,
|
|
3469
|
+
"roundness": null,
|
|
3470
|
+
"boundElements": [],
|
|
3471
|
+
"updated": 1764190763204,
|
|
3472
|
+
"link": null,
|
|
3473
|
+
"locked": false,
|
|
3474
|
+
"startArrowhead": null,
|
|
3475
|
+
"endArrowhead": "arrow",
|
|
3476
|
+
"fixedSegments": [
|
|
3477
|
+
{
|
|
3478
|
+
"index": 2,
|
|
3479
|
+
"start": [
|
|
3480
|
+
-140.44216650530916,
|
|
3481
|
+
0
|
|
3482
|
+
],
|
|
3483
|
+
"end": [
|
|
3484
|
+
-140.44216650530916,
|
|
3485
|
+
-827.0007685048595
|
|
3486
|
+
]
|
|
3487
|
+
}
|
|
3488
|
+
],
|
|
3489
|
+
"startIsSpecial": false,
|
|
3490
|
+
"endIsSpecial": false
|
|
3491
|
+
},
|
|
3492
|
+
{
|
|
3493
|
+
"id": "label-more-stories-yes",
|
|
3494
|
+
"type": "text",
|
|
3495
|
+
"x": 1024.8322929694286,
|
|
3496
|
+
"y": 1455.9672274720815,
|
|
3497
|
+
"width": 30,
|
|
3498
|
+
"height": 20,
|
|
3499
|
+
"angle": 0,
|
|
3500
|
+
"strokeColor": "#2e7d32",
|
|
3501
|
+
"backgroundColor": "transparent",
|
|
3502
|
+
"fillStyle": "solid",
|
|
3503
|
+
"strokeWidth": 2,
|
|
3504
|
+
"roughness": 0,
|
|
3505
|
+
"opacity": 100,
|
|
3506
|
+
"groupIds": [],
|
|
3507
|
+
"fontSize": 16,
|
|
3508
|
+
"fontFamily": 1,
|
|
3509
|
+
"text": "Yes",
|
|
3510
|
+
"textAlign": "left",
|
|
3511
|
+
"verticalAlign": "top",
|
|
3512
|
+
"locked": false,
|
|
3513
|
+
"version": 320,
|
|
3514
|
+
"versionNonce": 76752422,
|
|
3515
|
+
"index": "b0h",
|
|
3516
|
+
"isDeleted": false,
|
|
3517
|
+
"strokeStyle": "solid",
|
|
3518
|
+
"seed": 1,
|
|
3519
|
+
"frameId": null,
|
|
3520
|
+
"roundness": null,
|
|
3521
|
+
"boundElements": [],
|
|
3522
|
+
"updated": 1764190763204,
|
|
3523
|
+
"link": null,
|
|
3524
|
+
"containerId": null,
|
|
3525
|
+
"originalText": "Yes",
|
|
3526
|
+
"autoResize": true,
|
|
3527
|
+
"lineHeight": 1.25
|
|
3528
|
+
},
|
|
3529
|
+
{
|
|
3530
|
+
"id": "arrow-more-stories-no",
|
|
3531
|
+
"type": "arrow",
|
|
3532
|
+
"x": 1254.2299747445697,
|
|
3533
|
+
"y": 1484.1816612705734,
|
|
3534
|
+
"width": 0.09067340460524065,
|
|
3535
|
+
"height": 69.22388536244944,
|
|
3536
|
+
"angle": 0,
|
|
3537
|
+
"strokeColor": "#1976d2",
|
|
3538
|
+
"backgroundColor": "transparent",
|
|
3539
|
+
"fillStyle": "solid",
|
|
3540
|
+
"strokeWidth": 2,
|
|
3541
|
+
"roughness": 0,
|
|
3542
|
+
"opacity": 100,
|
|
3543
|
+
"groupIds": [],
|
|
3544
|
+
"startBinding": {
|
|
3545
|
+
"elementId": "decision-more-stories",
|
|
3546
|
+
"focus": -0.004645359638607261,
|
|
3547
|
+
"gap": 1
|
|
3548
|
+
},
|
|
3549
|
+
"endBinding": {
|
|
3550
|
+
"elementId": "proc-retrospective",
|
|
3551
|
+
"focus": -0.000007722345339971072,
|
|
3552
|
+
"gap": 1
|
|
3553
|
+
},
|
|
3554
|
+
"points": [
|
|
3555
|
+
[
|
|
3556
|
+
0,
|
|
3557
|
+
0
|
|
3558
|
+
],
|
|
3559
|
+
[
|
|
3560
|
+
0.09067340460524065,
|
|
3561
|
+
69.22388536244944
|
|
3562
|
+
]
|
|
3563
|
+
],
|
|
3564
|
+
"lastCommittedPoint": null,
|
|
3565
|
+
"version": 1115,
|
|
3566
|
+
"versionNonce": 1285598842,
|
|
3567
|
+
"index": "b0i",
|
|
3568
|
+
"isDeleted": false,
|
|
3569
|
+
"strokeStyle": "solid",
|
|
3570
|
+
"seed": 1,
|
|
3571
|
+
"frameId": null,
|
|
3572
|
+
"roundness": null,
|
|
3573
|
+
"boundElements": [],
|
|
3574
|
+
"updated": 1764190763619,
|
|
3575
|
+
"link": null,
|
|
3576
|
+
"locked": false,
|
|
3577
|
+
"startArrowhead": null,
|
|
3578
|
+
"endArrowhead": "arrow"
|
|
3579
|
+
},
|
|
3580
|
+
{
|
|
3581
|
+
"id": "label-more-stories-no",
|
|
3582
|
+
"type": "text",
|
|
3583
|
+
"x": 1273.6656161640394,
|
|
3584
|
+
"y": 1506.317970130127,
|
|
3585
|
+
"width": 25,
|
|
3586
|
+
"height": 20,
|
|
3587
|
+
"angle": 0,
|
|
3588
|
+
"strokeColor": "#d32f2f",
|
|
3589
|
+
"backgroundColor": "transparent",
|
|
3590
|
+
"fillStyle": "solid",
|
|
3591
|
+
"strokeWidth": 2,
|
|
3592
|
+
"roughness": 0,
|
|
3593
|
+
"opacity": 100,
|
|
3594
|
+
"groupIds": [],
|
|
3595
|
+
"fontSize": 16,
|
|
3596
|
+
"fontFamily": 1,
|
|
3597
|
+
"text": "No",
|
|
3598
|
+
"textAlign": "left",
|
|
3599
|
+
"verticalAlign": "top",
|
|
3600
|
+
"locked": false,
|
|
3601
|
+
"version": 327,
|
|
3602
|
+
"versionNonce": 1022383270,
|
|
3603
|
+
"index": "b0j",
|
|
3604
|
+
"isDeleted": false,
|
|
3605
|
+
"strokeStyle": "solid",
|
|
3606
|
+
"seed": 1,
|
|
3607
|
+
"frameId": null,
|
|
3608
|
+
"roundness": null,
|
|
3609
|
+
"boundElements": [],
|
|
3610
|
+
"updated": 1764190763204,
|
|
3611
|
+
"link": null,
|
|
3612
|
+
"containerId": null,
|
|
3613
|
+
"originalText": "No",
|
|
3614
|
+
"autoResize": true,
|
|
3615
|
+
"lineHeight": 1.25
|
|
3616
|
+
},
|
|
3617
|
+
{
|
|
3618
|
+
"id": "proc-retrospective",
|
|
3619
|
+
"type": "rectangle",
|
|
3620
|
+
"x": 1174.3742521794413,
|
|
3621
|
+
"y": 1553.8571607942745,
|
|
3622
|
+
"width": 160,
|
|
3623
|
+
"height": 80,
|
|
3624
|
+
"angle": 0,
|
|
3625
|
+
"strokeColor": "#1e88e5",
|
|
3626
|
+
"backgroundColor": "#bbdefb",
|
|
3627
|
+
"fillStyle": "solid",
|
|
3628
|
+
"strokeWidth": 2,
|
|
3629
|
+
"roughness": 0,
|
|
3630
|
+
"opacity": 100,
|
|
3631
|
+
"roundness": {
|
|
3632
|
+
"type": 3,
|
|
3633
|
+
"value": 8
|
|
3634
|
+
},
|
|
3635
|
+
"groupIds": [
|
|
3636
|
+
"proc-retrospective-group"
|
|
3637
|
+
],
|
|
3638
|
+
"boundElements": [
|
|
3639
|
+
{
|
|
3640
|
+
"type": "text",
|
|
3641
|
+
"id": "proc-retrospective-text"
|
|
3642
|
+
},
|
|
3643
|
+
{
|
|
3644
|
+
"type": "arrow",
|
|
3645
|
+
"id": "arrow-more-stories-no"
|
|
3646
|
+
},
|
|
3647
|
+
{
|
|
3648
|
+
"type": "arrow",
|
|
3649
|
+
"id": "arrow-retro-more-epics"
|
|
3650
|
+
}
|
|
3651
|
+
],
|
|
3652
|
+
"locked": false,
|
|
3653
|
+
"version": 391,
|
|
3654
|
+
"versionNonce": 1921699814,
|
|
3655
|
+
"index": "b0k",
|
|
3656
|
+
"isDeleted": false,
|
|
3657
|
+
"strokeStyle": "solid",
|
|
3658
|
+
"seed": 1,
|
|
3659
|
+
"frameId": null,
|
|
3660
|
+
"updated": 1764190763204,
|
|
3661
|
+
"link": null
|
|
3662
|
+
},
|
|
3663
|
+
{
|
|
3664
|
+
"id": "proc-retrospective-text",
|
|
3665
|
+
"type": "text",
|
|
3666
|
+
"x": 1184.3742521794413,
|
|
3667
|
+
"y": 1581.8571607942745,
|
|
3668
|
+
"width": 140,
|
|
3669
|
+
"height": 25,
|
|
3670
|
+
"angle": 0,
|
|
3671
|
+
"strokeColor": "#1e1e1e",
|
|
3672
|
+
"backgroundColor": "transparent",
|
|
3673
|
+
"fillStyle": "solid",
|
|
3674
|
+
"strokeWidth": 2,
|
|
3675
|
+
"roughness": 0,
|
|
3676
|
+
"opacity": 100,
|
|
3677
|
+
"groupIds": [
|
|
3678
|
+
"proc-retrospective-group"
|
|
3679
|
+
],
|
|
3680
|
+
"fontSize": 20,
|
|
3681
|
+
"fontFamily": 1,
|
|
3682
|
+
"text": "Retrospective",
|
|
3683
|
+
"textAlign": "center",
|
|
3684
|
+
"verticalAlign": "middle",
|
|
3685
|
+
"containerId": "proc-retrospective",
|
|
3686
|
+
"locked": false,
|
|
3687
|
+
"version": 391,
|
|
3688
|
+
"versionNonce": 1572070182,
|
|
3689
|
+
"index": "b0l",
|
|
3690
|
+
"isDeleted": false,
|
|
3691
|
+
"strokeStyle": "solid",
|
|
3692
|
+
"seed": 1,
|
|
3693
|
+
"frameId": null,
|
|
3694
|
+
"roundness": null,
|
|
3695
|
+
"boundElements": [],
|
|
3696
|
+
"updated": 1764190763204,
|
|
3697
|
+
"link": null,
|
|
3698
|
+
"originalText": "Retrospective",
|
|
3699
|
+
"autoResize": true,
|
|
3700
|
+
"lineHeight": 1.25
|
|
3701
|
+
},
|
|
3702
|
+
{
|
|
3703
|
+
"id": "arrow-retro-more-epics",
|
|
3704
|
+
"type": "arrow",
|
|
3705
|
+
"x": 1252.261821627823,
|
|
3706
|
+
"y": 1634.3087749555261,
|
|
3707
|
+
"width": 2.2496323163620673,
|
|
3708
|
+
"height": 42.83146813764597,
|
|
3709
|
+
"angle": 0,
|
|
3710
|
+
"strokeColor": "#1976d2",
|
|
3711
|
+
"backgroundColor": "transparent",
|
|
3712
|
+
"fillStyle": "solid",
|
|
3713
|
+
"strokeWidth": 2,
|
|
3714
|
+
"roughness": 0,
|
|
3715
|
+
"opacity": 100,
|
|
3716
|
+
"groupIds": [],
|
|
3717
|
+
"startBinding": {
|
|
3718
|
+
"elementId": "proc-retrospective",
|
|
3719
|
+
"focus": -0.00014865809573961995,
|
|
3720
|
+
"gap": 1
|
|
3721
|
+
},
|
|
3722
|
+
"endBinding": {
|
|
3723
|
+
"elementId": "decision-more-epics",
|
|
3724
|
+
"focus": 0.006063807827498143,
|
|
3725
|
+
"gap": 1
|
|
3726
|
+
},
|
|
3727
|
+
"points": [
|
|
3728
|
+
[
|
|
3729
|
+
0,
|
|
3730
|
+
0
|
|
3731
|
+
],
|
|
3732
|
+
[
|
|
3733
|
+
-2.2496323163620673,
|
|
3734
|
+
42.83146813764597
|
|
3735
|
+
]
|
|
3736
|
+
],
|
|
3737
|
+
"lastCommittedPoint": null,
|
|
3738
|
+
"version": 957,
|
|
3739
|
+
"versionNonce": 1972295674,
|
|
3740
|
+
"index": "b0m",
|
|
3741
|
+
"isDeleted": false,
|
|
3742
|
+
"strokeStyle": "solid",
|
|
3743
|
+
"seed": 1,
|
|
3744
|
+
"frameId": null,
|
|
3745
|
+
"roundness": null,
|
|
3746
|
+
"boundElements": [],
|
|
3747
|
+
"updated": 1764190763619,
|
|
3748
|
+
"link": null,
|
|
3749
|
+
"locked": false,
|
|
3750
|
+
"startArrowhead": null,
|
|
3751
|
+
"endArrowhead": "arrow"
|
|
3752
|
+
},
|
|
3753
|
+
{
|
|
3754
|
+
"id": "decision-more-epics",
|
|
3755
|
+
"type": "diamond",
|
|
3756
|
+
"x": 1156.5341271166512,
|
|
3757
|
+
"y": 1676.4331335811917,
|
|
3758
|
+
"width": 180,
|
|
3759
|
+
"height": 120,
|
|
3760
|
+
"angle": 0,
|
|
3761
|
+
"strokeColor": "#f57c00",
|
|
3762
|
+
"backgroundColor": "#fff3e0",
|
|
3763
|
+
"fillStyle": "solid",
|
|
3764
|
+
"strokeWidth": 2,
|
|
3765
|
+
"roughness": 0,
|
|
3766
|
+
"opacity": 100,
|
|
3767
|
+
"groupIds": [
|
|
3768
|
+
"decision-more-epics-group"
|
|
3769
|
+
],
|
|
3770
|
+
"boundElements": [
|
|
3771
|
+
{
|
|
3772
|
+
"type": "text",
|
|
3773
|
+
"id": "decision-more-epics-text"
|
|
3774
|
+
},
|
|
3775
|
+
{
|
|
3776
|
+
"type": "arrow",
|
|
3777
|
+
"id": "arrow-retro-more-epics"
|
|
3778
|
+
},
|
|
3779
|
+
{
|
|
3780
|
+
"type": "arrow",
|
|
3781
|
+
"id": "arrow-more-epics-yes"
|
|
3782
|
+
},
|
|
3783
|
+
{
|
|
3784
|
+
"type": "arrow",
|
|
3785
|
+
"id": "arrow-more-epics-no"
|
|
3786
|
+
}
|
|
3787
|
+
],
|
|
3788
|
+
"locked": false,
|
|
3789
|
+
"version": 282,
|
|
3790
|
+
"versionNonce": 101589030,
|
|
3791
|
+
"index": "b0n",
|
|
3792
|
+
"isDeleted": false,
|
|
3793
|
+
"strokeStyle": "solid",
|
|
3794
|
+
"seed": 1,
|
|
3795
|
+
"frameId": null,
|
|
3796
|
+
"roundness": null,
|
|
3797
|
+
"updated": 1764190763204,
|
|
3798
|
+
"link": null
|
|
3799
|
+
},
|
|
3800
|
+
{
|
|
3801
|
+
"id": "decision-more-epics-text",
|
|
3802
|
+
"type": "text",
|
|
3803
|
+
"x": 1171.5341271166512,
|
|
3804
|
+
"y": 1711.4331335811917,
|
|
3805
|
+
"width": 150,
|
|
3806
|
+
"height": 50,
|
|
3807
|
+
"angle": 0,
|
|
3808
|
+
"strokeColor": "#1e1e1e",
|
|
3809
|
+
"backgroundColor": "transparent",
|
|
3810
|
+
"fillStyle": "solid",
|
|
3811
|
+
"strokeWidth": 2,
|
|
3812
|
+
"roughness": 0,
|
|
3813
|
+
"opacity": 100,
|
|
3814
|
+
"groupIds": [
|
|
3815
|
+
"decision-more-epics-group"
|
|
3816
|
+
],
|
|
3817
|
+
"fontSize": 16,
|
|
3818
|
+
"fontFamily": 1,
|
|
3819
|
+
"text": "More Epics?",
|
|
3820
|
+
"textAlign": "center",
|
|
3821
|
+
"verticalAlign": "middle",
|
|
3822
|
+
"containerId": "decision-more-epics",
|
|
3823
|
+
"locked": false,
|
|
3824
|
+
"version": 282,
|
|
3825
|
+
"versionNonce": 2095262566,
|
|
3826
|
+
"index": "b0o",
|
|
3827
|
+
"isDeleted": false,
|
|
3828
|
+
"strokeStyle": "solid",
|
|
3829
|
+
"seed": 1,
|
|
3830
|
+
"frameId": null,
|
|
3831
|
+
"roundness": null,
|
|
3832
|
+
"boundElements": [],
|
|
3833
|
+
"updated": 1764190763204,
|
|
3834
|
+
"link": null,
|
|
3835
|
+
"originalText": "More Epics?",
|
|
3836
|
+
"autoResize": true,
|
|
3837
|
+
"lineHeight": 3.125
|
|
3838
|
+
},
|
|
3839
|
+
{
|
|
3840
|
+
"id": "arrow-more-epics-yes",
|
|
3841
|
+
"type": "arrow",
|
|
3842
|
+
"x": 1151.5341271166512,
|
|
3843
|
+
"y": 1736.3331335811918,
|
|
3844
|
+
"width": 194.92191691435096,
|
|
3845
|
+
"height": 1138.0678409916745,
|
|
3846
|
+
"angle": 0,
|
|
3847
|
+
"strokeColor": "#1976d2",
|
|
3848
|
+
"backgroundColor": "transparent",
|
|
3849
|
+
"fillStyle": "solid",
|
|
3850
|
+
"strokeWidth": 2,
|
|
3851
|
+
"roughness": 0,
|
|
3852
|
+
"opacity": 100,
|
|
3853
|
+
"groupIds": [],
|
|
3854
|
+
"startBinding": {
|
|
3855
|
+
"elementId": "decision-more-epics",
|
|
3856
|
+
"fixedPoint": [
|
|
3857
|
+
-0.027777777777777776,
|
|
3858
|
+
0.4991666666666674
|
|
3859
|
+
],
|
|
3860
|
+
"focus": 0,
|
|
3861
|
+
"gap": 0
|
|
3862
|
+
},
|
|
3863
|
+
"endBinding": null,
|
|
3864
|
+
"points": [
|
|
3865
|
+
[
|
|
3866
|
+
0,
|
|
3867
|
+
0
|
|
3868
|
+
],
|
|
3869
|
+
[
|
|
3870
|
+
-184.89984110690511,
|
|
3871
|
+
0
|
|
3872
|
+
],
|
|
3873
|
+
[
|
|
3874
|
+
-184.89984110690511,
|
|
3875
|
+
-1138.0678409916745
|
|
3876
|
+
],
|
|
3877
|
+
[
|
|
3878
|
+
10.022075807445844,
|
|
3879
|
+
-1138.0678409916745
|
|
3880
|
+
]
|
|
3881
|
+
],
|
|
3882
|
+
"lastCommittedPoint": null,
|
|
3883
|
+
"elbowed": true,
|
|
3884
|
+
"version": 1805,
|
|
3885
|
+
"versionNonce": 1424088358,
|
|
3886
|
+
"index": "b0p",
|
|
3887
|
+
"isDeleted": false,
|
|
3888
|
+
"strokeStyle": "solid",
|
|
3889
|
+
"seed": 1,
|
|
3890
|
+
"frameId": null,
|
|
3891
|
+
"roundness": null,
|
|
3892
|
+
"boundElements": [],
|
|
3893
|
+
"updated": 1764190763204,
|
|
3894
|
+
"link": null,
|
|
3895
|
+
"locked": false,
|
|
3896
|
+
"startArrowhead": null,
|
|
3897
|
+
"endArrowhead": "arrow",
|
|
3898
|
+
"fixedSegments": [
|
|
3899
|
+
{
|
|
3900
|
+
"index": 2,
|
|
3901
|
+
"start": [
|
|
3902
|
+
-184.89984110690511,
|
|
3903
|
+
0
|
|
3904
|
+
],
|
|
3905
|
+
"end": [
|
|
3906
|
+
-184.89984110690511,
|
|
3907
|
+
-1138.0678409916745
|
|
3908
|
+
]
|
|
3909
|
+
}
|
|
3910
|
+
],
|
|
3911
|
+
"startIsSpecial": false,
|
|
3912
|
+
"endIsSpecial": false
|
|
3913
|
+
},
|
|
3914
|
+
{
|
|
3915
|
+
"id": "label-more-epics-yes",
|
|
3916
|
+
"type": "text",
|
|
3917
|
+
"x": 1016.7607529532588,
|
|
3918
|
+
"y": 1704.1213622982812,
|
|
3919
|
+
"width": 30,
|
|
3920
|
+
"height": 20,
|
|
3921
|
+
"angle": 0,
|
|
3922
|
+
"strokeColor": "#2e7d32",
|
|
3923
|
+
"backgroundColor": "transparent",
|
|
3924
|
+
"fillStyle": "solid",
|
|
3925
|
+
"strokeWidth": 2,
|
|
3926
|
+
"roughness": 0,
|
|
3927
|
+
"opacity": 100,
|
|
3928
|
+
"groupIds": [],
|
|
3929
|
+
"fontSize": 16,
|
|
3930
|
+
"fontFamily": 1,
|
|
3931
|
+
"text": "Yes",
|
|
3932
|
+
"textAlign": "left",
|
|
3933
|
+
"verticalAlign": "top",
|
|
3934
|
+
"locked": false,
|
|
3935
|
+
"version": 395,
|
|
3936
|
+
"versionNonce": 339167334,
|
|
3937
|
+
"index": "b0q",
|
|
3938
|
+
"isDeleted": false,
|
|
3939
|
+
"strokeStyle": "solid",
|
|
3940
|
+
"seed": 1,
|
|
3941
|
+
"frameId": null,
|
|
3942
|
+
"roundness": null,
|
|
3943
|
+
"boundElements": [],
|
|
3944
|
+
"updated": 1764190763204,
|
|
3945
|
+
"link": null,
|
|
3946
|
+
"containerId": null,
|
|
3947
|
+
"originalText": "Yes",
|
|
3948
|
+
"autoResize": true,
|
|
3949
|
+
"lineHeight": 1.25
|
|
3950
|
+
},
|
|
3951
|
+
{
|
|
3952
|
+
"id": "arrow-more-epics-no",
|
|
3953
|
+
"type": "arrow",
|
|
3954
|
+
"x": 1246.5341271166512,
|
|
3955
|
+
"y": 1796.4331335811921,
|
|
3956
|
+
"width": 0,
|
|
3957
|
+
"height": 50,
|
|
3958
|
+
"angle": 0,
|
|
3959
|
+
"strokeColor": "#1976d2",
|
|
3960
|
+
"backgroundColor": "transparent",
|
|
3961
|
+
"fillStyle": "solid",
|
|
3962
|
+
"strokeWidth": 2,
|
|
3963
|
+
"roughness": 0,
|
|
3964
|
+
"opacity": 100,
|
|
3965
|
+
"groupIds": [],
|
|
3966
|
+
"startBinding": {
|
|
3967
|
+
"elementId": "label-more-epics-no",
|
|
3968
|
+
"focus": 0,
|
|
3969
|
+
"gap": 14.142135623730951
|
|
3970
|
+
},
|
|
3971
|
+
"endBinding": {
|
|
3972
|
+
"elementId": "end-ellipse",
|
|
3973
|
+
"focus": 0,
|
|
3974
|
+
"gap": 1
|
|
3975
|
+
},
|
|
3976
|
+
"points": [
|
|
3977
|
+
[
|
|
3978
|
+
0,
|
|
3979
|
+
0
|
|
3980
|
+
],
|
|
3981
|
+
[
|
|
3982
|
+
0,
|
|
3983
|
+
50
|
|
3984
|
+
]
|
|
3985
|
+
],
|
|
3986
|
+
"lastCommittedPoint": null,
|
|
3987
|
+
"version": 848,
|
|
3988
|
+
"versionNonce": 757113210,
|
|
3989
|
+
"index": "b0r",
|
|
3990
|
+
"isDeleted": false,
|
|
3991
|
+
"strokeStyle": "solid",
|
|
3992
|
+
"seed": 1,
|
|
3993
|
+
"frameId": null,
|
|
3994
|
+
"roundness": null,
|
|
3995
|
+
"boundElements": [],
|
|
3996
|
+
"updated": 1764190763620,
|
|
3997
|
+
"link": null,
|
|
3998
|
+
"locked": false,
|
|
3999
|
+
"startArrowhead": null,
|
|
4000
|
+
"endArrowhead": "arrow"
|
|
4001
|
+
},
|
|
4002
|
+
{
|
|
4003
|
+
"id": "label-more-epics-no",
|
|
4004
|
+
"type": "text",
|
|
4005
|
+
"x": 1256.5341271166512,
|
|
4006
|
+
"y": 1806.4331335811921,
|
|
4007
|
+
"width": 25,
|
|
4008
|
+
"height": 20,
|
|
4009
|
+
"angle": 0,
|
|
4010
|
+
"strokeColor": "#d32f2f",
|
|
4011
|
+
"backgroundColor": "transparent",
|
|
4012
|
+
"fillStyle": "solid",
|
|
4013
|
+
"strokeWidth": 2,
|
|
4014
|
+
"roughness": 0,
|
|
4015
|
+
"opacity": 100,
|
|
4016
|
+
"groupIds": [],
|
|
4017
|
+
"fontSize": 16,
|
|
4018
|
+
"fontFamily": 1,
|
|
4019
|
+
"text": "No",
|
|
4020
|
+
"textAlign": "left",
|
|
4021
|
+
"verticalAlign": "top",
|
|
4022
|
+
"locked": false,
|
|
4023
|
+
"version": 283,
|
|
4024
|
+
"versionNonce": 1126229734,
|
|
4025
|
+
"index": "b0s",
|
|
4026
|
+
"isDeleted": false,
|
|
4027
|
+
"strokeStyle": "solid",
|
|
4028
|
+
"seed": 1,
|
|
4029
|
+
"frameId": null,
|
|
4030
|
+
"roundness": null,
|
|
4031
|
+
"boundElements": [
|
|
4032
|
+
{
|
|
4033
|
+
"id": "arrow-more-epics-no",
|
|
4034
|
+
"type": "arrow"
|
|
4035
|
+
}
|
|
4036
|
+
],
|
|
4037
|
+
"updated": 1764190763204,
|
|
4038
|
+
"link": null,
|
|
4039
|
+
"containerId": null,
|
|
4040
|
+
"originalText": "No",
|
|
4041
|
+
"autoResize": true,
|
|
4042
|
+
"lineHeight": 1.25
|
|
4043
|
+
},
|
|
4044
|
+
{
|
|
4045
|
+
"id": "end-ellipse",
|
|
4046
|
+
"type": "ellipse",
|
|
4047
|
+
"x": 1186.5341271166512,
|
|
4048
|
+
"y": 1846.4331335811921,
|
|
4049
|
+
"width": 120,
|
|
4050
|
+
"height": 60,
|
|
4051
|
+
"angle": 0,
|
|
4052
|
+
"strokeColor": "#1976d2",
|
|
4053
|
+
"backgroundColor": "#e3f2fd",
|
|
4054
|
+
"fillStyle": "solid",
|
|
4055
|
+
"strokeWidth": 2,
|
|
4056
|
+
"roughness": 0,
|
|
4057
|
+
"opacity": 100,
|
|
4058
|
+
"groupIds": [
|
|
4059
|
+
"end-group"
|
|
4060
|
+
],
|
|
4061
|
+
"boundElements": [
|
|
4062
|
+
{
|
|
4063
|
+
"type": "text",
|
|
4064
|
+
"id": "end-text"
|
|
4065
|
+
},
|
|
4066
|
+
{
|
|
4067
|
+
"type": "arrow",
|
|
4068
|
+
"id": "arrow-more-epics-no"
|
|
4069
|
+
}
|
|
4070
|
+
],
|
|
4071
|
+
"locked": false,
|
|
4072
|
+
"version": 282,
|
|
4073
|
+
"versionNonce": 370468198,
|
|
4074
|
+
"index": "b0t",
|
|
4075
|
+
"isDeleted": false,
|
|
4076
|
+
"strokeStyle": "solid",
|
|
4077
|
+
"seed": 1,
|
|
4078
|
+
"frameId": null,
|
|
4079
|
+
"roundness": null,
|
|
4080
|
+
"updated": 1764190763204,
|
|
4081
|
+
"link": null
|
|
4082
|
+
},
|
|
4083
|
+
{
|
|
4084
|
+
"id": "end-text",
|
|
4085
|
+
"type": "text",
|
|
4086
|
+
"x": 1223.5341271166512,
|
|
4087
|
+
"y": 1864.4331335811921,
|
|
4088
|
+
"width": 46,
|
|
4089
|
+
"height": 25,
|
|
4090
|
+
"angle": 0,
|
|
4091
|
+
"strokeColor": "#1e1e1e",
|
|
4092
|
+
"backgroundColor": "transparent",
|
|
4093
|
+
"fillStyle": "solid",
|
|
4094
|
+
"strokeWidth": 2,
|
|
4095
|
+
"roughness": 0,
|
|
4096
|
+
"opacity": 100,
|
|
4097
|
+
"groupIds": [
|
|
4098
|
+
"end-group"
|
|
4099
|
+
],
|
|
4100
|
+
"fontSize": 20,
|
|
4101
|
+
"fontFamily": 1,
|
|
4102
|
+
"text": "End",
|
|
4103
|
+
"textAlign": "center",
|
|
4104
|
+
"verticalAlign": "middle",
|
|
4105
|
+
"containerId": "end-ellipse",
|
|
4106
|
+
"locked": false,
|
|
4107
|
+
"version": 282,
|
|
4108
|
+
"versionNonce": 39798950,
|
|
4109
|
+
"index": "b0u",
|
|
4110
|
+
"isDeleted": false,
|
|
4111
|
+
"strokeStyle": "solid",
|
|
4112
|
+
"seed": 1,
|
|
4113
|
+
"frameId": null,
|
|
4114
|
+
"roundness": null,
|
|
4115
|
+
"boundElements": [],
|
|
4116
|
+
"updated": 1764190763204,
|
|
4117
|
+
"link": null,
|
|
4118
|
+
"originalText": "End",
|
|
4119
|
+
"autoResize": true,
|
|
4120
|
+
"lineHeight": 1.25
|
|
4121
|
+
},
|
|
4122
|
+
{
|
|
4123
|
+
"id": "legend-box",
|
|
4124
|
+
"type": "rectangle",
|
|
4125
|
+
"x": -383.37044904818777,
|
|
4126
|
+
"y": 130.62309916565027,
|
|
4127
|
+
"width": 280,
|
|
4128
|
+
"height": 240,
|
|
4129
|
+
"angle": 0,
|
|
4130
|
+
"strokeColor": "#1e1e1e",
|
|
4131
|
+
"backgroundColor": "#ffffff",
|
|
4132
|
+
"fillStyle": "solid",
|
|
4133
|
+
"strokeWidth": 2,
|
|
4134
|
+
"roughness": 0,
|
|
4135
|
+
"opacity": 100,
|
|
4136
|
+
"groupIds": [
|
|
4137
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4138
|
+
],
|
|
4139
|
+
"roundness": {
|
|
4140
|
+
"type": 3,
|
|
4141
|
+
"value": 8
|
|
4142
|
+
},
|
|
4143
|
+
"locked": false,
|
|
4144
|
+
"version": 240,
|
|
4145
|
+
"versionNonce": 899126491,
|
|
4146
|
+
"index": "b0v",
|
|
4147
|
+
"isDeleted": false,
|
|
4148
|
+
"strokeStyle": "solid",
|
|
4149
|
+
"seed": 1,
|
|
4150
|
+
"frameId": null,
|
|
4151
|
+
"boundElements": [],
|
|
4152
|
+
"updated": 1763522286451,
|
|
4153
|
+
"link": null
|
|
4154
|
+
},
|
|
4155
|
+
{
|
|
4156
|
+
"id": "legend-title",
|
|
4157
|
+
"type": "text",
|
|
4158
|
+
"x": -303.37044904818777,
|
|
4159
|
+
"y": 140.62309916565027,
|
|
4160
|
+
"width": 120,
|
|
4161
|
+
"height": 25,
|
|
4162
|
+
"angle": 0,
|
|
4163
|
+
"strokeColor": "#1e1e1e",
|
|
4164
|
+
"backgroundColor": "transparent",
|
|
4165
|
+
"fillStyle": "solid",
|
|
4166
|
+
"strokeWidth": 2,
|
|
4167
|
+
"roughness": 0,
|
|
4168
|
+
"opacity": 100,
|
|
4169
|
+
"groupIds": [
|
|
4170
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4171
|
+
],
|
|
4172
|
+
"fontSize": 20,
|
|
4173
|
+
"fontFamily": 1,
|
|
4174
|
+
"text": "Agent Legend",
|
|
4175
|
+
"textAlign": "center",
|
|
4176
|
+
"verticalAlign": "top",
|
|
4177
|
+
"locked": false,
|
|
4178
|
+
"version": 187,
|
|
4179
|
+
"versionNonce": 354828667,
|
|
4180
|
+
"index": "b0w",
|
|
4181
|
+
"isDeleted": false,
|
|
4182
|
+
"strokeStyle": "solid",
|
|
4183
|
+
"seed": 1,
|
|
4184
|
+
"frameId": null,
|
|
4185
|
+
"roundness": null,
|
|
4186
|
+
"boundElements": [],
|
|
4187
|
+
"updated": 1763522286451,
|
|
4188
|
+
"link": null,
|
|
4189
|
+
"containerId": null,
|
|
4190
|
+
"originalText": "Agent Legend",
|
|
4191
|
+
"autoResize": true,
|
|
4192
|
+
"lineHeight": 1.25
|
|
4193
|
+
},
|
|
4194
|
+
{
|
|
4195
|
+
"id": "legend-analyst",
|
|
4196
|
+
"type": "rectangle",
|
|
4197
|
+
"x": -373.37044904818777,
|
|
4198
|
+
"y": 180.62309916565027,
|
|
4199
|
+
"width": 20,
|
|
4200
|
+
"height": 20,
|
|
4201
|
+
"angle": 0,
|
|
4202
|
+
"strokeColor": "#00acc1",
|
|
4203
|
+
"backgroundColor": "#b2ebf2",
|
|
4204
|
+
"fillStyle": "solid",
|
|
4205
|
+
"strokeWidth": 2,
|
|
4206
|
+
"roughness": 0,
|
|
4207
|
+
"opacity": 100,
|
|
4208
|
+
"groupIds": [
|
|
4209
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4210
|
+
],
|
|
4211
|
+
"locked": false,
|
|
4212
|
+
"version": 187,
|
|
4213
|
+
"versionNonce": 863394331,
|
|
4214
|
+
"index": "b0x",
|
|
4215
|
+
"isDeleted": false,
|
|
4216
|
+
"strokeStyle": "solid",
|
|
4217
|
+
"seed": 1,
|
|
4218
|
+
"frameId": null,
|
|
4219
|
+
"roundness": null,
|
|
4220
|
+
"boundElements": [],
|
|
4221
|
+
"updated": 1763522286451,
|
|
4222
|
+
"link": null
|
|
4223
|
+
},
|
|
4224
|
+
{
|
|
4225
|
+
"id": "legend-analyst-text",
|
|
4226
|
+
"type": "text",
|
|
4227
|
+
"x": -343.37044904818777,
|
|
4228
|
+
"y": 182.62309916565027,
|
|
4229
|
+
"width": 70,
|
|
4230
|
+
"height": 20,
|
|
4231
|
+
"angle": 0,
|
|
4232
|
+
"strokeColor": "#1e1e1e",
|
|
4233
|
+
"backgroundColor": "transparent",
|
|
4234
|
+
"fillStyle": "solid",
|
|
4235
|
+
"strokeWidth": 2,
|
|
4236
|
+
"roughness": 0,
|
|
4237
|
+
"opacity": 100,
|
|
4238
|
+
"groupIds": [
|
|
4239
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4240
|
+
],
|
|
4241
|
+
"fontSize": 16,
|
|
4242
|
+
"fontFamily": 1,
|
|
4243
|
+
"text": "Analyst",
|
|
4244
|
+
"textAlign": "left",
|
|
4245
|
+
"verticalAlign": "top",
|
|
4246
|
+
"locked": false,
|
|
4247
|
+
"version": 187,
|
|
4248
|
+
"versionNonce": 226123451,
|
|
4249
|
+
"index": "b0y",
|
|
4250
|
+
"isDeleted": false,
|
|
4251
|
+
"strokeStyle": "solid",
|
|
4252
|
+
"seed": 1,
|
|
4253
|
+
"frameId": null,
|
|
4254
|
+
"roundness": null,
|
|
4255
|
+
"boundElements": [],
|
|
4256
|
+
"updated": 1763522286451,
|
|
4257
|
+
"link": null,
|
|
4258
|
+
"containerId": null,
|
|
4259
|
+
"originalText": "Analyst",
|
|
4260
|
+
"autoResize": true,
|
|
4261
|
+
"lineHeight": 1.25
|
|
4262
|
+
},
|
|
4263
|
+
{
|
|
4264
|
+
"id": "legend-pm",
|
|
4265
|
+
"type": "rectangle",
|
|
4266
|
+
"x": -373.37044904818777,
|
|
4267
|
+
"y": 210.62309916565027,
|
|
4268
|
+
"width": 20,
|
|
4269
|
+
"height": 20,
|
|
4270
|
+
"angle": 0,
|
|
4271
|
+
"strokeColor": "#43a047",
|
|
4272
|
+
"backgroundColor": "#c8e6c9",
|
|
4273
|
+
"fillStyle": "solid",
|
|
4274
|
+
"strokeWidth": 2,
|
|
4275
|
+
"roughness": 0,
|
|
4276
|
+
"opacity": 100,
|
|
4277
|
+
"groupIds": [
|
|
4278
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4279
|
+
],
|
|
4280
|
+
"locked": false,
|
|
4281
|
+
"version": 187,
|
|
4282
|
+
"versionNonce": 1574227803,
|
|
4283
|
+
"index": "b0z",
|
|
4284
|
+
"isDeleted": false,
|
|
4285
|
+
"strokeStyle": "solid",
|
|
4286
|
+
"seed": 1,
|
|
4287
|
+
"frameId": null,
|
|
4288
|
+
"roundness": null,
|
|
4289
|
+
"boundElements": [],
|
|
4290
|
+
"updated": 1763522286451,
|
|
4291
|
+
"link": null
|
|
4292
|
+
},
|
|
4293
|
+
{
|
|
4294
|
+
"id": "legend-pm-text",
|
|
4295
|
+
"type": "text",
|
|
4296
|
+
"x": -343.37044904818777,
|
|
4297
|
+
"y": 212.62309916565027,
|
|
4298
|
+
"width": 30,
|
|
4299
|
+
"height": 20,
|
|
4300
|
+
"angle": 0,
|
|
4301
|
+
"strokeColor": "#1e1e1e",
|
|
4302
|
+
"backgroundColor": "transparent",
|
|
4303
|
+
"fillStyle": "solid",
|
|
4304
|
+
"strokeWidth": 2,
|
|
4305
|
+
"roughness": 0,
|
|
4306
|
+
"opacity": 100,
|
|
4307
|
+
"groupIds": [
|
|
4308
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4309
|
+
],
|
|
4310
|
+
"fontSize": 16,
|
|
4311
|
+
"fontFamily": 1,
|
|
4312
|
+
"text": "PM",
|
|
4313
|
+
"textAlign": "left",
|
|
4314
|
+
"verticalAlign": "top",
|
|
4315
|
+
"locked": false,
|
|
4316
|
+
"version": 187,
|
|
4317
|
+
"versionNonce": 1725443067,
|
|
4318
|
+
"index": "b10",
|
|
4319
|
+
"isDeleted": false,
|
|
4320
|
+
"strokeStyle": "solid",
|
|
4321
|
+
"seed": 1,
|
|
4322
|
+
"frameId": null,
|
|
4323
|
+
"roundness": null,
|
|
4324
|
+
"boundElements": [],
|
|
4325
|
+
"updated": 1763522286451,
|
|
4326
|
+
"link": null,
|
|
4327
|
+
"containerId": null,
|
|
4328
|
+
"originalText": "PM",
|
|
4329
|
+
"autoResize": true,
|
|
4330
|
+
"lineHeight": 1.25
|
|
4331
|
+
},
|
|
4332
|
+
{
|
|
4333
|
+
"id": "legend-ux",
|
|
4334
|
+
"type": "rectangle",
|
|
4335
|
+
"x": -373.37044904818777,
|
|
4336
|
+
"y": 240.62309916565027,
|
|
4337
|
+
"width": 20,
|
|
4338
|
+
"height": 20,
|
|
4339
|
+
"angle": 0,
|
|
4340
|
+
"strokeColor": "#8e24aa",
|
|
4341
|
+
"backgroundColor": "#e1bee7",
|
|
4342
|
+
"fillStyle": "solid",
|
|
4343
|
+
"strokeWidth": 2,
|
|
4344
|
+
"roughness": 0,
|
|
4345
|
+
"opacity": 100,
|
|
4346
|
+
"groupIds": [
|
|
4347
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4348
|
+
],
|
|
4349
|
+
"locked": false,
|
|
4350
|
+
"version": 187,
|
|
4351
|
+
"versionNonce": 2089219227,
|
|
4352
|
+
"index": "b11",
|
|
4353
|
+
"isDeleted": false,
|
|
4354
|
+
"strokeStyle": "solid",
|
|
4355
|
+
"seed": 1,
|
|
4356
|
+
"frameId": null,
|
|
4357
|
+
"roundness": null,
|
|
4358
|
+
"boundElements": [],
|
|
4359
|
+
"updated": 1763522286451,
|
|
4360
|
+
"link": null
|
|
4361
|
+
},
|
|
4362
|
+
{
|
|
4363
|
+
"id": "legend-ux-text",
|
|
4364
|
+
"type": "text",
|
|
4365
|
+
"x": -343.37044904818777,
|
|
4366
|
+
"y": 242.62309916565027,
|
|
4367
|
+
"width": 110,
|
|
4368
|
+
"height": 20,
|
|
4369
|
+
"angle": 0,
|
|
4370
|
+
"strokeColor": "#1e1e1e",
|
|
4371
|
+
"backgroundColor": "transparent",
|
|
4372
|
+
"fillStyle": "solid",
|
|
4373
|
+
"strokeWidth": 2,
|
|
4374
|
+
"roughness": 0,
|
|
4375
|
+
"opacity": 100,
|
|
4376
|
+
"groupIds": [
|
|
4377
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4378
|
+
],
|
|
4379
|
+
"fontSize": 16,
|
|
4380
|
+
"fontFamily": 1,
|
|
4381
|
+
"text": "UX Designer",
|
|
4382
|
+
"textAlign": "left",
|
|
4383
|
+
"verticalAlign": "top",
|
|
4384
|
+
"locked": false,
|
|
4385
|
+
"version": 187,
|
|
4386
|
+
"versionNonce": 1318299963,
|
|
4387
|
+
"index": "b12",
|
|
4388
|
+
"isDeleted": false,
|
|
4389
|
+
"strokeStyle": "solid",
|
|
4390
|
+
"seed": 1,
|
|
4391
|
+
"frameId": null,
|
|
4392
|
+
"roundness": null,
|
|
4393
|
+
"boundElements": [],
|
|
4394
|
+
"updated": 1763522286451,
|
|
4395
|
+
"link": null,
|
|
4396
|
+
"containerId": null,
|
|
4397
|
+
"originalText": "UX Designer",
|
|
4398
|
+
"autoResize": true,
|
|
4399
|
+
"lineHeight": 1.25
|
|
4400
|
+
},
|
|
4401
|
+
{
|
|
4402
|
+
"id": "legend-architect",
|
|
4403
|
+
"type": "rectangle",
|
|
4404
|
+
"x": -373.37044904818777,
|
|
4405
|
+
"y": 270.6230991656503,
|
|
4406
|
+
"width": 20,
|
|
4407
|
+
"height": 20,
|
|
4408
|
+
"angle": 0,
|
|
4409
|
+
"strokeColor": "#f4511e",
|
|
4410
|
+
"backgroundColor": "#ffccbc",
|
|
4411
|
+
"fillStyle": "solid",
|
|
4412
|
+
"strokeWidth": 2,
|
|
4413
|
+
"roughness": 0,
|
|
4414
|
+
"opacity": 100,
|
|
4415
|
+
"groupIds": [
|
|
4416
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4417
|
+
],
|
|
4418
|
+
"locked": false,
|
|
4419
|
+
"version": 187,
|
|
4420
|
+
"versionNonce": 1918945755,
|
|
4421
|
+
"index": "b13",
|
|
4422
|
+
"isDeleted": false,
|
|
4423
|
+
"strokeStyle": "solid",
|
|
4424
|
+
"seed": 1,
|
|
4425
|
+
"frameId": null,
|
|
4426
|
+
"roundness": null,
|
|
4427
|
+
"boundElements": [],
|
|
4428
|
+
"updated": 1763522286451,
|
|
4429
|
+
"link": null
|
|
4430
|
+
},
|
|
4431
|
+
{
|
|
4432
|
+
"id": "legend-architect-text",
|
|
4433
|
+
"type": "text",
|
|
4434
|
+
"x": -343.37044904818777,
|
|
4435
|
+
"y": 272.6230991656503,
|
|
4436
|
+
"width": 80,
|
|
4437
|
+
"height": 20,
|
|
4438
|
+
"angle": 0,
|
|
4439
|
+
"strokeColor": "#1e1e1e",
|
|
4440
|
+
"backgroundColor": "transparent",
|
|
4441
|
+
"fillStyle": "solid",
|
|
4442
|
+
"strokeWidth": 2,
|
|
4443
|
+
"roughness": 0,
|
|
4444
|
+
"opacity": 100,
|
|
4445
|
+
"groupIds": [
|
|
4446
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4447
|
+
],
|
|
4448
|
+
"fontSize": 16,
|
|
4449
|
+
"fontFamily": 1,
|
|
4450
|
+
"text": "Architect",
|
|
4451
|
+
"textAlign": "left",
|
|
4452
|
+
"verticalAlign": "top",
|
|
4453
|
+
"locked": false,
|
|
4454
|
+
"version": 187,
|
|
4455
|
+
"versionNonce": 755029627,
|
|
4456
|
+
"index": "b14",
|
|
4457
|
+
"isDeleted": false,
|
|
4458
|
+
"strokeStyle": "solid",
|
|
4459
|
+
"seed": 1,
|
|
4460
|
+
"frameId": null,
|
|
4461
|
+
"roundness": null,
|
|
4462
|
+
"boundElements": [],
|
|
4463
|
+
"updated": 1763522286451,
|
|
4464
|
+
"link": null,
|
|
4465
|
+
"containerId": null,
|
|
4466
|
+
"originalText": "Architect",
|
|
4467
|
+
"autoResize": true,
|
|
4468
|
+
"lineHeight": 1.25
|
|
4469
|
+
},
|
|
4470
|
+
{
|
|
4471
|
+
"id": "legend-tea",
|
|
4472
|
+
"type": "rectangle",
|
|
4473
|
+
"x": -373.37044904818777,
|
|
4474
|
+
"y": 300.6230991656503,
|
|
4475
|
+
"width": 20,
|
|
4476
|
+
"height": 20,
|
|
4477
|
+
"angle": 0,
|
|
4478
|
+
"strokeColor": "#e91e63",
|
|
4479
|
+
"backgroundColor": "#f8bbd0",
|
|
4480
|
+
"fillStyle": "solid",
|
|
4481
|
+
"strokeWidth": 2,
|
|
4482
|
+
"roughness": 0,
|
|
4483
|
+
"opacity": 100,
|
|
4484
|
+
"groupIds": [
|
|
4485
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4486
|
+
],
|
|
4487
|
+
"locked": false,
|
|
4488
|
+
"version": 187,
|
|
4489
|
+
"versionNonce": 2100711195,
|
|
4490
|
+
"index": "b15",
|
|
4491
|
+
"isDeleted": false,
|
|
4492
|
+
"strokeStyle": "solid",
|
|
4493
|
+
"seed": 1,
|
|
4494
|
+
"frameId": null,
|
|
4495
|
+
"roundness": null,
|
|
4496
|
+
"boundElements": [],
|
|
4497
|
+
"updated": 1763522286451,
|
|
4498
|
+
"link": null
|
|
4499
|
+
},
|
|
4500
|
+
{
|
|
4501
|
+
"id": "legend-tea-text",
|
|
4502
|
+
"type": "text",
|
|
4503
|
+
"x": -343.37044904818777,
|
|
4504
|
+
"y": 302.6230991656503,
|
|
4505
|
+
"width": 40,
|
|
4506
|
+
"height": 20,
|
|
4507
|
+
"angle": 0,
|
|
4508
|
+
"strokeColor": "#1e1e1e",
|
|
4509
|
+
"backgroundColor": "transparent",
|
|
4510
|
+
"fillStyle": "solid",
|
|
4511
|
+
"strokeWidth": 2,
|
|
4512
|
+
"roughness": 0,
|
|
4513
|
+
"opacity": 100,
|
|
4514
|
+
"groupIds": [
|
|
4515
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4516
|
+
],
|
|
4517
|
+
"fontSize": 16,
|
|
4518
|
+
"fontFamily": 1,
|
|
4519
|
+
"text": "TEA",
|
|
4520
|
+
"textAlign": "left",
|
|
4521
|
+
"verticalAlign": "top",
|
|
4522
|
+
"locked": false,
|
|
4523
|
+
"version": 187,
|
|
4524
|
+
"versionNonce": 1702081467,
|
|
4525
|
+
"index": "b16",
|
|
4526
|
+
"isDeleted": false,
|
|
4527
|
+
"strokeStyle": "solid",
|
|
4528
|
+
"seed": 1,
|
|
4529
|
+
"frameId": null,
|
|
4530
|
+
"roundness": null,
|
|
4531
|
+
"boundElements": [],
|
|
4532
|
+
"updated": 1763522286451,
|
|
4533
|
+
"link": null,
|
|
4534
|
+
"containerId": null,
|
|
4535
|
+
"originalText": "TEA",
|
|
4536
|
+
"autoResize": true,
|
|
4537
|
+
"lineHeight": 1.25
|
|
4538
|
+
},
|
|
4539
|
+
{
|
|
4540
|
+
"id": "legend-sm",
|
|
4541
|
+
"type": "rectangle",
|
|
4542
|
+
"x": -373.37044904818777,
|
|
4543
|
+
"y": 330.6230991656503,
|
|
4544
|
+
"width": 20,
|
|
4545
|
+
"height": 20,
|
|
4546
|
+
"angle": 0,
|
|
4547
|
+
"strokeColor": "#1e88e5",
|
|
4548
|
+
"backgroundColor": "#bbdefb",
|
|
4549
|
+
"fillStyle": "solid",
|
|
4550
|
+
"strokeWidth": 2,
|
|
4551
|
+
"roughness": 0,
|
|
4552
|
+
"opacity": 100,
|
|
4553
|
+
"groupIds": [
|
|
4554
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4555
|
+
],
|
|
4556
|
+
"locked": false,
|
|
4557
|
+
"version": 187,
|
|
4558
|
+
"versionNonce": 1977320539,
|
|
4559
|
+
"index": "b17",
|
|
4560
|
+
"isDeleted": false,
|
|
4561
|
+
"strokeStyle": "solid",
|
|
4562
|
+
"seed": 1,
|
|
4563
|
+
"frameId": null,
|
|
4564
|
+
"roundness": null,
|
|
4565
|
+
"boundElements": [],
|
|
4566
|
+
"updated": 1763522286451,
|
|
4567
|
+
"link": null
|
|
4568
|
+
},
|
|
4569
|
+
{
|
|
4570
|
+
"id": "legend-sm-text",
|
|
4571
|
+
"type": "text",
|
|
4572
|
+
"x": -343.37044904818777,
|
|
4573
|
+
"y": 332.6230991656503,
|
|
4574
|
+
"width": 30,
|
|
4575
|
+
"height": 20,
|
|
4576
|
+
"angle": 0,
|
|
4577
|
+
"strokeColor": "#1e1e1e",
|
|
4578
|
+
"backgroundColor": "transparent",
|
|
4579
|
+
"fillStyle": "solid",
|
|
4580
|
+
"strokeWidth": 2,
|
|
4581
|
+
"roughness": 0,
|
|
4582
|
+
"opacity": 100,
|
|
4583
|
+
"groupIds": [
|
|
4584
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4585
|
+
],
|
|
4586
|
+
"fontSize": 16,
|
|
4587
|
+
"fontFamily": 1,
|
|
4588
|
+
"text": "SM",
|
|
4589
|
+
"textAlign": "left",
|
|
4590
|
+
"verticalAlign": "top",
|
|
4591
|
+
"locked": false,
|
|
4592
|
+
"version": 187,
|
|
4593
|
+
"versionNonce": 373309691,
|
|
4594
|
+
"index": "b18",
|
|
4595
|
+
"isDeleted": false,
|
|
4596
|
+
"strokeStyle": "solid",
|
|
4597
|
+
"seed": 1,
|
|
4598
|
+
"frameId": null,
|
|
4599
|
+
"roundness": null,
|
|
4600
|
+
"boundElements": [],
|
|
4601
|
+
"updated": 1763522286451,
|
|
4602
|
+
"link": null,
|
|
4603
|
+
"containerId": null,
|
|
4604
|
+
"originalText": "SM",
|
|
4605
|
+
"autoResize": true,
|
|
4606
|
+
"lineHeight": 1.25
|
|
4607
|
+
},
|
|
4608
|
+
{
|
|
4609
|
+
"id": "legend-dev",
|
|
4610
|
+
"type": "rectangle",
|
|
4611
|
+
"x": -223.37044904818777,
|
|
4612
|
+
"y": 180.62309916565027,
|
|
4613
|
+
"width": 20,
|
|
4614
|
+
"height": 20,
|
|
4615
|
+
"angle": 0,
|
|
4616
|
+
"strokeColor": "#3f51b5",
|
|
4617
|
+
"backgroundColor": "#c5cae9",
|
|
4618
|
+
"fillStyle": "solid",
|
|
4619
|
+
"strokeWidth": 2,
|
|
4620
|
+
"roughness": 0,
|
|
4621
|
+
"opacity": 100,
|
|
4622
|
+
"groupIds": [
|
|
4623
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4624
|
+
],
|
|
4625
|
+
"locked": false,
|
|
4626
|
+
"version": 187,
|
|
4627
|
+
"versionNonce": 270821787,
|
|
4628
|
+
"index": "b19",
|
|
4629
|
+
"isDeleted": false,
|
|
4630
|
+
"strokeStyle": "solid",
|
|
4631
|
+
"seed": 1,
|
|
4632
|
+
"frameId": null,
|
|
4633
|
+
"roundness": null,
|
|
4634
|
+
"boundElements": [],
|
|
4635
|
+
"updated": 1763522286451,
|
|
4636
|
+
"link": null
|
|
4637
|
+
},
|
|
4638
|
+
{
|
|
4639
|
+
"id": "legend-dev-text",
|
|
4640
|
+
"type": "text",
|
|
4641
|
+
"x": -193.37044904818777,
|
|
4642
|
+
"y": 182.62309916565027,
|
|
4643
|
+
"width": 40,
|
|
4644
|
+
"height": 20,
|
|
4645
|
+
"angle": 0,
|
|
4646
|
+
"strokeColor": "#1e1e1e",
|
|
4647
|
+
"backgroundColor": "transparent",
|
|
4648
|
+
"fillStyle": "solid",
|
|
4649
|
+
"strokeWidth": 2,
|
|
4650
|
+
"roughness": 0,
|
|
4651
|
+
"opacity": 100,
|
|
4652
|
+
"groupIds": [
|
|
4653
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4654
|
+
],
|
|
4655
|
+
"fontSize": 16,
|
|
4656
|
+
"fontFamily": 1,
|
|
4657
|
+
"text": "DEV",
|
|
4658
|
+
"textAlign": "left",
|
|
4659
|
+
"verticalAlign": "top",
|
|
4660
|
+
"locked": false,
|
|
4661
|
+
"version": 187,
|
|
4662
|
+
"versionNonce": 1488617019,
|
|
4663
|
+
"index": "b1A",
|
|
4664
|
+
"isDeleted": false,
|
|
4665
|
+
"strokeStyle": "solid",
|
|
4666
|
+
"seed": 1,
|
|
4667
|
+
"frameId": null,
|
|
4668
|
+
"roundness": null,
|
|
4669
|
+
"boundElements": [],
|
|
4670
|
+
"updated": 1763522286451,
|
|
4671
|
+
"link": null,
|
|
4672
|
+
"containerId": null,
|
|
4673
|
+
"originalText": "DEV",
|
|
4674
|
+
"autoResize": true,
|
|
4675
|
+
"lineHeight": 1.25
|
|
4676
|
+
},
|
|
4677
|
+
{
|
|
4678
|
+
"id": "legend-decision",
|
|
4679
|
+
"type": "diamond",
|
|
4680
|
+
"x": -223.37044904818777,
|
|
4681
|
+
"y": 210.62309916565027,
|
|
4682
|
+
"width": 30,
|
|
4683
|
+
"height": 30,
|
|
4684
|
+
"angle": 0,
|
|
4685
|
+
"strokeColor": "#f57c00",
|
|
4686
|
+
"backgroundColor": "#fff3e0",
|
|
4687
|
+
"fillStyle": "solid",
|
|
4688
|
+
"strokeWidth": 1,
|
|
4689
|
+
"roughness": 0,
|
|
4690
|
+
"opacity": 100,
|
|
4691
|
+
"groupIds": [
|
|
4692
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4693
|
+
],
|
|
4694
|
+
"locked": false,
|
|
4695
|
+
"version": 187,
|
|
4696
|
+
"versionNonce": 451215067,
|
|
4697
|
+
"index": "b1B",
|
|
4698
|
+
"isDeleted": false,
|
|
4699
|
+
"strokeStyle": "solid",
|
|
4700
|
+
"seed": 1,
|
|
4701
|
+
"frameId": null,
|
|
4702
|
+
"roundness": null,
|
|
4703
|
+
"boundElements": [],
|
|
4704
|
+
"updated": 1763522286451,
|
|
4705
|
+
"link": null
|
|
4706
|
+
},
|
|
4707
|
+
{
|
|
4708
|
+
"id": "legend-decision-text",
|
|
4709
|
+
"type": "text",
|
|
4710
|
+
"x": -183.37044904818777,
|
|
4711
|
+
"y": 217.62309916565027,
|
|
4712
|
+
"width": 70,
|
|
4713
|
+
"height": 20,
|
|
4714
|
+
"angle": 0,
|
|
4715
|
+
"strokeColor": "#1e1e1e",
|
|
4716
|
+
"backgroundColor": "transparent",
|
|
4717
|
+
"fillStyle": "solid",
|
|
4718
|
+
"strokeWidth": 2,
|
|
4719
|
+
"roughness": 0,
|
|
4720
|
+
"opacity": 100,
|
|
4721
|
+
"groupIds": [
|
|
4722
|
+
"FOWhENd6l0IWkDrktqohE"
|
|
4723
|
+
],
|
|
4724
|
+
"fontSize": 16,
|
|
4725
|
+
"fontFamily": 1,
|
|
4726
|
+
"text": "Decision",
|
|
4727
|
+
"textAlign": "left",
|
|
4728
|
+
"verticalAlign": "top",
|
|
4729
|
+
"locked": false,
|
|
4730
|
+
"version": 187,
|
|
4731
|
+
"versionNonce": 20343675,
|
|
4732
|
+
"index": "b1C",
|
|
4733
|
+
"isDeleted": false,
|
|
4734
|
+
"strokeStyle": "solid",
|
|
4735
|
+
"seed": 1,
|
|
4736
|
+
"frameId": null,
|
|
4737
|
+
"roundness": null,
|
|
4738
|
+
"boundElements": [],
|
|
4739
|
+
"updated": 1763522286451,
|
|
4740
|
+
"link": null,
|
|
4741
|
+
"containerId": null,
|
|
4742
|
+
"originalText": "Decision",
|
|
4743
|
+
"autoResize": true,
|
|
4744
|
+
"lineHeight": 1.25
|
|
4745
|
+
},
|
|
4746
|
+
{
|
|
4747
|
+
"id": "4chQ7PksRKpPe5YX-TfFJ",
|
|
4748
|
+
"type": "arrow",
|
|
4749
|
+
"x": 1250.9718703296421,
|
|
4750
|
+
"y": 1311.0799578560604,
|
|
4751
|
+
"width": 3.1071377799139555,
|
|
4752
|
+
"height": 47.57227388165256,
|
|
4753
|
+
"angle": 0,
|
|
4754
|
+
"strokeColor": "#1976d2",
|
|
4755
|
+
"backgroundColor": "transparent",
|
|
4756
|
+
"fillStyle": "solid",
|
|
4757
|
+
"strokeWidth": 2,
|
|
4758
|
+
"roughness": 0,
|
|
4759
|
+
"opacity": 100,
|
|
4760
|
+
"groupIds": [],
|
|
4761
|
+
"startBinding": {
|
|
4762
|
+
"elementId": "label-pass",
|
|
4763
|
+
"focus": 0.0002774287102738527,
|
|
4764
|
+
"gap": 9.837794264415606
|
|
4765
|
+
},
|
|
4766
|
+
"endBinding": {
|
|
4767
|
+
"elementId": "decision-more-stories",
|
|
4768
|
+
"focus": 0.07415216095379644,
|
|
4769
|
+
"gap": 5.01120144889627
|
|
4770
|
+
},
|
|
4771
|
+
"points": [
|
|
4772
|
+
[
|
|
4773
|
+
0,
|
|
4774
|
+
0
|
|
4775
|
+
],
|
|
4776
|
+
[
|
|
4777
|
+
3.1071377799139555,
|
|
4778
|
+
47.57227388165256
|
|
4779
|
+
]
|
|
4780
|
+
],
|
|
4781
|
+
"lastCommittedPoint": null,
|
|
4782
|
+
"version": 1485,
|
|
4783
|
+
"versionNonce": 384699130,
|
|
4784
|
+
"index": "b1D",
|
|
4785
|
+
"isDeleted": false,
|
|
4786
|
+
"strokeStyle": "solid",
|
|
4787
|
+
"seed": 1128360742,
|
|
4788
|
+
"frameId": null,
|
|
4789
|
+
"roundness": null,
|
|
4790
|
+
"boundElements": [],
|
|
4791
|
+
"updated": 1764190763620,
|
|
4792
|
+
"link": null,
|
|
4793
|
+
"locked": false,
|
|
4794
|
+
"startArrowhead": null,
|
|
4795
|
+
"endArrowhead": "arrow"
|
|
4796
|
+
},
|
|
4797
|
+
{
|
|
4798
|
+
"id": "jv0rnlK2D9JKIGTO7pUtT",
|
|
4799
|
+
"type": "arrow",
|
|
4800
|
+
"x": 199.95091169427553,
|
|
4801
|
+
"y": 434.3642722686245,
|
|
4802
|
+
"width": 152.18808817436843,
|
|
4803
|
+
"height": 126.81486476828513,
|
|
4804
|
+
"angle": 0,
|
|
4805
|
+
"strokeColor": "#1976d2",
|
|
4806
|
+
"backgroundColor": "transparent",
|
|
4807
|
+
"fillStyle": "solid",
|
|
4808
|
+
"strokeWidth": 2,
|
|
4809
|
+
"roughness": 0,
|
|
4810
|
+
"opacity": 100,
|
|
4811
|
+
"groupIds": [],
|
|
4812
|
+
"startBinding": {
|
|
4813
|
+
"elementId": "proc-brainstorm",
|
|
4814
|
+
"focus": 0.3249856938901564,
|
|
4815
|
+
"gap": 1
|
|
4816
|
+
},
|
|
4817
|
+
"endBinding": {
|
|
4818
|
+
"elementId": "proc-prd",
|
|
4819
|
+
"focus": 0.40022808683972894,
|
|
4820
|
+
"gap": 7.158084853619243
|
|
4821
|
+
},
|
|
4822
|
+
"points": [
|
|
4823
|
+
[
|
|
4824
|
+
0,
|
|
4825
|
+
0
|
|
4826
|
+
],
|
|
4827
|
+
[
|
|
4828
|
+
69.77818267983719,
|
|
4829
|
+
0.8988822936652241
|
|
4830
|
+
],
|
|
4831
|
+
[
|
|
4832
|
+
84.43045426782976,
|
|
4833
|
+
-84.30283196996788
|
|
4834
|
+
],
|
|
4835
|
+
[
|
|
4836
|
+
152.18808817436843,
|
|
4837
|
+
-125.91598247461991
|
|
4838
|
+
]
|
|
4839
|
+
],
|
|
4840
|
+
"lastCommittedPoint": null,
|
|
4841
|
+
"version": 2008,
|
|
4842
|
+
"versionNonce": 1304633062,
|
|
4843
|
+
"index": "b1F",
|
|
4844
|
+
"isDeleted": false,
|
|
4845
|
+
"strokeStyle": "solid",
|
|
4846
|
+
"seed": 753809018,
|
|
4847
|
+
"frameId": null,
|
|
4848
|
+
"roundness": {
|
|
4849
|
+
"type": 2
|
|
4850
|
+
},
|
|
4851
|
+
"boundElements": [],
|
|
4852
|
+
"updated": 1764191372763,
|
|
4853
|
+
"link": null,
|
|
4854
|
+
"locked": false,
|
|
4855
|
+
"startArrowhead": null,
|
|
4856
|
+
"endArrowhead": "arrow",
|
|
4857
|
+
"elbowed": false
|
|
4858
|
+
},
|
|
4859
|
+
{
|
|
4860
|
+
"id": "RF10FfKbmG72P77I2IoP4",
|
|
4861
|
+
"type": "arrow",
|
|
4862
|
+
"x": 200.50999902520755,
|
|
4863
|
+
"y": 524.3440535408814,
|
|
4864
|
+
"width": 155.72897460360434,
|
|
4865
|
+
"height": 217.43940257292877,
|
|
4866
|
+
"angle": 0,
|
|
4867
|
+
"strokeColor": "#1976d2",
|
|
4868
|
+
"backgroundColor": "transparent",
|
|
4869
|
+
"fillStyle": "solid",
|
|
4870
|
+
"strokeWidth": 2,
|
|
4871
|
+
"roughness": 0,
|
|
4872
|
+
"opacity": 100,
|
|
4873
|
+
"groupIds": [],
|
|
4874
|
+
"startBinding": {
|
|
4875
|
+
"elementId": "proc-research",
|
|
4876
|
+
"focus": 0.2547348377789515,
|
|
4877
|
+
"gap": 1
|
|
4878
|
+
},
|
|
4879
|
+
"endBinding": {
|
|
4880
|
+
"elementId": "proc-prd",
|
|
4881
|
+
"focus": 0.3948133447078272,
|
|
4882
|
+
"gap": 3.0581110934513163
|
|
4883
|
+
},
|
|
4884
|
+
"points": [
|
|
4885
|
+
[
|
|
4886
|
+
0,
|
|
4887
|
+
0
|
|
4888
|
+
],
|
|
4889
|
+
[
|
|
4890
|
+
71.74164413965786,
|
|
4891
|
+
-18.904836665604307
|
|
4892
|
+
],
|
|
4893
|
+
[
|
|
4894
|
+
83.93792495248488,
|
|
4895
|
+
-172.66332121061578
|
|
4896
|
+
],
|
|
4897
|
+
[
|
|
4898
|
+
155.72897460360434,
|
|
4899
|
+
-217.43940257292877
|
|
4900
|
+
]
|
|
4901
|
+
],
|
|
4902
|
+
"lastCommittedPoint": null,
|
|
4903
|
+
"version": 2022,
|
|
4904
|
+
"versionNonce": 1289623162,
|
|
4905
|
+
"index": "b1G",
|
|
4906
|
+
"isDeleted": false,
|
|
4907
|
+
"strokeStyle": "solid",
|
|
4908
|
+
"seed": 389493926,
|
|
4909
|
+
"frameId": null,
|
|
4910
|
+
"roundness": {
|
|
4911
|
+
"type": 2
|
|
4912
|
+
},
|
|
4913
|
+
"boundElements": [],
|
|
4914
|
+
"updated": 1764191336778,
|
|
4915
|
+
"link": null,
|
|
4916
|
+
"locked": false,
|
|
4917
|
+
"startArrowhead": null,
|
|
4918
|
+
"endArrowhead": "arrow",
|
|
4919
|
+
"elbowed": false
|
|
4920
|
+
},
|
|
4921
|
+
{
|
|
4922
|
+
"id": "FDR4ZvEvNmPvkP3HfQMY4",
|
|
4923
|
+
"type": "arrow",
|
|
4924
|
+
"x": 523.1179307657023,
|
|
4925
|
+
"y": 528.6598293249855,
|
|
4926
|
+
"width": 156.49193140361945,
|
|
4927
|
+
"height": 211.37494429949584,
|
|
4928
|
+
"angle": 0,
|
|
4929
|
+
"strokeColor": "#1976d2",
|
|
4930
|
+
"backgroundColor": "transparent",
|
|
4931
|
+
"fillStyle": "solid",
|
|
4932
|
+
"strokeWidth": 2,
|
|
4933
|
+
"roughness": 0,
|
|
4934
|
+
"opacity": 100,
|
|
4935
|
+
"groupIds": [],
|
|
4936
|
+
"startBinding": null,
|
|
4937
|
+
"endBinding": null,
|
|
4938
|
+
"points": [
|
|
4939
|
+
[
|
|
4940
|
+
0,
|
|
4941
|
+
0
|
|
4942
|
+
],
|
|
4943
|
+
[
|
|
4944
|
+
67.6421465593952,
|
|
4945
|
+
-30.201232355758236
|
|
4946
|
+
],
|
|
4947
|
+
[
|
|
4948
|
+
96.50992722652438,
|
|
4949
|
+
-178.58566948715793
|
|
4950
|
+
],
|
|
4951
|
+
[
|
|
4952
|
+
156.49193140361945,
|
|
4953
|
+
-211.37494429949584
|
|
4954
|
+
]
|
|
4955
|
+
],
|
|
4956
|
+
"lastCommittedPoint": null,
|
|
4957
|
+
"version": 672,
|
|
4958
|
+
"versionNonce": 1827754470,
|
|
4959
|
+
"index": "b1I",
|
|
4960
|
+
"isDeleted": false,
|
|
4961
|
+
"strokeStyle": "solid",
|
|
4962
|
+
"seed": 310318758,
|
|
4963
|
+
"frameId": null,
|
|
4964
|
+
"roundness": {
|
|
4965
|
+
"type": 2
|
|
4966
|
+
},
|
|
4967
|
+
"boundElements": [],
|
|
4968
|
+
"updated": 1764191558236,
|
|
4969
|
+
"link": null,
|
|
4970
|
+
"locked": false,
|
|
4971
|
+
"startArrowhead": null,
|
|
4972
|
+
"endArrowhead": "arrow",
|
|
4973
|
+
"elbowed": false
|
|
4974
|
+
},
|
|
4975
|
+
{
|
|
4976
|
+
"id": "arrow-prd-hasui",
|
|
4977
|
+
"type": "arrow",
|
|
4978
|
+
"x": 440,
|
|
4979
|
+
"y": 330,
|
|
4980
|
+
"width": 0,
|
|
4981
|
+
"height": 140,
|
|
4982
|
+
"angle": 0,
|
|
4983
|
+
"strokeColor": "#1976d2",
|
|
4984
|
+
"backgroundColor": "transparent",
|
|
4985
|
+
"fillStyle": "solid",
|
|
4986
|
+
"strokeWidth": 2,
|
|
4987
|
+
"roughness": 0,
|
|
4988
|
+
"opacity": 100,
|
|
4989
|
+
"groupIds": [],
|
|
4990
|
+
"startBinding": {
|
|
4991
|
+
"elementId": "proc-prd",
|
|
4992
|
+
"focus": 0,
|
|
4993
|
+
"gap": 1
|
|
4994
|
+
},
|
|
4995
|
+
"endBinding": {
|
|
4996
|
+
"elementId": "decision-has-ui",
|
|
4997
|
+
"focus": 0,
|
|
4998
|
+
"gap": 1
|
|
4999
|
+
},
|
|
5000
|
+
"points": [
|
|
5001
|
+
[
|
|
5002
|
+
0,
|
|
5003
|
+
0
|
|
5004
|
+
],
|
|
5005
|
+
[
|
|
5006
|
+
0,
|
|
5007
|
+
140
|
|
5008
|
+
]
|
|
5009
|
+
],
|
|
5010
|
+
"lastCommittedPoint": null,
|
|
5011
|
+
"version": 1,
|
|
5012
|
+
"versionNonce": 1,
|
|
5013
|
+
"index": "b1J",
|
|
5014
|
+
"isDeleted": false,
|
|
5015
|
+
"strokeStyle": "solid",
|
|
5016
|
+
"seed": 1,
|
|
5017
|
+
"frameId": null,
|
|
5018
|
+
"roundness": null,
|
|
5019
|
+
"boundElements": [],
|
|
5020
|
+
"updated": 1764952855000,
|
|
5021
|
+
"link": null,
|
|
5022
|
+
"locked": false,
|
|
5023
|
+
"startArrowhead": null,
|
|
5024
|
+
"endArrowhead": "arrow"
|
|
5025
|
+
}
|
|
5026
|
+
],
|
|
5027
|
+
"appState": {
|
|
5028
|
+
"gridSize": 20,
|
|
5029
|
+
"gridStep": 5,
|
|
5030
|
+
"gridModeEnabled": false,
|
|
5031
|
+
"viewBackgroundColor": "#ffffff"
|
|
5032
|
+
},
|
|
5033
|
+
"files": {}
|
|
5034
|
+
}
|