labre-mcp 0.1.0
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/README.md +97 -0
- package/dist/core/ast/analysis-ref.d.mts +7 -0
- package/dist/core/ast/analysis-ref.d.mts.map +1 -0
- package/dist/core/ast/analysis-ref.mjs +19 -0
- package/dist/core/ast/analysis-ref.mjs.map +1 -0
- package/dist/core/ast/base-ast.d.mts +4 -0
- package/dist/core/ast/base-ast.d.mts.map +1 -0
- package/dist/core/ast/base-ast.mjs +5 -0
- package/dist/core/ast/base-ast.mjs.map +1 -0
- package/dist/core/ast/base-strategy.d.mts +30 -0
- package/dist/core/ast/base-strategy.d.mts.map +1 -0
- package/dist/core/ast/base-strategy.mjs +25 -0
- package/dist/core/ast/base-strategy.mjs.map +1 -0
- package/dist/core/bus/event-bus.d.mts +11 -0
- package/dist/core/bus/event-bus.d.mts.map +1 -0
- package/dist/core/bus/event-bus.mjs +70 -0
- package/dist/core/bus/event-bus.mjs.map +1 -0
- package/dist/core/bus/event.schema.d.mts +20 -0
- package/dist/core/bus/event.schema.d.mts.map +1 -0
- package/dist/core/bus/event.schema.mjs +19 -0
- package/dist/core/bus/event.schema.mjs.map +1 -0
- package/dist/core/context/request-context.d.mts +10 -0
- package/dist/core/context/request-context.d.mts.map +1 -0
- package/dist/core/context/request-context.mjs +13 -0
- package/dist/core/context/request-context.mjs.map +1 -0
- package/dist/core/index.d.mts +13 -0
- package/dist/core/index.d.mts.map +1 -0
- package/dist/core/index.mjs +17 -0
- package/dist/core/index.mjs.map +1 -0
- package/dist/core/listeners/artifact-writer-listener.d.mts +20 -0
- package/dist/core/listeners/artifact-writer-listener.d.mts.map +1 -0
- package/dist/core/listeners/artifact-writer-listener.mjs +64 -0
- package/dist/core/listeners/artifact-writer-listener.mjs.map +1 -0
- package/dist/core/persistence/artifact-writer.d.mts +25 -0
- package/dist/core/persistence/artifact-writer.d.mts.map +1 -0
- package/dist/core/persistence/artifact-writer.mjs +36 -0
- package/dist/core/persistence/artifact-writer.mjs.map +1 -0
- package/dist/core/persistence/project-id-resolver.d.mts +11 -0
- package/dist/core/persistence/project-id-resolver.d.mts.map +1 -0
- package/dist/core/persistence/project-id-resolver.mjs +52 -0
- package/dist/core/persistence/project-id-resolver.mjs.map +1 -0
- package/dist/core/recipe/jsonpath-fanout.d.mts +3 -0
- package/dist/core/recipe/jsonpath-fanout.d.mts.map +1 -0
- package/dist/core/recipe/jsonpath-fanout.mjs +44 -0
- package/dist/core/recipe/jsonpath-fanout.mjs.map +1 -0
- package/dist/core/recipe/recipe-loader.d.mts +12 -0
- package/dist/core/recipe/recipe-loader.d.mts.map +1 -0
- package/dist/core/recipe/recipe-loader.mjs +69 -0
- package/dist/core/recipe/recipe-loader.mjs.map +1 -0
- package/dist/core/recipe/recipe-runner.d.mts +48 -0
- package/dist/core/recipe/recipe-runner.d.mts.map +1 -0
- package/dist/core/recipe/recipe-runner.mjs +247 -0
- package/dist/core/recipe/recipe-runner.mjs.map +1 -0
- package/dist/core/recipe/recipe.schema.d.mts +26 -0
- package/dist/core/recipe/recipe.schema.d.mts.map +1 -0
- package/dist/core/recipe/recipe.schema.mjs +46 -0
- package/dist/core/recipe/recipe.schema.mjs.map +1 -0
- package/dist/core/registry/short-name-map.d.mts +10 -0
- package/dist/core/registry/short-name-map.d.mts.map +1 -0
- package/dist/core/registry/short-name-map.mjs +39 -0
- package/dist/core/registry/short-name-map.mjs.map +1 -0
- package/dist/core/registry/strategy-registry.d.mts +13 -0
- package/dist/core/registry/strategy-registry.d.mts.map +1 -0
- package/dist/core/registry/strategy-registry.mjs +42 -0
- package/dist/core/registry/strategy-registry.mjs.map +1 -0
- package/dist/core/transport/auth-middleware.d.mts +6 -0
- package/dist/core/transport/auth-middleware.d.mts.map +1 -0
- package/dist/core/transport/auth-middleware.mjs +9 -0
- package/dist/core/transport/auth-middleware.mjs.map +1 -0
- package/dist/core/transport/boot-health-checks.d.mts +6 -0
- package/dist/core/transport/boot-health-checks.d.mts.map +1 -0
- package/dist/core/transport/boot-health-checks.mjs +42 -0
- package/dist/core/transport/boot-health-checks.mjs.map +1 -0
- package/dist/core/transport/boot-tool-registry.d.mts +3 -0
- package/dist/core/transport/boot-tool-registry.d.mts.map +1 -0
- package/dist/core/transport/boot-tool-registry.mjs +28 -0
- package/dist/core/transport/boot-tool-registry.mjs.map +1 -0
- package/dist/core/transport/context-extractor.d.mts +3 -0
- package/dist/core/transport/context-extractor.d.mts.map +1 -0
- package/dist/core/transport/context-extractor.mjs +33 -0
- package/dist/core/transport/context-extractor.mjs.map +1 -0
- package/dist/core/transport/http-server.d.mts +19 -0
- package/dist/core/transport/http-server.d.mts.map +1 -0
- package/dist/core/transport/http-server.mjs +77 -0
- package/dist/core/transport/http-server.mjs.map +1 -0
- package/dist/core/transport/json-rpc.schema.d.mts +31 -0
- package/dist/core/transport/json-rpc.schema.d.mts.map +1 -0
- package/dist/core/transport/json-rpc.schema.mjs +34 -0
- package/dist/core/transport/json-rpc.schema.mjs.map +1 -0
- package/dist/core/transport/labre-daemon.d.mts +3 -0
- package/dist/core/transport/labre-daemon.d.mts.map +1 -0
- package/dist/core/transport/labre-daemon.mjs +66 -0
- package/dist/core/transport/labre-daemon.mjs.map +1 -0
- package/dist/core/transport/labre-stdio.d.mts +16 -0
- package/dist/core/transport/labre-stdio.d.mts.map +1 -0
- package/dist/core/transport/labre-stdio.mjs +99 -0
- package/dist/core/transport/labre-stdio.mjs.map +1 -0
- package/dist/core/transport/mcp-handler.d.mts +21 -0
- package/dist/core/transport/mcp-handler.d.mts.map +1 -0
- package/dist/core/transport/mcp-handler.mjs +95 -0
- package/dist/core/transport/mcp-handler.mjs.map +1 -0
- package/dist/core/transport/strategy-registry-boot.d.mts +15 -0
- package/dist/core/transport/strategy-registry-boot.d.mts.map +1 -0
- package/dist/core/transport/strategy-registry-boot.mjs +39 -0
- package/dist/core/transport/strategy-registry-boot.mjs.map +1 -0
- package/dist/frameworks/common/layout/quality/overlap-check-strategy.d.mts +16 -0
- package/dist/frameworks/common/layout/quality/overlap-check-strategy.d.mts.map +1 -0
- package/dist/frameworks/common/layout/quality/overlap-check-strategy.mjs +71 -0
- package/dist/frameworks/common/layout/quality/overlap-check-strategy.mjs.map +1 -0
- package/dist/frameworks/common/layout/write/place-labels-strategy.d.mts +8 -0
- package/dist/frameworks/common/layout/write/place-labels-strategy.d.mts.map +1 -0
- package/dist/frameworks/common/layout/write/place-labels-strategy.mjs +60 -0
- package/dist/frameworks/common/layout/write/place-labels-strategy.mjs.map +1 -0
- package/dist/frameworks/common/registry.d.mts +7 -0
- package/dist/frameworks/common/registry.d.mts.map +1 -0
- package/dist/frameworks/common/registry.mjs +15 -0
- package/dist/frameworks/common/registry.mjs.map +1 -0
- package/dist/frameworks/common/toolbox/list/emit/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/common/toolbox/list/emit/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/common/toolbox/list/emit/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/common/toolbox/list/emit/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/common/toolbox/wardley/json-boilerplate/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/common/toolbox/wardley/json-boilerplate/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/common/toolbox/wardley/json-boilerplate/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/common/toolbox/wardley/json-boilerplate/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/mocks-registry.d.mts +4 -0
- package/dist/frameworks/mocks-registry.d.mts.map +1 -0
- package/dist/frameworks/mocks-registry.mjs +148 -0
- package/dist/frameworks/mocks-registry.mjs.map +1 -0
- package/dist/frameworks/render/registry.d.mts +4 -0
- package/dist/frameworks/render/registry.d.mts.map +1 -0
- package/dist/frameworks/render/registry.mjs +11 -0
- package/dist/frameworks/render/registry.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/acl/value-chain.d.mts +5 -0
- package/dist/frameworks/render/wardley-map/acl/value-chain.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/acl/value-chain.mjs +139 -0
- package/dist/frameworks/render/wardley-map/acl/value-chain.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/image/config/png.mock-strategy.d.mts +15 -0
- package/dist/frameworks/render/wardley-map/image/config/png.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/image/config/png.mock-strategy.mjs +21 -0
- package/dist/frameworks/render/wardley-map/image/config/png.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/image/config/svg.mock-strategy.d.mts +15 -0
- package/dist/frameworks/render/wardley-map/image/config/svg.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/image/config/svg.mock-strategy.mjs +21 -0
- package/dist/frameworks/render/wardley-map/image/config/svg.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/image/emit/png.mock-strategy.d.mts +15 -0
- package/dist/frameworks/render/wardley-map/image/emit/png.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/image/emit/png.mock-strategy.mjs +21 -0
- package/dist/frameworks/render/wardley-map/image/emit/png.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.d.mts +11 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.mjs +61 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.mock-strategy.d.mts +15 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.mock-strategy.mjs +21 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/image/parse/png.mock-strategy.d.mts +15 -0
- package/dist/frameworks/render/wardley-map/image/parse/png.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/image/parse/png.mock-strategy.mjs +21 -0
- package/dist/frameworks/render/wardley-map/image/parse/png.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/image/parse/svg.mock-strategy.d.mts +15 -0
- package/dist/frameworks/render/wardley-map/image/parse/svg.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/image/parse/svg.mock-strategy.mjs +21 -0
- package/dist/frameworks/render/wardley-map/image/parse/svg.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/owm/config/dsl.mock-strategy.d.mts +15 -0
- package/dist/frameworks/render/wardley-map/owm/config/dsl.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/owm/config/dsl.mock-strategy.mjs +21 -0
- package/dist/frameworks/render/wardley-map/owm/config/dsl.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/base-strategy.d.mts +22 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/base-strategy.mjs +34 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/registry.d.mts +17 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/registry.mjs +83 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/base-strategy.d.mts +22 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/base-strategy.mjs +34 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/registry.d.mts +17 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/registry.mjs +83 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/base-strategy.d.mts +22 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/base-strategy.mjs +34 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/registry.d.mts +17 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/registry.mjs +83 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/base-strategy.d.mts +22 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/base-strategy.mjs +33 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/registry.d.mts +17 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/registry.mjs +86 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/emit/emit-owm.d.mts +20 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/emit/emit-owm.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/emit/emit-owm.mjs +67 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/emit/emit-owm.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/adjust-x.d.mts +31 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/adjust-x.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/adjust-x.mjs +224 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/adjust-x.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/canonical-snap.d.mts +41 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/canonical-snap.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/canonical-snap.mjs +149 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/canonical-snap.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/compute-visibility.d.mts +47 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/compute-visibility.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/compute-visibility.mjs +298 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/compute-visibility.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/force-directed.d.mts +104 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/force-directed.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/force-directed.mjs +699 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/force-directed.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/place-labels.d.mts +14 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/place-labels.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/place-labels.mjs +70 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/place-labels.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/verify-layout.d.mts +35 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/verify-layout.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/verify-layout.mjs +131 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/verify-layout.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/llm/extract-metadata.d.mts +17 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/llm/extract-metadata.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/llm/extract-metadata.mjs +58 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/llm/extract-metadata.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/base-strategy.d.mts +22 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/base-strategy.mjs +33 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/registry.d.mts +17 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/registry.mjs +100 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/generate-chain.d.mts +15 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/generate-chain.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/generate-chain.mjs +131 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/generate-chain.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/top-down-strategy.d.mts +40 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/top-down-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/top-down-strategy.mjs +143 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/top-down-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/capability/identify-capability.d.mts +42 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/capability/identify-capability.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/capability/identify-capability.mjs +134 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/capability/identify-capability.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/infer-capability-from-solution.d.mts +45 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/infer-capability-from-solution.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/infer-capability-from-solution.mjs +206 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/infer-capability-from-solution.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/wardley-type-classification.d.mts +37 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/wardley-type-classification.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/wardley-type-classification.mjs +154 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/wardley-type-classification.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/concurrent-verification.d.mts +81 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/concurrent-verification.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/concurrent-verification.mjs +317 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/concurrent-verification.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/dual-verification-orchestrator.d.mts +99 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/dual-verification-orchestrator.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/dual-verification-orchestrator.mjs +288 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/dual-verification-orchestrator.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/signal-combiner.d.mts +131 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/signal-combiner.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/signal-combiner.mjs +435 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/signal-combiner.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-reconciliation.d.mts +60 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-reconciliation.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-reconciliation.mjs +182 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-reconciliation.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-signals.d.mts +62 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-signals.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-signals.mjs +123 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-signals.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/web-search-verification.d.mts +93 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/web-search-verification.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/web-search-verification.mjs +464 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/web-search-verification.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/base-strategy.d.mts +22 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/base-strategy.mjs +33 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/registry.d.mts +17 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/registry.mjs +98 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/ast/schema-snapshot.d.mts +370 -0
- package/dist/frameworks/wardley/chain/ast/schema-snapshot.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/ast/schema-snapshot.mjs +147 -0
- package/dist/frameworks/wardley/chain/ast/schema-snapshot.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/ast/wardley-chain-ast.d.mts +224 -0
- package/dist/frameworks/wardley/chain/ast/wardley-chain-ast.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/ast/wardley-chain-ast.mjs +42 -0
- package/dist/frameworks/wardley/chain/ast/wardley-chain-ast.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/emit/owm/owm-emit-strategy.d.mts +16 -0
- package/dist/frameworks/wardley/chain/emit/owm/owm-emit-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/emit/owm/owm-emit-strategy.mjs +35 -0
- package/dist/frameworks/wardley/chain/emit/owm/owm-emit-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/read/map/owm-parser-strategy.d.mts +17 -0
- package/dist/frameworks/wardley/chain/read/map/owm-parser-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/read/map/owm-parser-strategy.mjs +45 -0
- package/dist/frameworks/wardley/chain/read/map/owm-parser-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/registry.d.mts +7 -0
- package/dist/frameworks/wardley/chain/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/registry.mjs +28 -0
- package/dist/frameworks/wardley/chain/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/inertia-analysis.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/inertia-analysis.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/inertia-analysis.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/inertia-analysis.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/list.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/list.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/list.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/list.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/kanban-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/kanban-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/kanban-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/kanban-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/list-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/list-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/list-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/list-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/climate/wiki/detail/wiki-url.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/climate/wiki/detail/wiki-url.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/climate/wiki/detail/wiki-url.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/climate/wiki/detail/wiki-url.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/climate/wiki/list/kanban-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/climate/wiki/list/kanban-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/climate/wiki/list/kanban-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/climate/wiki/list/kanban-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/climate/wiki/list/list-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/climate/wiki/list/list-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/climate/wiki/list/list-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/climate/wiki/list/list-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/phase-assessment.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/phase-assessment.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/phase-assessment.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/phase-assessment.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/three-judgement-assessment.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/three-judgement-assessment.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/three-judgement-assessment.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/three-judgement-assessment.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view-group-by-phase.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view-group-by-phase.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view-group-by-phase.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view-group-by-phase.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/list-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/list-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/list-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/list-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/organisation.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/organisation.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/organisation.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/organisation.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/personal.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/personal.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/personal.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/personal.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/detail/wiki-url.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/wiki/detail/wiki-url.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/detail/wiki-url.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/wiki/detail/wiki-url.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/doctrinal-analysis/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/wiki/doctrinal-analysis/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/doctrinal-analysis/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/wiki/doctrinal-analysis/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/kanban-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/kanban-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/kanban-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/kanban-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/phase-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/phase-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/phase-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/phase-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/base-strategy.d.mts +22 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/base-strategy.mjs +36 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/registry.d.mts +17 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/registry.mjs +83 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/estimate-evolution.d.mts +78 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/estimate-evolution.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/estimate-evolution.mjs +641 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/estimate-evolution.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/evaluate-map/evaluate-map.d.mts +48 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/evaluate-map/evaluate-map.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/evaluate-map/evaluate-map.mjs +435 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/evaluate-map/evaluate-map.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/lib/evolution-input-validation.d.mts +37 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/lib/evolution-input-validation.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/lib/evolution-input-validation.mjs +51 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/lib/evolution-input-validation.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-mapper.d.mts +128 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-mapper.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-mapper.mjs +298 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-mapper.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-taxonomy-cache.d.mts +91 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-taxonomy-cache.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-taxonomy-cache.mjs +319 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-taxonomy-cache.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/pipeline/pipeline-enriched.d.mts +187 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/pipeline/pipeline-enriched.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/pipeline/pipeline-enriched.mjs +549 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/pipeline/pipeline-enriched.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/classification-gate.d.mts +19 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/classification-gate.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/classification-gate.mjs +192 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/classification-gate.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/detect-solution.d.mts +104 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/detect-solution.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/detect-solution.mjs +452 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/detect-solution.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/mode-router.d.mts +49 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/mode-router.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/mode-router.mjs +390 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/mode-router.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-capability-router.d.mts +4 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-capability-router.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-capability-router.mjs +36 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-capability-router.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-dispatch.d.mts +91 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-dispatch.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-dispatch.mjs +242 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-dispatch.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/strategy-resolver.d.mts +20 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/strategy-resolver.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/strategy-resolver.mjs +32 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/strategy-resolver.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve-transform.d.ts +3 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve-transform.d.ts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve-transform.js +96 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve-transform.js.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve.d.mts +37 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve.mjs +93 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/skill-handler.d.mts +99 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/skill-handler.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/skill-handler.mjs +609 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/skill-handler.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/anchor/estimate-anchor-evolution.d.mts +24 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/anchor/estimate-anchor-evolution.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/anchor/estimate-anchor-evolution.mjs +156 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/anchor/estimate-anchor-evolution.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/base-strategy.d.mts +72 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/base-strategy.mjs +98 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/cpc-evolution-strategy.d.mts +324 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/cpc-evolution-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/cpc-evolution-strategy.mjs +788 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/cpc-evolution-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/llm-direct-strategy.d.mts +18 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/llm-direct-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/llm-direct-strategy.mjs +98 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/llm-direct-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/logprob-distribution-strategy.d.mts +38 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/logprob-distribution-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/logprob-distribution-strategy.mjs +178 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/logprob-distribution-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/publication-analysis-strategy.d.mts +24 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/publication-analysis-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/publication-analysis-strategy.mjs +110 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/publication-analysis-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/registry.d.mts +28 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/registry.mjs +102 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/s-curve-strategy.d.mts +8 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/s-curve-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/s-curve-strategy.mjs +58 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/s-curve-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/timeline-benchmark-strategy.d.mts +63 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/timeline-benchmark-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/timeline-benchmark-strategy.mjs +287 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/timeline-benchmark-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/aggregate-properties.d.mts +197 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/aggregate-properties.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/aggregate-properties.mjs +416 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/aggregate-properties.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/assemble-result.d.mts +91 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/assemble-result.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/assemble-result.mjs +236 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/assemble-result.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/phase-classifier.d.mts +211 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/phase-classifier.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/phase-classifier.mjs +453 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/phase-classifier.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/properties-strategy.d.mts +113 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/properties-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/properties-strategy.mjs +549 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/properties-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/registry.d.mts +18 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/registry.mjs +73 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-base-strategy.d.mts +163 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-base-strategy.mjs +228 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-evolution-result.d.mts +361 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-evolution-result.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-evolution-result.mjs +604 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-evolution-result.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/ast/wardley-evolution-ast.d.mts +135 -0
- package/dist/frameworks/wardley/evolution/ast/wardley-evolution-ast.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/ast/wardley-evolution-ast.mjs +94 -0
- package/dist/frameworks/wardley/evolution/ast/wardley-evolution-ast.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/registry.d.mts +8 -0
- package/dist/frameworks/wardley/evolution/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/registry.mjs +42 -0
- package/dist/frameworks/wardley/evolution/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/gameplay/simon-wardley/list/list-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/gameplay/simon-wardley/list/list-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/gameplay/simon-wardley/list/list-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/gameplay/simon-wardley/list/list-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/gameplay/wiki/detail/wiki-url.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/gameplay/wiki/detail/wiki-url.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/gameplay/wiki/detail/wiki-url.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/gameplay/wiki/detail/wiki-url.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/gameplay/wiki/list/list-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/gameplay/wiki/list/list-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/gameplay/wiki/list/list-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/gameplay/wiki/list/list-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/act/next-step/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/act/next-step/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/act/next-step/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/act/next-step/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/decide/next-step/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/decide/next-step/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/decide/next-step/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/decide/next-step/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/observe/next-step/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/observe/next-step/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/observe/next-step/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/observe/next-step/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/orient/next-step/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/orient/next-step/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/orient/next-step/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/orient/next-step/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/purpose/audit-purpose-quality/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/purpose/audit-purpose-quality/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/purpose/audit-purpose-quality/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/purpose/audit-purpose-quality/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/purpose/generate/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/purpose/generate/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/purpose/generate/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/purpose/generate/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/explain/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/explain/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/explain/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/explain/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/guide/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/guide/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/guide/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/guide/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/why-of-movement/guide/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/why-of-movement/guide/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/why-of-movement/guide/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/why-of-movement/guide/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/why-of-purpose/guide/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/why-of-purpose/guide/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/why-of-purpose/guide/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/why-of-purpose/guide/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.d.mts +13 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.mjs +47 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.mjs.map +1 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/climate/identify/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/climate/identify/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/climate/identify/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/climate/identify/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/climate/identify-method-issues/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/climate/identify-method-issues/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/climate/identify-method-issues/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/climate/identify-method-issues/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/climate/inertia-identification/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/climate/inertia-identification/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/climate/inertia-identification/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/climate/inertia-identification/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/climate/position-value-chain-in-evolution/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/climate/position-value-chain-in-evolution/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/climate/position-value-chain-in-evolution/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/climate/position-value-chain-in-evolution/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/config/x-axis/custom.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/config/x-axis/custom.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/config/x-axis/custom.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/config/x-axis/custom.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/config/x-axis/standard.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/config/x-axis/standard.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/config/x-axis/standard.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/config/x-axis/standard.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/config/y-axis/custom.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/config/y-axis/custom.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/config/y-axis/custom.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/config/y-axis/custom.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/config/y-axis/standard.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/config/y-axis/standard.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/config/y-axis/standard.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/config/y-axis/standard.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/doctrine/identify-the-method/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/doctrine/identify-the-method/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/doctrine/identify-the-method/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/doctrine/identify-the-method/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/doctrine/orient-path-where-to-invest/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/doctrine/orient-path-where-to-invest/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/doctrine/orient-path-where-to-invest/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/doctrine/orient-path-where-to-invest/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/gameplay/recommend-strategy-over-the-map/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/gameplay/recommend-strategy-over-the-map/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/gameplay/recommend-strategy-over-the-map/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/gameplay/recommend-strategy-over-the-map/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/node/classify-point-of-change/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/node/classify-point-of-change/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/node/classify-point-of-change/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/node/classify-point-of-change/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/node/generate-node-from-pipeline/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/node/generate-node-from-pipeline/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/node/generate-node-from-pipeline/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/node/generate-node-from-pipeline/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline-from-component/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline-from-component/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline-from-component/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline-from-component/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/node/identify-method/buy-policy.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/node/identify-method/buy-policy.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/node/identify-method/buy-policy.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/node/identify-method/buy-policy.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/node/identify-method/project-management.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/node/identify-method/project-management.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/node/identify-method/project-management.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/node/identify-method/project-management.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/node/identify-point-of-change/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/node/identify-point-of-change/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/node/identify-point-of-change/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/node/identify-point-of-change/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/output/read/where-to-invest.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/output/read/where-to-invest.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/output/read/where-to-invest.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/output/read/where-to-invest.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/output/update/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/output/update/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/output/update/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/output/update/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/quality/audit/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/quality/audit/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/quality/audit/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/quality/audit/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/audit/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/value-chain/audit/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/audit/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/value-chain/audit/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/generate/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/value-chain/generate/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/generate/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/value-chain/generate/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/generate/top-down.d.mts +13 -0
- package/dist/frameworks/wardley/map/value-chain/generate/top-down.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/generate/top-down.mjs +105 -0
- package/dist/frameworks/wardley/map/value-chain/generate/top-down.mjs.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.d.mts +8 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.mjs +182 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.mjs.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/read/pipeline-opportunity.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/value-chain/read/pipeline-opportunity.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/read/pipeline-opportunity.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/value-chain/read/pipeline-opportunity.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/select-by-type/component.d.mts +8 -0
- package/dist/frameworks/wardley/map/value-chain/select-by-type/component.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/select-by-type/component.mjs +66 -0
- package/dist/frameworks/wardley/map/value-chain/select-by-type/component.mjs.map +1 -0
- package/dist/frameworks/wardley/map/zonage/generate/coherent-cluster.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/zonage/generate/coherent-cluster.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/zonage/generate/coherent-cluster.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/zonage/generate/coherent-cluster.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/zonage/generate/pst-analysis.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/zonage/generate/pst-analysis.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/zonage/generate/pst-analysis.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/zonage/generate/pst-analysis.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/zonage/generate/teams.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/zonage/generate/teams.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/zonage/generate/teams.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/zonage/generate/teams.mock-strategy.mjs.map +1 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -0
- package/dist/lib/component-detection.d.mts +161 -0
- package/dist/lib/component-detection.d.mts.map +1 -0
- package/dist/lib/component-detection.mjs +267 -0
- package/dist/lib/component-detection.mjs.map +1 -0
- package/dist/lib/degradation/collector.d.mts +50 -0
- package/dist/lib/degradation/collector.d.mts.map +1 -0
- package/dist/lib/degradation/collector.mjs +93 -0
- package/dist/lib/degradation/collector.mjs.map +1 -0
- package/dist/lib/degradation/context.d.mts +22 -0
- package/dist/lib/degradation/context.d.mts.map +1 -0
- package/dist/lib/degradation/context.mjs +39 -0
- package/dist/lib/degradation/context.mjs.map +1 -0
- package/dist/lib/degradation/index.d.mts +9 -0
- package/dist/lib/degradation/index.d.mts.map +1 -0
- package/dist/lib/degradation/index.mjs +17 -0
- package/dist/lib/degradation/index.mjs.map +1 -0
- package/dist/lib/degradation/mcp-wrapper.d.mts +27 -0
- package/dist/lib/degradation/mcp-wrapper.d.mts.map +1 -0
- package/dist/lib/degradation/mcp-wrapper.mjs +45 -0
- package/dist/lib/degradation/mcp-wrapper.mjs.map +1 -0
- package/dist/lib/degradation/registry.d.mts +32 -0
- package/dist/lib/degradation/registry.d.mts.map +1 -0
- package/dist/lib/degradation/registry.mjs +79 -0
- package/dist/lib/degradation/registry.mjs.map +1 -0
- package/dist/lib/degradation/types.d.mts +41 -0
- package/dist/lib/degradation/types.d.mts.map +1 -0
- package/dist/lib/degradation/types.mjs +10 -0
- package/dist/lib/degradation/types.mjs.map +1 -0
- package/dist/lib/degradation/with-degradation.d.mts +34 -0
- package/dist/lib/degradation/with-degradation.d.mts.map +1 -0
- package/dist/lib/degradation/with-degradation.mjs +51 -0
- package/dist/lib/degradation/with-degradation.mjs.map +1 -0
- package/dist/lib/errors.d.mts +10 -0
- package/dist/lib/errors.d.mts.map +1 -0
- package/dist/lib/errors.mjs +33 -0
- package/dist/lib/errors.mjs.map +1 -0
- package/dist/lib/known-dictionaries.d.mts +38 -0
- package/dist/lib/known-dictionaries.d.mts.map +1 -0
- package/dist/lib/known-dictionaries.mjs +326 -0
- package/dist/lib/known-dictionaries.mjs.map +1 -0
- package/dist/lib/language-detect.d.mts +33 -0
- package/dist/lib/language-detect.d.mts.map +1 -0
- package/dist/lib/language-detect.mjs +217 -0
- package/dist/lib/language-detect.mjs.map +1 -0
- package/dist/lib/llm/config.loader.d.mts +6 -0
- package/dist/lib/llm/config.loader.d.mts.map +1 -0
- package/dist/lib/llm/config.loader.mjs +51 -0
- package/dist/lib/llm/config.loader.mjs.map +1 -0
- package/dist/lib/llm/config.schema.d.mts +60 -0
- package/dist/lib/llm/config.schema.d.mts.map +1 -0
- package/dist/lib/llm/config.schema.mjs +49 -0
- package/dist/lib/llm/config.schema.mjs.map +1 -0
- package/dist/lib/llm/copilot-sdk-call.d.mts +21 -0
- package/dist/lib/llm/copilot-sdk-call.d.mts.map +1 -0
- package/dist/lib/llm/copilot-sdk-call.mjs +211 -0
- package/dist/lib/llm/copilot-sdk-call.mjs.map +1 -0
- package/dist/lib/llm/llm-call.d.mts +18 -0
- package/dist/lib/llm/llm-call.d.mts.map +1 -0
- package/dist/lib/llm/llm-call.mjs +286 -0
- package/dist/lib/llm/llm-call.mjs.map +1 -0
- package/dist/lib/llm/llm-error-handler.d.mts +40 -0
- package/dist/lib/llm/llm-error-handler.d.mts.map +1 -0
- package/dist/lib/llm/llm-error-handler.mjs +159 -0
- package/dist/lib/llm/llm-error-handler.mjs.map +1 -0
- package/dist/lib/llm/providers/agent-sdk-provider.d.mts +3 -0
- package/dist/lib/llm/providers/agent-sdk-provider.d.mts.map +1 -0
- package/dist/lib/llm/providers/agent-sdk-provider.mjs +29 -0
- package/dist/lib/llm/providers/agent-sdk-provider.mjs.map +1 -0
- package/dist/lib/llm/providers/copilot-sdk-provider.d.mts +4 -0
- package/dist/lib/llm/providers/copilot-sdk-provider.d.mts.map +1 -0
- package/dist/lib/llm/providers/copilot-sdk-provider.mjs +37 -0
- package/dist/lib/llm/providers/copilot-sdk-provider.mjs.map +1 -0
- package/dist/lib/llm/providers/http-api-provider.d.mts +4 -0
- package/dist/lib/llm/providers/http-api-provider.d.mts.map +1 -0
- package/dist/lib/llm/providers/http-api-provider.mjs +35 -0
- package/dist/lib/llm/providers/http-api-provider.mjs.map +1 -0
- package/dist/lib/llm/providers/provider.types.d.mts +15 -0
- package/dist/lib/llm/providers/provider.types.d.mts.map +1 -0
- package/dist/lib/llm/providers/provider.types.mjs +11 -0
- package/dist/lib/llm/providers/provider.types.mjs.map +1 -0
- package/dist/lib/llm/registry.d.mts +11 -0
- package/dist/lib/llm/registry.d.mts.map +1 -0
- package/dist/lib/llm/registry.mjs +126 -0
- package/dist/lib/llm/registry.mjs.map +1 -0
- package/dist/lib/llm/strategy-ids.d.mts +17 -0
- package/dist/lib/llm/strategy-ids.d.mts.map +1 -0
- package/dist/lib/llm/strategy-ids.mjs +19 -0
- package/dist/lib/llm/strategy-ids.mjs.map +1 -0
- package/dist/lib/mcp-notifications.d.mts +63 -0
- package/dist/lib/mcp-notifications.d.mts.map +1 -0
- package/dist/lib/mcp-notifications.mjs +130 -0
- package/dist/lib/mcp-notifications.mjs.map +1 -0
- package/dist/lib/owm/analytical-geometry.d.mts +26 -0
- package/dist/lib/owm/analytical-geometry.d.mts.map +1 -0
- package/dist/lib/owm/analytical-geometry.mjs +116 -0
- package/dist/lib/owm/analytical-geometry.mjs.map +1 -0
- package/dist/lib/owm/cli-owm-adapter.d.mts +5 -0
- package/dist/lib/owm/cli-owm-adapter.d.mts.map +1 -0
- package/dist/lib/owm/cli-owm-adapter.mjs +26 -0
- package/dist/lib/owm/cli-owm-adapter.mjs.map +1 -0
- package/dist/lib/owm/overlap-detector.d.mts +93 -0
- package/dist/lib/owm/overlap-detector.d.mts.map +1 -0
- package/dist/lib/owm/overlap-detector.mjs +325 -0
- package/dist/lib/owm/overlap-detector.mjs.map +1 -0
- package/dist/lib/owm/owm-dsl.d.mts +123 -0
- package/dist/lib/owm/owm-dsl.d.mts.map +1 -0
- package/dist/lib/owm/owm-dsl.mjs +330 -0
- package/dist/lib/owm/owm-dsl.mjs.map +1 -0
- package/dist/lib/owm/render-adapter.d.mts +8 -0
- package/dist/lib/owm/render-adapter.d.mts.map +1 -0
- package/dist/lib/owm/render-adapter.mjs +19 -0
- package/dist/lib/owm/render-adapter.mjs.map +1 -0
- package/dist/lib/owm/svg-bbox-parser.d.mts +77 -0
- package/dist/lib/owm/svg-bbox-parser.d.mts.map +1 -0
- package/dist/lib/owm/svg-bbox-parser.mjs +251 -0
- package/dist/lib/owm/svg-bbox-parser.mjs.map +1 -0
- package/dist/lib/patent/bigquery-client.d.mts +124 -0
- package/dist/lib/patent/bigquery-client.d.mts.map +1 -0
- package/dist/lib/patent/bigquery-client.mjs +298 -0
- package/dist/lib/patent/bigquery-client.mjs.map +1 -0
- package/dist/lib/patent/bigquery-patent-constants.d.mts +10 -0
- package/dist/lib/patent/bigquery-patent-constants.d.mts.map +1 -0
- package/dist/lib/patent/bigquery-patent-constants.mjs +18 -0
- package/dist/lib/patent/bigquery-patent-constants.mjs.map +1 -0
- package/dist/lib/patent/bigquery-patent-source.d.mts +216 -0
- package/dist/lib/patent/bigquery-patent-source.d.mts.map +1 -0
- package/dist/lib/patent/bigquery-patent-source.mjs +488 -0
- package/dist/lib/patent/bigquery-patent-source.mjs.map +1 -0
- package/dist/lib/patent/bigquery-query-builders.d.mts +205 -0
- package/dist/lib/patent/bigquery-query-builders.d.mts.map +1 -0
- package/dist/lib/patent/bigquery-query-builders.mjs +538 -0
- package/dist/lib/patent/bigquery-query-builders.mjs.map +1 -0
- package/dist/lib/patent/mock-patent-source.d.mts +285 -0
- package/dist/lib/patent/mock-patent-source.d.mts.map +1 -0
- package/dist/lib/patent/mock-patent-source.mjs +321 -0
- package/dist/lib/patent/mock-patent-source.mjs.map +1 -0
- package/dist/lib/patent/patent-data-source.d.mts +176 -0
- package/dist/lib/patent/patent-data-source.d.mts.map +1 -0
- package/dist/lib/patent/patent-data-source.mjs +124 -0
- package/dist/lib/patent/patent-data-source.mjs.map +1 -0
- package/dist/lib/patent/patent-indicators.d.mts +162 -0
- package/dist/lib/patent/patent-indicators.d.mts.map +1 -0
- package/dist/lib/patent/patent-indicators.mjs +374 -0
- package/dist/lib/patent/patent-indicators.mjs.map +1 -0
- package/dist/lib/phase-distribution.d.mts +21 -0
- package/dist/lib/phase-distribution.d.mts.map +1 -0
- package/dist/lib/phase-distribution.mjs +66 -0
- package/dist/lib/phase-distribution.mjs.map +1 -0
- package/dist/lib/progress-messages.d.mts +377 -0
- package/dist/lib/progress-messages.d.mts.map +1 -0
- package/dist/lib/progress-messages.mjs +408 -0
- package/dist/lib/progress-messages.mjs.map +1 -0
- package/dist/lib/prompts/builders-registry.d.mts +12 -0
- package/dist/lib/prompts/builders-registry.d.mts.map +1 -0
- package/dist/lib/prompts/builders-registry.mjs +31 -0
- package/dist/lib/prompts/builders-registry.mjs.map +1 -0
- package/dist/lib/prompts/config.loader.d.mts +21 -0
- package/dist/lib/prompts/config.loader.d.mts.map +1 -0
- package/dist/lib/prompts/config.loader.mjs +143 -0
- package/dist/lib/prompts/config.loader.mjs.map +1 -0
- package/dist/lib/prompts/init.d.mts +2 -0
- package/dist/lib/prompts/init.d.mts.map +1 -0
- package/dist/lib/prompts/init.mjs +43 -0
- package/dist/lib/prompts/init.mjs.map +1 -0
- package/dist/lib/prompts/interpolate.d.mts +2 -0
- package/dist/lib/prompts/interpolate.d.mts.map +1 -0
- package/dist/lib/prompts/interpolate.mjs +12 -0
- package/dist/lib/prompts/interpolate.mjs.map +1 -0
- package/dist/lib/prompts/parsers-registry.d.mts +7 -0
- package/dist/lib/prompts/parsers-registry.d.mts.map +1 -0
- package/dist/lib/prompts/parsers-registry.mjs +27 -0
- package/dist/lib/prompts/parsers-registry.mjs.map +1 -0
- package/dist/lib/prompts/parsers.d.mts +13 -0
- package/dist/lib/prompts/parsers.d.mts.map +1 -0
- package/dist/lib/prompts/parsers.mjs +29 -0
- package/dist/lib/prompts/parsers.mjs.map +1 -0
- package/dist/lib/prompts/prompts.schema.d.mts +92 -0
- package/dist/lib/prompts/prompts.schema.d.mts.map +1 -0
- package/dist/lib/prompts/prompts.schema.mjs +50 -0
- package/dist/lib/prompts/prompts.schema.mjs.map +1 -0
- package/dist/lib/prompts/registry.d.mts +14 -0
- package/dist/lib/prompts/registry.d.mts.map +1 -0
- package/dist/lib/prompts/registry.mjs +100 -0
- package/dist/lib/prompts/registry.mjs.map +1 -0
- package/dist/lib/response-formatter.d.mts +115 -0
- package/dist/lib/response-formatter.d.mts.map +1 -0
- package/dist/lib/response-formatter.mjs +591 -0
- package/dist/lib/response-formatter.mjs.map +1 -0
- package/dist/lib/tool-config/loader.d.mts +8 -0
- package/dist/lib/tool-config/loader.d.mts.map +1 -0
- package/dist/lib/tool-config/loader.mjs +63 -0
- package/dist/lib/tool-config/loader.mjs.map +1 -0
- package/dist/lib/tool-config/tool-config.schema.d.mts +19 -0
- package/dist/lib/tool-config/tool-config.schema.d.mts.map +1 -0
- package/dist/lib/tool-config/tool-config.schema.mjs +32 -0
- package/dist/lib/tool-config/tool-config.schema.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/index.d.mts +8 -0
- package/dist/lib/vendor/cli-owm/index.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/index.mjs +20 -0
- package/dist/lib/vendor/cli-owm/index.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/BaseStrategyRunner.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/BaseStrategyRunner.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/BaseStrategyRunner.mjs +44 -0
- package/dist/lib/vendor/cli-owm/parser/BaseStrategyRunner.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/Converter.d.mts +10 -0
- package/dist/lib/vendor/cli-owm/parser/Converter.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/Converter.mjs +98 -0
- package/dist/lib/vendor/cli-owm/parser/Converter.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/ParseError.d.mts +5 -0
- package/dist/lib/vendor/cli-owm/parser/ParseError.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/ParseError.mjs +9 -0
- package/dist/lib/vendor/cli-owm/parser/ParseError.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/PipelineStrategyRunner.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/PipelineStrategyRunner.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/PipelineStrategyRunner.mjs +94 -0
- package/dist/lib/vendor/cli-owm/parser/PipelineStrategyRunner.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/UnifiedConverter.d.mts +21 -0
- package/dist/lib/vendor/cli-owm/parser/UnifiedConverter.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/UnifiedConverter.mjs +137 -0
- package/dist/lib/vendor/cli-owm/parser/UnifiedConverter.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/defaults.d.mts +11 -0
- package/dist/lib/vendor/cli-owm/parser/defaults.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/defaults.mjs +7 -0
- package/dist/lib/vendor/cli-owm/parser/defaults.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/extractionFunctions.d.mts +114 -0
- package/dist/lib/vendor/cli-owm/parser/extractionFunctions.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/extractionFunctions.mjs +286 -0
- package/dist/lib/vendor/cli-owm/parser/extractionFunctions.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AcceleratorExtractionStrategy.d.mts +13 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AcceleratorExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AcceleratorExtractionStrategy.mjs +26 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AcceleratorExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnchorExtractionStrategy.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnchorExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnchorExtractionStrategy.mjs +23 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnchorExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnnotationExtractionStrategy.d.mts +14 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnnotationExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnnotationExtractionStrategy.mjs +27 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnnotationExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AttitudeExtractionStrategy.d.mts +13 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AttitudeExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AttitudeExtractionStrategy.mjs +26 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AttitudeExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ComponentExtractionStrategy.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ComponentExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ComponentExtractionStrategy.mjs +43 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ComponentExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/EvolveExtractionStrategy.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/EvolveExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/EvolveExtractionStrategy.mjs +24 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/EvolveExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ExtendableComponentExtractionStrategy.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ExtendableComponentExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ExtendableComponentExtractionStrategy.mjs +29 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ExtendableComponentExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/LinksExtractionStrategy.d.mts +29 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/LinksExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/LinksExtractionStrategy.mjs +122 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/LinksExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/NoteExtractionStrategy.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/NoteExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/NoteExtractionStrategy.mjs +22 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/NoteExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PipelineExtractionStrategy.d.mts +10 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PipelineExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PipelineExtractionStrategy.mjs +32 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PipelineExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PresentationExtractionStrategy.d.mts +10 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PresentationExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PresentationExtractionStrategy.mjs +36 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PresentationExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/SubMapExtractionStrategy.d.mts +15 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/SubMapExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/SubMapExtractionStrategy.mjs +19 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/SubMapExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/TitleExtractionStrategy.d.mts +10 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/TitleExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/TitleExtractionStrategy.mjs +19 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/TitleExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/UrlExtractionStrategy.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/UrlExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/UrlExtractionStrategy.mjs +22 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/UrlExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/XAxisLabelsExtractionStrategy.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/XAxisLabelsExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/XAxisLabelsExtractionStrategy.mjs +40 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/XAxisLabelsExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/base.d.mts +191 -0
- package/dist/lib/vendor/cli-owm/parser/types/base.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/base.mjs +2 -0
- package/dist/lib/vendor/cli-owm/parser/types/base.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/components.d.mts +88 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/components.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/components.mjs +60 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/components.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/index.d.mts +7 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/index.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/index.mjs +4 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/index.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/links.d.mts +33 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/links.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/links.mjs +24 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/links.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/map.d.mts +34 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/map.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/map.mjs +35 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/map.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/render.d.mts +24 -0
- package/dist/lib/vendor/cli-owm/render.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/render.mjs +453 -0
- package/dist/lib/vendor/cli-owm/render.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/themes.d.mts +113 -0
- package/dist/lib/vendor/cli-owm/themes.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/themes.mjs +226 -0
- package/dist/lib/vendor/cli-owm/themes.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/version.d.mts +2 -0
- package/dist/lib/vendor/cli-owm/version.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/version.mjs +2 -0
- package/dist/lib/vendor/cli-owm/version.mjs.map +1 -0
- package/dist/lib/zod/validate-or-throw.d.mts +15 -0
- package/dist/lib/zod/validate-or-throw.d.mts.map +1 -0
- package/dist/lib/zod/validate-or-throw.mjs +30 -0
- package/dist/lib/zod/validate-or-throw.mjs.map +1 -0
- package/dist/mcp/boot-health-checks.d.mts +7 -0
- package/dist/mcp/boot-health-checks.d.mts.map +1 -0
- package/dist/mcp/boot-health-checks.mjs +114 -0
- package/dist/mcp/boot-health-checks.mjs.map +1 -0
- package/dist/mcp/estimate-anchor-evolution.tool.d.mts +4 -0
- package/dist/mcp/estimate-anchor-evolution.tool.d.mts.map +1 -0
- package/dist/mcp/estimate-anchor-evolution.tool.mjs +22 -0
- package/dist/mcp/estimate-anchor-evolution.tool.mjs.map +1 -0
- package/dist/mcp/estimate-evolution-via-recipe.d.mts +14 -0
- package/dist/mcp/estimate-evolution-via-recipe.d.mts.map +1 -0
- package/dist/mcp/estimate-evolution-via-recipe.mjs +67 -0
- package/dist/mcp/estimate-evolution-via-recipe.mjs.map +1 -0
- package/dist/mcp/estimate-evolution.tool.d.mts +3 -0
- package/dist/mcp/estimate-evolution.tool.d.mts.map +1 -0
- package/dist/mcp/estimate-evolution.tool.mjs +27 -0
- package/dist/mcp/estimate-evolution.tool.mjs.map +1 -0
- package/dist/mcp/evaluate-map.tool.d.mts +4 -0
- package/dist/mcp/evaluate-map.tool.d.mts.map +1 -0
- package/dist/mcp/evaluate-map.tool.mjs +22 -0
- package/dist/mcp/evaluate-map.tool.mjs.map +1 -0
- package/dist/mcp/generate-value-chain.tool.d.mts +10 -0
- package/dist/mcp/generate-value-chain.tool.d.mts.map +1 -0
- package/dist/mcp/generate-value-chain.tool.mjs +33 -0
- package/dist/mcp/generate-value-chain.tool.mjs.map +1 -0
- package/dist/mcp/identify-capability.tool.d.mts +4 -0
- package/dist/mcp/identify-capability.tool.d.mts.map +1 -0
- package/dist/mcp/identify-capability.tool.mjs +31 -0
- package/dist/mcp/identify-capability.tool.mjs.map +1 -0
- package/dist/mcp/mcp-server.d.mts +29 -0
- package/dist/mcp/mcp-server.d.mts.map +1 -0
- package/dist/mcp/mcp-server.mjs +282 -0
- package/dist/mcp/mcp-server.mjs.map +1 -0
- package/dist/mcp/mcp-tool.d.mts +36 -0
- package/dist/mcp/mcp-tool.d.mts.map +1 -0
- package/dist/mcp/mcp-tool.mjs +144 -0
- package/dist/mcp/mcp-tool.mjs.map +1 -0
- package/dist/mcp/resolve-context.d.mts +3 -0
- package/dist/mcp/resolve-context.d.mts.map +1 -0
- package/dist/mcp/resolve-context.mjs +28 -0
- package/dist/mcp/resolve-context.mjs.map +1 -0
- package/dist/mcp/run-command.tool.d.mts +3 -0
- package/dist/mcp/run-command.tool.d.mts.map +1 -0
- package/dist/mcp/run-command.tool.mjs +70 -0
- package/dist/mcp/run-command.tool.mjs.map +1 -0
- package/dist/mcp/run-recipe.tool.d.mts +13 -0
- package/dist/mcp/run-recipe.tool.d.mts.map +1 -0
- package/dist/mcp/run-recipe.tool.mjs +79 -0
- package/dist/mcp/run-recipe.tool.mjs.map +1 -0
- package/dist/mcp/shipped-root.d.mts +2 -0
- package/dist/mcp/shipped-root.d.mts.map +1 -0
- package/dist/mcp/shipped-root.mjs +16 -0
- package/dist/mcp/shipped-root.mjs.map +1 -0
- package/dist/schemas/command.schema.d.mts +95 -0
- package/dist/schemas/command.schema.d.mts.map +1 -0
- package/dist/schemas/command.schema.mjs +84 -0
- package/dist/schemas/command.schema.mjs.map +1 -0
- package/dist/schemas/domain.schema.d.mts +63 -0
- package/dist/schemas/domain.schema.d.mts.map +1 -0
- package/dist/schemas/domain.schema.mjs +53 -0
- package/dist/schemas/domain.schema.mjs.map +1 -0
- package/dist/schemas/estimate-anchor-evolution.schema.d.mts +8 -0
- package/dist/schemas/estimate-anchor-evolution.schema.d.mts.map +1 -0
- package/dist/schemas/estimate-anchor-evolution.schema.mjs +9 -0
- package/dist/schemas/estimate-anchor-evolution.schema.mjs.map +1 -0
- package/dist/schemas/estimate-evolution.schema.d.mts +30 -0
- package/dist/schemas/estimate-evolution.schema.d.mts.map +1 -0
- package/dist/schemas/estimate-evolution.schema.mjs +41 -0
- package/dist/schemas/estimate-evolution.schema.mjs.map +1 -0
- package/dist/schemas/evaluate-map.schema.d.mts +8 -0
- package/dist/schemas/evaluate-map.schema.d.mts.map +1 -0
- package/dist/schemas/evaluate-map.schema.mjs +10 -0
- package/dist/schemas/evaluate-map.schema.mjs.map +1 -0
- package/dist/schemas/generate-value-chain.schema.d.mts +30 -0
- package/dist/schemas/generate-value-chain.schema.d.mts.map +1 -0
- package/dist/schemas/generate-value-chain.schema.mjs +19 -0
- package/dist/schemas/generate-value-chain.schema.mjs.map +1 -0
- package/dist/schemas/identify-capability.schema.d.mts +15 -0
- package/dist/schemas/identify-capability.schema.d.mts.map +1 -0
- package/dist/schemas/identify-capability.schema.mjs +9 -0
- package/dist/schemas/identify-capability.schema.mjs.map +1 -0
- package/dist/schemas/inputs.schema.d.mts +150 -0
- package/dist/schemas/inputs.schema.d.mts.map +1 -0
- package/dist/schemas/inputs.schema.mjs +107 -0
- package/dist/schemas/inputs.schema.mjs.map +1 -0
- package/dist/schemas/json-labre.schema.d.mts +3591 -0
- package/dist/schemas/json-labre.schema.d.mts.map +1 -0
- package/dist/schemas/json-labre.schema.mjs +30 -0
- package/dist/schemas/json-labre.schema.mjs.map +1 -0
- package/dist/schemas/parsed-llm.schema.d.mts +33 -0
- package/dist/schemas/parsed-llm.schema.d.mts.map +1 -0
- package/dist/schemas/parsed-llm.schema.mjs +29 -0
- package/dist/schemas/parsed-llm.schema.mjs.map +1 -0
- package/dist/schemas/patent.schema.d.mts +79 -0
- package/dist/schemas/patent.schema.d.mts.map +1 -0
- package/dist/schemas/patent.schema.mjs +50 -0
- package/dist/schemas/patent.schema.mjs.map +1 -0
- package/dist/schemas/render-config-passthrough.d.mts +5 -0
- package/dist/schemas/render-config-passthrough.d.mts.map +1 -0
- package/dist/schemas/render-config-passthrough.mjs +25 -0
- package/dist/schemas/render-config-passthrough.mjs.map +1 -0
- package/dist/schemas/results.schema.d.mts +57 -0
- package/dist/schemas/results.schema.d.mts.map +1 -0
- package/dist/schemas/results.schema.mjs +36 -0
- package/dist/schemas/results.schema.mjs.map +1 -0
- package/dist/schemas/run-recipe.schema.d.mts +7 -0
- package/dist/schemas/run-recipe.schema.d.mts.map +1 -0
- package/dist/schemas/run-recipe.schema.mjs +19 -0
- package/dist/schemas/run-recipe.schema.mjs.map +1 -0
- package/dist/schemas/value-chain.schema.d.mts +112 -0
- package/dist/schemas/value-chain.schema.d.mts.map +1 -0
- package/dist/schemas/value-chain.schema.mjs +50 -0
- package/dist/schemas/value-chain.schema.mjs.map +1 -0
- package/dist/schemas/wardley-map.schema.d.mts +2 -0
- package/dist/schemas/wardley-map.schema.d.mts.map +1 -0
- package/dist/schemas/wardley-map.schema.mjs +11 -0
- package/dist/schemas/wardley-map.schema.mjs.map +1 -0
- package/dist/session/conversation-session.d.mts +147 -0
- package/dist/session/conversation-session.d.mts.map +1 -0
- package/dist/session/conversation-session.mjs +685 -0
- package/dist/session/conversation-session.mjs.map +1 -0
- package/dist/types/classification.d.mts +14 -0
- package/dist/types/classification.d.mts.map +1 -0
- package/dist/types/classification.mjs +6 -0
- package/dist/types/classification.mjs.map +1 -0
- package/dist/types/evolution.d.mts +3 -0
- package/dist/types/evolution.d.mts.map +1 -0
- package/dist/types/evolution.mjs +7 -0
- package/dist/types/evolution.mjs.map +1 -0
- package/dist/types/index.d.mts +7 -0
- package/dist/types/index.d.mts.map +1 -0
- package/dist/types/index.mjs +10 -0
- package/dist/types/index.mjs.map +1 -0
- package/dist/types/llm.d.mts +58 -0
- package/dist/types/llm.d.mts.map +1 -0
- package/dist/types/llm.mjs +9 -0
- package/dist/types/llm.mjs.map +1 -0
- package/dist/types/mcp.d.mts +70 -0
- package/dist/types/mcp.d.mts.map +1 -0
- package/dist/types/mcp.mjs +6 -0
- package/dist/types/mcp.mjs.map +1 -0
- package/dist/types/patent.d.mts +55 -0
- package/dist/types/patent.d.mts.map +1 -0
- package/dist/types/patent.mjs +7 -0
- package/dist/types/patent.mjs.map +1 -0
- package/dist/types/pipeline.d.mts +65 -0
- package/dist/types/pipeline.d.mts.map +1 -0
- package/dist/types/pipeline.mjs +6 -0
- package/dist/types/pipeline.mjs.map +1 -0
- package/dist/types/routing.d.mts +113 -0
- package/dist/types/routing.d.mts.map +1 -0
- package/dist/types/routing.mjs +7 -0
- package/dist/types/routing.mjs.map +1 -0
- package/dist/types/session.d.mts +41 -0
- package/dist/types/session.d.mts.map +1 -0
- package/dist/types/session.mjs +6 -0
- package/dist/types/session.mjs.map +1 -0
- package/dist/types/solution.d.mts +3 -0
- package/dist/types/solution.d.mts.map +1 -0
- package/dist/types/solution.mjs +6 -0
- package/dist/types/solution.mjs.map +1 -0
- package/dist/types/value-chain.d.mts +53 -0
- package/dist/types/value-chain.d.mts.map +1 -0
- package/dist/types/value-chain.mjs +12 -0
- package/dist/types/value-chain.mjs.map +1 -0
- package/dist/types/wm-map.d.mts +83 -0
- package/dist/types/wm-map.d.mts.map +1 -0
- package/dist/types/wm-map.mjs +5 -0
- package/dist/types/wm-map.mjs.map +1 -0
- package/dist/work-on-evolution/estimate-evolution.d.mts +58 -0
- package/dist/work-on-evolution/estimate-evolution.d.mts.map +1 -0
- package/dist/work-on-evolution/estimate-evolution.mjs +621 -0
- package/dist/work-on-evolution/estimate-evolution.mjs.map +1 -0
- package/dist/work-on-evolution/evaluate-map/evaluate-map.d.mts +56 -0
- package/dist/work-on-evolution/evaluate-map/evaluate-map.d.mts.map +1 -0
- package/dist/work-on-evolution/evaluate-map/evaluate-map.mjs +391 -0
- package/dist/work-on-evolution/evaluate-map/evaluate-map.mjs.map +1 -0
- package/dist/work-on-evolution/lib/evolution-input-validation.d.mts +37 -0
- package/dist/work-on-evolution/lib/evolution-input-validation.d.mts.map +1 -0
- package/dist/work-on-evolution/lib/evolution-input-validation.mjs +51 -0
- package/dist/work-on-evolution/lib/evolution-input-validation.mjs.map +1 -0
- package/dist/work-on-evolution/patent/cpc-mapper.d.mts +128 -0
- package/dist/work-on-evolution/patent/cpc-mapper.d.mts.map +1 -0
- package/dist/work-on-evolution/patent/cpc-mapper.mjs +285 -0
- package/dist/work-on-evolution/patent/cpc-mapper.mjs.map +1 -0
- package/dist/work-on-evolution/patent/cpc-taxonomy-cache.d.mts +91 -0
- package/dist/work-on-evolution/patent/cpc-taxonomy-cache.d.mts.map +1 -0
- package/dist/work-on-evolution/patent/cpc-taxonomy-cache.mjs +319 -0
- package/dist/work-on-evolution/patent/cpc-taxonomy-cache.mjs.map +1 -0
- package/dist/work-on-evolution/pipeline/concurrent-verification.d.mts +81 -0
- package/dist/work-on-evolution/pipeline/concurrent-verification.d.mts.map +1 -0
- package/dist/work-on-evolution/pipeline/concurrent-verification.mjs +317 -0
- package/dist/work-on-evolution/pipeline/concurrent-verification.mjs.map +1 -0
- package/dist/work-on-evolution/pipeline/dual-verification-orchestrator.d.mts +99 -0
- package/dist/work-on-evolution/pipeline/dual-verification-orchestrator.d.mts.map +1 -0
- package/dist/work-on-evolution/pipeline/dual-verification-orchestrator.mjs +288 -0
- package/dist/work-on-evolution/pipeline/dual-verification-orchestrator.mjs.map +1 -0
- package/dist/work-on-evolution/pipeline/pipeline-capability-inference.d.mts +45 -0
- package/dist/work-on-evolution/pipeline/pipeline-capability-inference.d.mts.map +1 -0
- package/dist/work-on-evolution/pipeline/pipeline-capability-inference.mjs +206 -0
- package/dist/work-on-evolution/pipeline/pipeline-capability-inference.mjs.map +1 -0
- package/dist/work-on-evolution/pipeline/pipeline-enriched.d.mts +175 -0
- package/dist/work-on-evolution/pipeline/pipeline-enriched.d.mts.map +1 -0
- package/dist/work-on-evolution/pipeline/pipeline-enriched.mjs +549 -0
- package/dist/work-on-evolution/pipeline/pipeline-enriched.mjs.map +1 -0
- package/dist/work-on-evolution/pipeline/signal-combiner.d.mts +131 -0
- package/dist/work-on-evolution/pipeline/signal-combiner.d.mts.map +1 -0
- package/dist/work-on-evolution/pipeline/signal-combiner.mjs +435 -0
- package/dist/work-on-evolution/pipeline/signal-combiner.mjs.map +1 -0
- package/dist/work-on-evolution/pipeline/verification-reconciliation.d.mts +60 -0
- package/dist/work-on-evolution/pipeline/verification-reconciliation.d.mts.map +1 -0
- package/dist/work-on-evolution/pipeline/verification-reconciliation.mjs +182 -0
- package/dist/work-on-evolution/pipeline/verification-reconciliation.mjs.map +1 -0
- package/dist/work-on-evolution/pipeline/verification-signals.d.mts +62 -0
- package/dist/work-on-evolution/pipeline/verification-signals.d.mts.map +1 -0
- package/dist/work-on-evolution/pipeline/verification-signals.mjs +123 -0
- package/dist/work-on-evolution/pipeline/verification-signals.mjs.map +1 -0
- package/dist/work-on-evolution/read/base-strategy.d.mts +22 -0
- package/dist/work-on-evolution/read/base-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/read/base-strategy.mjs +36 -0
- package/dist/work-on-evolution/read/base-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/read/registry.d.mts +17 -0
- package/dist/work-on-evolution/read/registry.d.mts.map +1 -0
- package/dist/work-on-evolution/read/registry.mjs +83 -0
- package/dist/work-on-evolution/read/registry.mjs.map +1 -0
- package/dist/work-on-evolution/routing/classification-gate.d.mts +19 -0
- package/dist/work-on-evolution/routing/classification-gate.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/classification-gate.mjs +192 -0
- package/dist/work-on-evolution/routing/classification-gate.mjs.map +1 -0
- package/dist/work-on-evolution/routing/detect-solution.d.mts +104 -0
- package/dist/work-on-evolution/routing/detect-solution.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/detect-solution.mjs +452 -0
- package/dist/work-on-evolution/routing/detect-solution.mjs.map +1 -0
- package/dist/work-on-evolution/routing/eval-mode-dispatcher.d.mts +105 -0
- package/dist/work-on-evolution/routing/eval-mode-dispatcher.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/eval-mode-dispatcher.mjs +287 -0
- package/dist/work-on-evolution/routing/eval-mode-dispatcher.mjs.map +1 -0
- package/dist/work-on-evolution/routing/mode-router.d.mts +49 -0
- package/dist/work-on-evolution/routing/mode-router.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/mode-router.mjs +351 -0
- package/dist/work-on-evolution/routing/mode-router.mjs.map +1 -0
- package/dist/work-on-evolution/routing/solution-capability-router.d.mts +4 -0
- package/dist/work-on-evolution/routing/solution-capability-router.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/solution-capability-router.mjs +36 -0
- package/dist/work-on-evolution/routing/solution-capability-router.mjs.map +1 -0
- package/dist/work-on-evolution/routing/solution-dispatch.d.mts +91 -0
- package/dist/work-on-evolution/routing/solution-dispatch.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/solution-dispatch.mjs +230 -0
- package/dist/work-on-evolution/routing/solution-dispatch.mjs.map +1 -0
- package/dist/work-on-evolution/routing/wardley-type-classification.d.mts +37 -0
- package/dist/work-on-evolution/routing/wardley-type-classification.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/wardley-type-classification.mjs +154 -0
- package/dist/work-on-evolution/routing/wardley-type-classification.mjs.map +1 -0
- package/dist/work-on-evolution/routing/web-search-verification.d.mts +94 -0
- package/dist/work-on-evolution/routing/web-search-verification.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/web-search-verification.mjs +457 -0
- package/dist/work-on-evolution/routing/web-search-verification.mjs.map +1 -0
- package/dist/work-on-evolution/s-curve/s-curve-transform.d.ts +3 -0
- package/dist/work-on-evolution/s-curve/s-curve-transform.d.ts.map +1 -0
- package/dist/work-on-evolution/s-curve/s-curve-transform.js +96 -0
- package/dist/work-on-evolution/s-curve/s-curve-transform.js.map +1 -0
- package/dist/work-on-evolution/s-curve/s-curve.d.mts +37 -0
- package/dist/work-on-evolution/s-curve/s-curve.d.mts.map +1 -0
- package/dist/work-on-evolution/s-curve/s-curve.mjs +93 -0
- package/dist/work-on-evolution/s-curve/s-curve.mjs.map +1 -0
- package/dist/work-on-evolution/skill-handler.d.mts +99 -0
- package/dist/work-on-evolution/skill-handler.d.mts.map +1 -0
- package/dist/work-on-evolution/skill-handler.mjs +608 -0
- package/dist/work-on-evolution/skill-handler.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/anchor/estimate-anchor-evolution.d.mts +10 -0
- package/dist/work-on-evolution/strategies/anchor/estimate-anchor-evolution.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/anchor/estimate-anchor-evolution.mjs +101 -0
- package/dist/work-on-evolution/strategies/anchor/estimate-anchor-evolution.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/base-strategy.d.mts +72 -0
- package/dist/work-on-evolution/strategies/capacity/base-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/base-strategy.mjs +98 -0
- package/dist/work-on-evolution/strategies/capacity/base-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/cpc-evolution-strategy.d.mts +313 -0
- package/dist/work-on-evolution/strategies/capacity/cpc-evolution-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/cpc-evolution-strategy.mjs +721 -0
- package/dist/work-on-evolution/strategies/capacity/cpc-evolution-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/llm-direct-strategy.d.mts +25 -0
- package/dist/work-on-evolution/strategies/capacity/llm-direct-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/llm-direct-strategy.mjs +87 -0
- package/dist/work-on-evolution/strategies/capacity/llm-direct-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/logprob-distribution-strategy.d.mts +31 -0
- package/dist/work-on-evolution/strategies/capacity/logprob-distribution-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/logprob-distribution-strategy.mjs +125 -0
- package/dist/work-on-evolution/strategies/capacity/logprob-distribution-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/publication-analysis-strategy.d.mts +20 -0
- package/dist/work-on-evolution/strategies/capacity/publication-analysis-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/publication-analysis-strategy.mjs +91 -0
- package/dist/work-on-evolution/strategies/capacity/publication-analysis-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/registry.d.mts +28 -0
- package/dist/work-on-evolution/strategies/capacity/registry.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/registry.mjs +102 -0
- package/dist/work-on-evolution/strategies/capacity/registry.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/s-curve-strategy.d.mts +11 -0
- package/dist/work-on-evolution/strategies/capacity/s-curve-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/s-curve-strategy.mjs +44 -0
- package/dist/work-on-evolution/strategies/capacity/s-curve-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/timeline-benchmark-strategy.d.mts +52 -0
- package/dist/work-on-evolution/strategies/capacity/timeline-benchmark-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/timeline-benchmark-strategy.mjs +226 -0
- package/dist/work-on-evolution/strategies/capacity/timeline-benchmark-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/solution/aggregate-properties.d.mts +197 -0
- package/dist/work-on-evolution/strategies/solution/aggregate-properties.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/solution/aggregate-properties.mjs +416 -0
- package/dist/work-on-evolution/strategies/solution/aggregate-properties.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/solution/assemble-result.d.mts +91 -0
- package/dist/work-on-evolution/strategies/solution/assemble-result.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/solution/assemble-result.mjs +236 -0
- package/dist/work-on-evolution/strategies/solution/assemble-result.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/solution/phase-classifier.d.mts +211 -0
- package/dist/work-on-evolution/strategies/solution/phase-classifier.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/solution/phase-classifier.mjs +453 -0
- package/dist/work-on-evolution/strategies/solution/phase-classifier.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/solution/properties-strategy.d.mts +100 -0
- package/dist/work-on-evolution/strategies/solution/properties-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/solution/properties-strategy.mjs +496 -0
- package/dist/work-on-evolution/strategies/solution/properties-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/solution/registry.d.mts +18 -0
- package/dist/work-on-evolution/strategies/solution/registry.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/solution/registry.mjs +73 -0
- package/dist/work-on-evolution/strategies/solution/registry.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/solution/solution-base-strategy.d.mts +163 -0
- package/dist/work-on-evolution/strategies/solution/solution-base-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/solution/solution-base-strategy.mjs +228 -0
- package/dist/work-on-evolution/strategies/solution/solution-base-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/solution/solution-evolution-result.d.mts +361 -0
- package/dist/work-on-evolution/strategies/solution/solution-evolution-result.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/solution/solution-evolution-result.mjs +604 -0
- package/dist/work-on-evolution/strategies/solution/solution-evolution-result.mjs.map +1 -0
- package/dist/work-on-evolution/write/estimate-evolution.d.mts +78 -0
- package/dist/work-on-evolution/write/estimate-evolution.d.mts.map +1 -0
- package/dist/work-on-evolution/write/estimate-evolution.mjs +654 -0
- package/dist/work-on-evolution/write/estimate-evolution.mjs.map +1 -0
- package/dist/work-on-evolution/write/evaluate-map/evaluate-map.d.mts +56 -0
- package/dist/work-on-evolution/write/evaluate-map/evaluate-map.d.mts.map +1 -0
- package/dist/work-on-evolution/write/evaluate-map/evaluate-map.mjs +449 -0
- package/dist/work-on-evolution/write/evaluate-map/evaluate-map.mjs.map +1 -0
- package/dist/work-on-evolution/write/lib/evolution-input-validation.d.mts +37 -0
- package/dist/work-on-evolution/write/lib/evolution-input-validation.d.mts.map +1 -0
- package/dist/work-on-evolution/write/lib/evolution-input-validation.mjs +51 -0
- package/dist/work-on-evolution/write/lib/evolution-input-validation.mjs.map +1 -0
- package/dist/work-on-evolution/write/patent/cpc-mapper.d.mts +128 -0
- package/dist/work-on-evolution/write/patent/cpc-mapper.d.mts.map +1 -0
- package/dist/work-on-evolution/write/patent/cpc-mapper.mjs +298 -0
- package/dist/work-on-evolution/write/patent/cpc-mapper.mjs.map +1 -0
- package/dist/work-on-evolution/write/patent/cpc-taxonomy-cache.d.mts +91 -0
- package/dist/work-on-evolution/write/patent/cpc-taxonomy-cache.d.mts.map +1 -0
- package/dist/work-on-evolution/write/patent/cpc-taxonomy-cache.mjs +319 -0
- package/dist/work-on-evolution/write/patent/cpc-taxonomy-cache.mjs.map +1 -0
- package/dist/work-on-evolution/write/pipeline/pipeline-enriched.d.mts +175 -0
- package/dist/work-on-evolution/write/pipeline/pipeline-enriched.d.mts.map +1 -0
- package/dist/work-on-evolution/write/pipeline/pipeline-enriched.mjs +549 -0
- package/dist/work-on-evolution/write/pipeline/pipeline-enriched.mjs.map +1 -0
- package/dist/work-on-evolution/write/routing/classification-gate.d.mts +19 -0
- package/dist/work-on-evolution/write/routing/classification-gate.d.mts.map +1 -0
- package/dist/work-on-evolution/write/routing/classification-gate.mjs +192 -0
- package/dist/work-on-evolution/write/routing/classification-gate.mjs.map +1 -0
- package/dist/work-on-evolution/write/routing/detect-solution.d.mts +104 -0
- package/dist/work-on-evolution/write/routing/detect-solution.d.mts.map +1 -0
- package/dist/work-on-evolution/write/routing/detect-solution.mjs +452 -0
- package/dist/work-on-evolution/write/routing/detect-solution.mjs.map +1 -0
- package/dist/work-on-evolution/write/routing/mode-router.d.mts +49 -0
- package/dist/work-on-evolution/write/routing/mode-router.d.mts.map +1 -0
- package/dist/work-on-evolution/write/routing/mode-router.mjs +351 -0
- package/dist/work-on-evolution/write/routing/mode-router.mjs.map +1 -0
- package/dist/work-on-evolution/write/routing/solution-capability-router.d.mts +4 -0
- package/dist/work-on-evolution/write/routing/solution-capability-router.d.mts.map +1 -0
- package/dist/work-on-evolution/write/routing/solution-capability-router.mjs +36 -0
- package/dist/work-on-evolution/write/routing/solution-capability-router.mjs.map +1 -0
- package/dist/work-on-evolution/write/routing/solution-dispatch.d.mts +91 -0
- package/dist/work-on-evolution/write/routing/solution-dispatch.d.mts.map +1 -0
- package/dist/work-on-evolution/write/routing/solution-dispatch.mjs +242 -0
- package/dist/work-on-evolution/write/routing/solution-dispatch.mjs.map +1 -0
- package/dist/work-on-evolution/write/s-curve/s-curve-transform.d.ts +3 -0
- package/dist/work-on-evolution/write/s-curve/s-curve-transform.d.ts.map +1 -0
- package/dist/work-on-evolution/write/s-curve/s-curve-transform.js +96 -0
- package/dist/work-on-evolution/write/s-curve/s-curve-transform.js.map +1 -0
- package/dist/work-on-evolution/write/s-curve/s-curve.d.mts +37 -0
- package/dist/work-on-evolution/write/s-curve/s-curve.d.mts.map +1 -0
- package/dist/work-on-evolution/write/s-curve/s-curve.mjs +93 -0
- package/dist/work-on-evolution/write/s-curve/s-curve.mjs.map +1 -0
- package/dist/work-on-evolution/write/skill-handler.d.mts +99 -0
- package/dist/work-on-evolution/write/skill-handler.d.mts.map +1 -0
- package/dist/work-on-evolution/write/skill-handler.mjs +608 -0
- package/dist/work-on-evolution/write/skill-handler.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/anchor/estimate-anchor-evolution.d.mts +10 -0
- package/dist/work-on-evolution/write/strategies/anchor/estimate-anchor-evolution.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/anchor/estimate-anchor-evolution.mjs +125 -0
- package/dist/work-on-evolution/write/strategies/anchor/estimate-anchor-evolution.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/base-strategy.d.mts +72 -0
- package/dist/work-on-evolution/write/strategies/capacity/base-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/base-strategy.mjs +98 -0
- package/dist/work-on-evolution/write/strategies/capacity/base-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/cpc-evolution-strategy.d.mts +313 -0
- package/dist/work-on-evolution/write/strategies/capacity/cpc-evolution-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/cpc-evolution-strategy.mjs +731 -0
- package/dist/work-on-evolution/write/strategies/capacity/cpc-evolution-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/llm-direct-strategy.d.mts +25 -0
- package/dist/work-on-evolution/write/strategies/capacity/llm-direct-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/llm-direct-strategy.mjs +87 -0
- package/dist/work-on-evolution/write/strategies/capacity/llm-direct-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/logprob-distribution-strategy.d.mts +28 -0
- package/dist/work-on-evolution/write/strategies/capacity/logprob-distribution-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/logprob-distribution-strategy.mjs +125 -0
- package/dist/work-on-evolution/write/strategies/capacity/logprob-distribution-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/publication-analysis-strategy.d.mts +21 -0
- package/dist/work-on-evolution/write/strategies/capacity/publication-analysis-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/publication-analysis-strategy.mjs +91 -0
- package/dist/work-on-evolution/write/strategies/capacity/publication-analysis-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/registry.d.mts +28 -0
- package/dist/work-on-evolution/write/strategies/capacity/registry.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/registry.mjs +102 -0
- package/dist/work-on-evolution/write/strategies/capacity/registry.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/s-curve-strategy.d.mts +11 -0
- package/dist/work-on-evolution/write/strategies/capacity/s-curve-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/s-curve-strategy.mjs +44 -0
- package/dist/work-on-evolution/write/strategies/capacity/s-curve-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/timeline-benchmark-strategy.d.mts +52 -0
- package/dist/work-on-evolution/write/strategies/capacity/timeline-benchmark-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/timeline-benchmark-strategy.mjs +226 -0
- package/dist/work-on-evolution/write/strategies/capacity/timeline-benchmark-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/aggregate-properties.d.mts +197 -0
- package/dist/work-on-evolution/write/strategies/solution/aggregate-properties.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/aggregate-properties.mjs +416 -0
- package/dist/work-on-evolution/write/strategies/solution/aggregate-properties.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/assemble-result.d.mts +91 -0
- package/dist/work-on-evolution/write/strategies/solution/assemble-result.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/assemble-result.mjs +236 -0
- package/dist/work-on-evolution/write/strategies/solution/assemble-result.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/phase-classifier.d.mts +211 -0
- package/dist/work-on-evolution/write/strategies/solution/phase-classifier.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/phase-classifier.mjs +453 -0
- package/dist/work-on-evolution/write/strategies/solution/phase-classifier.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/properties-strategy.d.mts +100 -0
- package/dist/work-on-evolution/write/strategies/solution/properties-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/properties-strategy.mjs +496 -0
- package/dist/work-on-evolution/write/strategies/solution/properties-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/registry.d.mts +18 -0
- package/dist/work-on-evolution/write/strategies/solution/registry.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/registry.mjs +73 -0
- package/dist/work-on-evolution/write/strategies/solution/registry.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-base-strategy.d.mts +163 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-base-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-base-strategy.mjs +228 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-base-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-evolution-result.d.mts +361 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-evolution-result.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-evolution-result.mjs +604 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-evolution-result.mjs.map +1 -0
- package/dist/work-on-value-chain/generate-value-chain.d.mts +24 -0
- package/dist/work-on-value-chain/generate-value-chain.d.mts.map +1 -0
- package/dist/work-on-value-chain/generate-value-chain.mjs +257 -0
- package/dist/work-on-value-chain/generate-value-chain.mjs.map +1 -0
- package/dist/work-on-value-chain/identify-capability.d.mts +28 -0
- package/dist/work-on-value-chain/identify-capability.d.mts.map +1 -0
- package/dist/work-on-value-chain/identify-capability.mjs +118 -0
- package/dist/work-on-value-chain/identify-capability.mjs.map +1 -0
- package/dist/work-on-value-chain/read/anchor/base-strategy.d.mts +22 -0
- package/dist/work-on-value-chain/read/anchor/base-strategy.d.mts.map +1 -0
- package/dist/work-on-value-chain/read/anchor/base-strategy.mjs +34 -0
- package/dist/work-on-value-chain/read/anchor/base-strategy.mjs.map +1 -0
- package/dist/work-on-value-chain/read/anchor/registry.d.mts +17 -0
- package/dist/work-on-value-chain/read/anchor/registry.d.mts.map +1 -0
- package/dist/work-on-value-chain/read/anchor/registry.mjs +83 -0
- package/dist/work-on-value-chain/read/anchor/registry.mjs.map +1 -0
- package/dist/work-on-value-chain/read/chain/base-strategy.d.mts +22 -0
- package/dist/work-on-value-chain/read/chain/base-strategy.d.mts.map +1 -0
- package/dist/work-on-value-chain/read/chain/base-strategy.mjs +34 -0
- package/dist/work-on-value-chain/read/chain/base-strategy.mjs.map +1 -0
- package/dist/work-on-value-chain/read/chain/registry.d.mts +17 -0
- package/dist/work-on-value-chain/read/chain/registry.d.mts.map +1 -0
- package/dist/work-on-value-chain/read/chain/registry.mjs +83 -0
- package/dist/work-on-value-chain/read/chain/registry.mjs.map +1 -0
- package/dist/work-on-value-chain/read/component/base-strategy.d.mts +22 -0
- package/dist/work-on-value-chain/read/component/base-strategy.d.mts.map +1 -0
- package/dist/work-on-value-chain/read/component/base-strategy.mjs +34 -0
- package/dist/work-on-value-chain/read/component/base-strategy.mjs.map +1 -0
- package/dist/work-on-value-chain/read/component/registry.d.mts +17 -0
- package/dist/work-on-value-chain/read/component/registry.d.mts.map +1 -0
- package/dist/work-on-value-chain/read/component/registry.mjs +83 -0
- package/dist/work-on-value-chain/read/component/registry.mjs.map +1 -0
- package/dist/work-on-value-chain/write/anchor/base-strategy.d.mts +22 -0
- package/dist/work-on-value-chain/write/anchor/base-strategy.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/anchor/base-strategy.mjs +33 -0
- package/dist/work-on-value-chain/write/anchor/base-strategy.mjs.map +1 -0
- package/dist/work-on-value-chain/write/anchor/registry.d.mts +17 -0
- package/dist/work-on-value-chain/write/anchor/registry.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/anchor/registry.mjs +86 -0
- package/dist/work-on-value-chain/write/anchor/registry.mjs.map +1 -0
- package/dist/work-on-value-chain/write/chain/base-strategy.d.mts +22 -0
- package/dist/work-on-value-chain/write/chain/base-strategy.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/chain/base-strategy.mjs +33 -0
- package/dist/work-on-value-chain/write/chain/base-strategy.mjs.map +1 -0
- package/dist/work-on-value-chain/write/chain/registry.d.mts +17 -0
- package/dist/work-on-value-chain/write/chain/registry.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/chain/registry.mjs +83 -0
- package/dist/work-on-value-chain/write/chain/registry.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/base-strategy.d.mts +22 -0
- package/dist/work-on-value-chain/write/component/base-strategy.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/base-strategy.mjs +33 -0
- package/dist/work-on-value-chain/write/component/base-strategy.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/concurrent-verification.d.mts +81 -0
- package/dist/work-on-value-chain/write/component/concurrent-verification.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/concurrent-verification.mjs +317 -0
- package/dist/work-on-value-chain/write/component/concurrent-verification.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/dual-verification-orchestrator.d.mts +99 -0
- package/dist/work-on-value-chain/write/component/dual-verification-orchestrator.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/dual-verification-orchestrator.mjs +288 -0
- package/dist/work-on-value-chain/write/component/dual-verification-orchestrator.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/identify-capability.d.mts +28 -0
- package/dist/work-on-value-chain/write/component/identify-capability.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/identify-capability.mjs +123 -0
- package/dist/work-on-value-chain/write/component/identify-capability.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/infer-capability-from-solution.d.mts +45 -0
- package/dist/work-on-value-chain/write/component/infer-capability-from-solution.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/infer-capability-from-solution.mjs +206 -0
- package/dist/work-on-value-chain/write/component/infer-capability-from-solution.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/registry.d.mts +17 -0
- package/dist/work-on-value-chain/write/component/registry.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/registry.mjs +83 -0
- package/dist/work-on-value-chain/write/component/registry.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/signal-combiner.d.mts +131 -0
- package/dist/work-on-value-chain/write/component/signal-combiner.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/signal-combiner.mjs +435 -0
- package/dist/work-on-value-chain/write/component/signal-combiner.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/verification-reconciliation.d.mts +60 -0
- package/dist/work-on-value-chain/write/component/verification-reconciliation.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/verification-reconciliation.mjs +182 -0
- package/dist/work-on-value-chain/write/component/verification-reconciliation.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/verification-signals.d.mts +62 -0
- package/dist/work-on-value-chain/write/component/verification-signals.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/verification-signals.mjs +123 -0
- package/dist/work-on-value-chain/write/component/verification-signals.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/wardley-type-classification.d.mts +37 -0
- package/dist/work-on-value-chain/write/component/wardley-type-classification.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/wardley-type-classification.mjs +154 -0
- package/dist/work-on-value-chain/write/component/wardley-type-classification.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/web-search-verification.d.mts +93 -0
- package/dist/work-on-value-chain/write/component/web-search-verification.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/web-search-verification.mjs +464 -0
- package/dist/work-on-value-chain/write/component/web-search-verification.mjs.map +1 -0
- package/llm.config.example.json +29 -0
- package/package.json +90 -0
- package/prompts/anchor-evolution.system.md +25 -0
- package/prompts/anchor-evolution.user.md +2 -0
- package/prompts/cpc-evolution.sot-extraction.system.md +7 -0
- package/prompts/cpc-evolution.sot-extraction.user.md +5 -0
- package/prompts/cpc-mapper.fallback.system.md +3 -0
- package/prompts/cpc-mapper.fallback.user.md +1 -0
- package/prompts/cpc-mapper.pick-class.system.md +21 -0
- package/prompts/cpc-mapper.pick-class.user.md +1 -0
- package/prompts/cpc-mapper.pick-from-list.system.md +3 -0
- package/prompts/cpc-mapper.pick-from-list.user.md +4 -0
- package/prompts/historical-evolution.with-capability.system.md +14 -0
- package/prompts/historical-evolution.with-capability.user.md +4 -0
- package/prompts/historical-evolution.without-capability.system.md +15 -0
- package/prompts/historical-evolution.without-capability.user.md +4 -0
- package/prompts/identify-capability.system.md +40 -0
- package/prompts/identify-capability.user.md +3 -0
- package/prompts/logprob-fallback.system.md +11 -0
- package/prompts/logprob-fallback.user.md +3 -0
- package/prompts/pipeline-enrichment.solution-discovery.system.md +22 -0
- package/prompts/pipeline-enrichment.solution-discovery.user.md +3 -0
- package/prompts/properties-strategy.auto.system.md +17 -0
- package/prompts/properties-strategy.auto.user.md +8 -0
- package/prompts/properties-strategy.single.system.md +14 -0
- package/prompts/properties-strategy.single.user.md +9 -0
- package/prompts/publication-analysis.system.md +24 -0
- package/prompts/publication-analysis.user.md +3 -0
- package/prompts/solution-classification.system.md +28 -0
- package/prompts/solution-classification.user.md +2 -0
- package/prompts/timeline-benchmark.system.md +14 -0
- package/prompts/timeline-benchmark.user.md +9 -0
- package/prompts/web-search-verification.system.md +32 -0
- package/prompts/web-search-verification.user.md +2 -0
- package/prompts/write-chain.extract-metadata.system.md +44 -0
- package/prompts/write-chain.extract-metadata.user.md +1 -0
- package/prompts/write-chain.top-down.system.md +70 -0
- package/prompts/write-chain.top-down.user.md +2 -0
- package/prompts.config.json +190 -0
- package/recipes/wardley/map/draw-value-chain.recipe.json +43 -0
- package/recipes/wardley/map/estimate-chain-components.recipe.json +22 -0
- package/recipes/wardley/map/estimate-component-evolution.recipe.json +24 -0
- package/recipes/wardley/map/evaluate-map.recipe.json +28 -0
- package/recipes/wardley/map/generate.recipe.json +34 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.mts","sourceRoot":"","sources":["../../../../../../../src/lib/vendor/cli-owm/parser/types/unified/index.mts"],"names":[],"mappings":"AAAA,YAAY,EACR,cAAc,EACd,aAAa,EACb,gBAAgB,EAChB,gBAAgB,EAChB,kBAAkB,EAClB,gBAAgB,EAChB,aAAa,EACb,gBAAgB,EAChB,gBAAgB,EAChB,aAAa,EACb,aAAa,EACb,qBAAqB,EACrB,YAAY,EACZ,gBAAgB,EAChB,UAAU,GACb,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EACH,oBAAoB,EACpB,cAAc,EACd,sBAAsB,EACtB,QAAQ,EACR,WAAW,EACX,eAAe,EACf,WAAW,EACX,QAAQ,EACR,QAAQ,GACX,MAAM,kBAAkB,CAAC;AAE1B,YAAY,EAAC,QAAQ,EAAE,QAAQ,EAAE,oBAAoB,EAAE,aAAa,EAAE,kBAAkB,EAAC,MAAM,aAAa,CAAC;AAE7G,OAAO,EAAC,cAAc,EAAE,cAAc,EAAE,mBAAmB,EAAE,UAAU,EAAC,MAAM,aAAa,CAAC;AAE5F,YAAY,EAAC,iBAAiB,EAAE,iBAAiB,EAAC,MAAM,WAAW,CAAC;AAEpE,OAAO,EAAC,cAAc,EAAE,iBAAiB,EAAE,qBAAqB,EAAC,MAAM,WAAW,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { createEvolvedElement, createPipeline, createUnifiedComponent, isAnchor, isComponent, isComponentType, isEcosystem, isMarket, isSubmap, } from './components.mjs';
|
|
2
|
+
export { createBaseLink, createFlowLink, createProcessedLink, isFlowLink } from './links.mjs';
|
|
3
|
+
export { createEmptyMap, getAllMapElements, groupComponentsByType } from './map.mjs';
|
|
4
|
+
//# sourceMappingURL=index.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../../../../../src/lib/vendor/cli-owm/parser/types/unified/index.mts"],"names":[],"mappings":"AAkBA,OAAO,EACH,oBAAoB,EACpB,cAAc,EACd,sBAAsB,EACtB,QAAQ,EACR,WAAW,EACX,eAAe,EACf,WAAW,EACX,QAAQ,EACR,QAAQ,GACX,MAAM,kBAAkB,CAAC;AAI1B,OAAO,EAAC,cAAc,EAAE,cAAc,EAAE,mBAAmB,EAAE,UAAU,EAAC,MAAM,aAAa,CAAC;AAI5F,OAAO,EAAC,cAAc,EAAE,iBAAiB,EAAE,qBAAqB,EAAC,MAAM,WAAW,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { UnifiedComponent } from './components.mjs';
|
|
2
|
+
export interface BaseLink {
|
|
3
|
+
start: string;
|
|
4
|
+
end: string;
|
|
5
|
+
line?: number;
|
|
6
|
+
}
|
|
7
|
+
export interface FlowLink extends BaseLink {
|
|
8
|
+
flow?: boolean;
|
|
9
|
+
flowValue?: string;
|
|
10
|
+
future?: boolean;
|
|
11
|
+
past?: boolean;
|
|
12
|
+
context?: string;
|
|
13
|
+
}
|
|
14
|
+
export interface ProcessedLink {
|
|
15
|
+
link: FlowLink;
|
|
16
|
+
startElement: UnifiedComponent;
|
|
17
|
+
endElement: UnifiedComponent;
|
|
18
|
+
}
|
|
19
|
+
export interface ProcessedLinkGroup {
|
|
20
|
+
name: string;
|
|
21
|
+
links: ProcessedLink[];
|
|
22
|
+
}
|
|
23
|
+
export interface LinkExtractionResult {
|
|
24
|
+
name: string;
|
|
25
|
+
links: BaseLink[];
|
|
26
|
+
startElements: UnifiedComponent[];
|
|
27
|
+
endElements: UnifiedComponent[];
|
|
28
|
+
}
|
|
29
|
+
export declare const isFlowLink: (link: BaseLink) => link is FlowLink;
|
|
30
|
+
export declare const createBaseLink: (partial: Partial<BaseLink> & Pick<BaseLink, "start" | "end">) => BaseLink;
|
|
31
|
+
export declare const createFlowLink: (partial: Partial<FlowLink> & Pick<FlowLink, "start" | "end">) => FlowLink;
|
|
32
|
+
export declare const createProcessedLink: (link: FlowLink, startElement: UnifiedComponent, endElement: UnifiedComponent) => ProcessedLink;
|
|
33
|
+
//# sourceMappingURL=links.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"links.d.mts","sourceRoot":"","sources":["../../../../../../../src/lib/vendor/cli-owm/parser/types/unified/links.mts"],"names":[],"mappings":"AAAA,OAAO,EAAC,gBAAgB,EAAC,MAAM,kBAAkB,CAAC;AAElD,MAAM,WAAW,QAAQ;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,CAAC,EAAE,MAAM,CAAC;CACjB;AAED,MAAM,WAAW,QAAS,SAAQ,QAAQ;IACtC,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,OAAO,CAAC,EAAE,MAAM,CAAC;CACpB;AAED,MAAM,WAAW,aAAa;IAC1B,IAAI,EAAE,QAAQ,CAAC;IACf,YAAY,EAAE,gBAAgB,CAAC;IAC/B,UAAU,EAAE,gBAAgB,CAAC;CAChC;AAED,MAAM,WAAW,kBAAkB;IAC/B,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,aAAa,EAAE,CAAC;CAC1B;AAED,MAAM,WAAW,oBAAoB;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,QAAQ,EAAE,CAAC;IAClB,aAAa,EAAE,gBAAgB,EAAE,CAAC;IAClC,WAAW,EAAE,gBAAgB,EAAE,CAAC;CACnC;AAED,eAAO,MAAM,UAAU,GAAI,MAAM,QAAQ,KAAG,IAAI,IAAI,QAEnD,CAAC;AAEF,eAAO,MAAM,cAAc,GAAI,SAAS,OAAO,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,QAAQ,EAAE,OAAO,GAAG,KAAK,CAAC,KAAG,QAI7F,CAAC;AAEF,eAAO,MAAM,cAAc,GAAI,SAAS,OAAO,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,QAAQ,EAAE,OAAO,GAAG,KAAK,CAAC,KAAG,QAO7F,CAAC;AAEF,eAAO,MAAM,mBAAmB,GAAI,MAAM,QAAQ,EAAE,cAAc,gBAAgB,EAAE,YAAY,gBAAgB,KAAG,aAMlH,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export const isFlowLink = (link) => {
|
|
2
|
+
return 'flow' in link || 'flowValue' in link;
|
|
3
|
+
};
|
|
4
|
+
export const createBaseLink = (partial) => {
|
|
5
|
+
return {
|
|
6
|
+
...partial,
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
export const createFlowLink = (partial) => {
|
|
10
|
+
return {
|
|
11
|
+
flow: false,
|
|
12
|
+
future: false,
|
|
13
|
+
past: false,
|
|
14
|
+
...partial,
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
export const createProcessedLink = (link, startElement, endElement) => {
|
|
18
|
+
return {
|
|
19
|
+
link,
|
|
20
|
+
startElement,
|
|
21
|
+
endElement,
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=links.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"links.mjs","sourceRoot":"","sources":["../../../../../../../src/lib/vendor/cli-owm/parser/types/unified/links.mts"],"names":[],"mappings":"AAkCA,MAAM,CAAC,MAAM,UAAU,GAAG,CAAC,IAAc,EAAoB,EAAE;IAC3D,OAAO,MAAM,IAAI,IAAI,IAAI,WAAW,IAAI,IAAI,CAAC;AACjD,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,OAA4D,EAAY,EAAE;IACrG,OAAO;QACH,GAAG,OAAO;KACb,CAAC;AACN,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,cAAc,GAAG,CAAC,OAA4D,EAAY,EAAE;IACrG,OAAO;QACH,IAAI,EAAE,KAAK;QACX,MAAM,EAAE,KAAK;QACb,IAAI,EAAE,KAAK;QACX,GAAG,OAAO;KACb,CAAC;AACN,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,IAAc,EAAE,YAA8B,EAAE,UAA4B,EAAiB,EAAE;IAC/H,OAAO;QACH,IAAI;QACJ,YAAY;QACZ,UAAU;KACb,CAAC;AACN,CAAC,CAAC"}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { MapAccelerators, MapAnnotations, MapAttitudes, MapEvolution, MapMethods, MapNotes, MapParseError, MapPresentationStyle, MapUrls } from '../base.mjs';
|
|
2
|
+
import { EvolvedElementData, PipelineData, UnifiedComponent } from './components.mjs';
|
|
3
|
+
import { FlowLink } from './links.mjs';
|
|
4
|
+
export interface UnifiedWardleyMap {
|
|
5
|
+
title: string;
|
|
6
|
+
presentation: MapPresentationStyle;
|
|
7
|
+
errors: Array<MapParseError>;
|
|
8
|
+
components: UnifiedComponent[];
|
|
9
|
+
anchors: UnifiedComponent[];
|
|
10
|
+
submaps: UnifiedComponent[];
|
|
11
|
+
markets: UnifiedComponent[];
|
|
12
|
+
ecosystems: UnifiedComponent[];
|
|
13
|
+
evolved: EvolvedElementData[];
|
|
14
|
+
pipelines: PipelineData[];
|
|
15
|
+
evolution: MapEvolution;
|
|
16
|
+
links: FlowLink[];
|
|
17
|
+
annotations: MapAnnotations[];
|
|
18
|
+
notes: MapNotes[];
|
|
19
|
+
methods: MapMethods[];
|
|
20
|
+
urls: MapUrls[];
|
|
21
|
+
attitudes: MapAttitudes[];
|
|
22
|
+
accelerators: MapAccelerators[];
|
|
23
|
+
}
|
|
24
|
+
export interface GroupedComponents {
|
|
25
|
+
components: UnifiedComponent[];
|
|
26
|
+
anchors: UnifiedComponent[];
|
|
27
|
+
submaps: UnifiedComponent[];
|
|
28
|
+
markets: UnifiedComponent[];
|
|
29
|
+
ecosystems: UnifiedComponent[];
|
|
30
|
+
}
|
|
31
|
+
export declare const createEmptyMap: () => UnifiedWardleyMap;
|
|
32
|
+
export declare const groupComponentsByType: (map: UnifiedWardleyMap) => GroupedComponents;
|
|
33
|
+
export declare const getAllMapElements: (map: UnifiedWardleyMap) => UnifiedComponent[];
|
|
34
|
+
//# sourceMappingURL=map.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"map.d.mts","sourceRoot":"","sources":["../../../../../../../src/lib/vendor/cli-owm/parser/types/unified/map.mts"],"names":[],"mappings":"AAAA,OAAO,EAEH,eAAe,EACf,cAAc,EACd,YAAY,EACZ,YAAY,EACZ,UAAU,EACV,QAAQ,EACR,aAAa,EACb,oBAAoB,EACpB,OAAO,EACV,MAAM,aAAa,CAAC;AACrB,OAAO,EAAC,kBAAkB,EAAE,YAAY,EAAE,gBAAgB,EAAC,MAAM,kBAAkB,CAAC;AACpF,OAAO,EAAC,QAAQ,EAAC,MAAM,aAAa,CAAC;AAErC,MAAM,WAAW,iBAAiB;IAC9B,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,EAAE,oBAAoB,CAAC;IACnC,MAAM,EAAE,KAAK,CAAC,aAAa,CAAC,CAAC;IAC7B,UAAU,EAAE,gBAAgB,EAAE,CAAC;IAC/B,OAAO,EAAE,gBAAgB,EAAE,CAAC;IAC5B,OAAO,EAAE,gBAAgB,EAAE,CAAC;IAC5B,OAAO,EAAE,gBAAgB,EAAE,CAAC;IAC5B,UAAU,EAAE,gBAAgB,EAAE,CAAC;IAC/B,OAAO,EAAE,kBAAkB,EAAE,CAAC;IAC9B,SAAS,EAAE,YAAY,EAAE,CAAC;IAC1B,SAAS,EAAE,YAAY,CAAC;IACxB,KAAK,EAAE,QAAQ,EAAE,CAAC;IAClB,WAAW,EAAE,cAAc,EAAE,CAAC;IAC9B,KAAK,EAAE,QAAQ,EAAE,CAAC;IAClB,OAAO,EAAE,UAAU,EAAE,CAAC;IACtB,IAAI,EAAE,OAAO,EAAE,CAAC;IAChB,SAAS,EAAE,YAAY,EAAE,CAAC;IAC1B,YAAY,EAAE,eAAe,EAAE,CAAC;CACnC;AAED,MAAM,WAAW,iBAAiB;IAC9B,UAAU,EAAE,gBAAgB,EAAE,CAAC;IAC/B,OAAO,EAAE,gBAAgB,EAAE,CAAC;IAC5B,OAAO,EAAE,gBAAgB,EAAE,CAAC;IAC5B,OAAO,EAAE,gBAAgB,EAAE,CAAC;IAC5B,UAAU,EAAE,gBAAgB,EAAE,CAAC;CAClC;AAED,eAAO,MAAM,cAAc,QAAO,iBAqBjC,CAAC;AAEF,eAAO,MAAM,qBAAqB,GAAI,KAAK,iBAAiB,KAAG,iBAQ9D,CAAC;AAEF,eAAO,MAAM,iBAAiB,GAAI,KAAK,iBAAiB,KAAG,gBAAgB,EAE1E,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export const createEmptyMap = () => {
|
|
2
|
+
return {
|
|
3
|
+
title: '',
|
|
4
|
+
presentation: {},
|
|
5
|
+
errors: [],
|
|
6
|
+
components: [],
|
|
7
|
+
anchors: [],
|
|
8
|
+
submaps: [],
|
|
9
|
+
markets: [],
|
|
10
|
+
ecosystems: [],
|
|
11
|
+
evolved: [],
|
|
12
|
+
pipelines: [],
|
|
13
|
+
evolution: [],
|
|
14
|
+
links: [],
|
|
15
|
+
annotations: [],
|
|
16
|
+
notes: [],
|
|
17
|
+
methods: [],
|
|
18
|
+
urls: [],
|
|
19
|
+
attitudes: [],
|
|
20
|
+
accelerators: [],
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
export const groupComponentsByType = (map) => {
|
|
24
|
+
return {
|
|
25
|
+
components: map.components.filter(c => c.type === 'component'),
|
|
26
|
+
anchors: map.anchors,
|
|
27
|
+
submaps: map.submaps,
|
|
28
|
+
markets: map.markets,
|
|
29
|
+
ecosystems: map.ecosystems,
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
export const getAllMapElements = (map) => {
|
|
33
|
+
return [...map.components, ...map.anchors, ...map.submaps, ...map.markets, ...map.ecosystems];
|
|
34
|
+
};
|
|
35
|
+
//# sourceMappingURL=map.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"map.mjs","sourceRoot":"","sources":["../../../../../../../src/lib/vendor/cli-owm/parser/types/unified/map.mts"],"names":[],"mappings":"AA4CA,MAAM,CAAC,MAAM,cAAc,GAAG,GAAsB,EAAE;IAClD,OAAO;QACH,KAAK,EAAE,EAAE;QACT,YAAY,EAAE,EAA0B;QACxC,MAAM,EAAE,EAAE;QACV,UAAU,EAAE,EAAE;QACd,OAAO,EAAE,EAAE;QACX,OAAO,EAAE,EAAE;QACX,OAAO,EAAE,EAAE;QACX,UAAU,EAAE,EAAE;QACd,OAAO,EAAE,EAAE;QACX,SAAS,EAAE,EAAE;QACb,SAAS,EAAE,EAAsB;QACjC,KAAK,EAAE,EAAE;QACT,WAAW,EAAE,EAAE;QACf,KAAK,EAAE,EAAE;QACT,OAAO,EAAE,EAAE;QACX,IAAI,EAAE,EAAE;QACR,SAAS,EAAE,EAAE;QACb,YAAY,EAAE,EAAE;KACnB,CAAC;AACN,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,qBAAqB,GAAG,CAAC,GAAsB,EAAqB,EAAE;IAC/E,OAAO;QACH,UAAU,EAAE,GAAG,CAAC,UAAU,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,WAAW,CAAC;QAC9D,OAAO,EAAE,GAAG,CAAC,OAAO;QACpB,OAAO,EAAE,GAAG,CAAC,OAAO;QACpB,OAAO,EAAE,GAAG,CAAC,OAAO;QACpB,UAAU,EAAE,GAAG,CAAC,UAAU;KAC7B,CAAC;AACN,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,GAAsB,EAAsB,EAAE;IAC5E,OAAO,CAAC,GAAG,GAAG,CAAC,UAAU,EAAE,GAAG,GAAG,CAAC,OAAO,EAAE,GAAG,GAAG,CAAC,OAAO,EAAE,GAAG,GAAG,CAAC,OAAO,EAAE,GAAG,GAAG,CAAC,UAAU,CAAC,CAAC;AAClG,CAAC,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { MapTheme } from './themes.mjs';
|
|
2
|
+
import { UnifiedWardleyMap } from './parser/types/unified/map.mjs';
|
|
3
|
+
import { UnifiedComponent } from './parser/types/unified/components.mjs';
|
|
4
|
+
export interface RenderOptions {
|
|
5
|
+
width?: number;
|
|
6
|
+
height?: number;
|
|
7
|
+
style?: string;
|
|
8
|
+
theme?: MapTheme;
|
|
9
|
+
}
|
|
10
|
+
export declare function esc(s: string): string;
|
|
11
|
+
export declare function maturityToX(maturity: number, width: number): number;
|
|
12
|
+
export declare function visibilityToY(visibility: number, height: number): number;
|
|
13
|
+
export declare function render(map: UnifiedWardleyMap, options?: RenderOptions): string;
|
|
14
|
+
export declare function resolveComponentPosition(name: string, allComponents: UnifiedComponent[], evolvedMap: Map<string, {
|
|
15
|
+
maturity: number;
|
|
16
|
+
visibility: number;
|
|
17
|
+
}>): {
|
|
18
|
+
x: number;
|
|
19
|
+
y: number;
|
|
20
|
+
maturity: number;
|
|
21
|
+
visibility: number;
|
|
22
|
+
evolved: boolean;
|
|
23
|
+
} | null;
|
|
24
|
+
//# sourceMappingURL=render.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"render.d.mts","sourceRoot":"","sources":["../../../../src/lib/vendor/cli-owm/render.mts"],"names":[],"mappings":"AAAA,OAAO,EAAC,QAAQ,EAAgB,MAAM,cAAc,CAAC;AACrD,OAAO,EAAC,iBAAiB,EAAC,MAAM,gCAAgC,CAAC;AACjE,OAAO,EAAC,gBAAgB,EAAC,MAAM,uCAAuC,CAAC;AAIvE,MAAM,WAAW,aAAa;IAC1B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,QAAQ,CAAC;CACpB;AAED,wBAAgB,GAAG,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAOrC;AAED,wBAAgB,WAAW,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,MAAM,CAEnE;AAED,wBAAgB,aAAa,CAAC,UAAU,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,MAAM,CAExE;AAED,wBAAgB,MAAM,CAAC,GAAG,EAAE,iBAAiB,EAAE,OAAO,CAAC,EAAE,aAAa,GAAG,MAAM,CA8H9E;AA4GD,wBAAgB,wBAAwB,CACpC,IAAI,EAAE,MAAM,EACZ,aAAa,EAAE,gBAAgB,EAAE,EACjC,UAAU,EAAE,GAAG,CAAC,MAAM,EAAE;IAAC,QAAQ,EAAE,MAAM,CAAC;IAAC,UAAU,EAAE,MAAM,CAAA;CAAC,CAAC,GAChE;IAAC,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,CAAC;IAAC,QAAQ,EAAE,MAAM,CAAC;IAAC,UAAU,EAAE,MAAM,CAAC;IAAC,OAAO,EAAE,OAAO,CAAA;CAAC,GAAG,IAAI,CAWvF"}
|
|
@@ -0,0 +1,453 @@
|
|
|
1
|
+
import { Plain, themes } from './themes.mjs';
|
|
2
|
+
import { EvoOffsets } from './parser/defaults.mjs';
|
|
3
|
+
export function esc(s) {
|
|
4
|
+
return s
|
|
5
|
+
.replace(/&/g, '&')
|
|
6
|
+
.replace(/</g, '<')
|
|
7
|
+
.replace(/>/g, '>')
|
|
8
|
+
.replace(/"/g, '"')
|
|
9
|
+
.replace(/'/g, ''');
|
|
10
|
+
}
|
|
11
|
+
export function maturityToX(maturity, width) {
|
|
12
|
+
return maturity * width;
|
|
13
|
+
}
|
|
14
|
+
export function visibilityToY(visibility, height) {
|
|
15
|
+
return (1 - visibility) * height;
|
|
16
|
+
}
|
|
17
|
+
export function render(map, options) {
|
|
18
|
+
const width = options?.width ?? 500;
|
|
19
|
+
const height = options?.height ?? 600;
|
|
20
|
+
let theme;
|
|
21
|
+
if (options?.theme) {
|
|
22
|
+
theme = options.theme;
|
|
23
|
+
}
|
|
24
|
+
else {
|
|
25
|
+
const styleName = options?.style ?? map.presentation?.style ?? 'plain';
|
|
26
|
+
theme = themes[styleName] ?? Plain;
|
|
27
|
+
}
|
|
28
|
+
const strokeWidth = theme.strokeWidth ?? 1;
|
|
29
|
+
const pipelineArrowWidth = theme.pipelineArrowWidth ?? 5;
|
|
30
|
+
const pipelineArrowHeight = theme.pipelineArrowHeight ?? 5;
|
|
31
|
+
// Gather all components for link resolution
|
|
32
|
+
const allComponents = [
|
|
33
|
+
...map.components,
|
|
34
|
+
...map.anchors,
|
|
35
|
+
...map.submaps,
|
|
36
|
+
...map.markets,
|
|
37
|
+
...map.ecosystems,
|
|
38
|
+
];
|
|
39
|
+
// Build evolved name→maturity map for link resolution
|
|
40
|
+
const evolvedMap = new Map();
|
|
41
|
+
for (const ev of map.evolved) {
|
|
42
|
+
const source = allComponents.find(c => c.name === ev.name);
|
|
43
|
+
if (source) {
|
|
44
|
+
const displayName = ev.override || ev.name;
|
|
45
|
+
evolvedMap.set(displayName, {
|
|
46
|
+
maturity: ev.maturity,
|
|
47
|
+
visibility: source.visibility,
|
|
48
|
+
});
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
const svgWidth = width + 105;
|
|
52
|
+
const svgHeight = height + 137;
|
|
53
|
+
const parts = [];
|
|
54
|
+
// SVG root
|
|
55
|
+
parts.push(`<svg xmlns="http://www.w3.org/2000/svg" width="${svgWidth}" height="${svgHeight}" ` +
|
|
56
|
+
`viewBox="-35 -45 ${svgWidth} ${svgHeight}" version="1.1">`);
|
|
57
|
+
// Defs
|
|
58
|
+
parts.push(renderDefs(theme, strokeWidth, pipelineArrowWidth, pipelineArrowHeight));
|
|
59
|
+
// Background
|
|
60
|
+
parts.push(renderBackground(width, height, theme));
|
|
61
|
+
// Foundation (axes)
|
|
62
|
+
parts.push(renderFoundation(map, width, height, theme, strokeWidth));
|
|
63
|
+
// Attitudes
|
|
64
|
+
for (const att of map.attitudes) {
|
|
65
|
+
parts.push(renderAttitude(att, width, height, theme));
|
|
66
|
+
}
|
|
67
|
+
// Links
|
|
68
|
+
for (const link of map.links) {
|
|
69
|
+
parts.push(renderLink(link, allComponents, evolvedMap, width, height, theme));
|
|
70
|
+
}
|
|
71
|
+
// Evolution links (dashed lines from component to evolved position)
|
|
72
|
+
for (const ev of map.evolved) {
|
|
73
|
+
parts.push(renderEvolutionLink(ev, allComponents, width, height, theme));
|
|
74
|
+
}
|
|
75
|
+
// Anchors
|
|
76
|
+
for (const anchor of map.anchors) {
|
|
77
|
+
parts.push(renderAnchor(anchor, width, height, theme));
|
|
78
|
+
}
|
|
79
|
+
// Pipelines
|
|
80
|
+
for (const pipeline of map.pipelines) {
|
|
81
|
+
parts.push(renderPipeline(pipeline, allComponents, width, height, theme));
|
|
82
|
+
}
|
|
83
|
+
// Components
|
|
84
|
+
for (const comp of map.components) {
|
|
85
|
+
parts.push(renderComponent(comp, width, height, theme, map.pipelines));
|
|
86
|
+
}
|
|
87
|
+
// Submaps
|
|
88
|
+
for (const comp of map.submaps) {
|
|
89
|
+
parts.push(renderSubmap(comp, width, height, theme));
|
|
90
|
+
}
|
|
91
|
+
// Evolved components
|
|
92
|
+
for (const ev of map.evolved) {
|
|
93
|
+
parts.push(renderEvolvedComponent(ev, allComponents, width, height, theme));
|
|
94
|
+
}
|
|
95
|
+
// Inertia markers
|
|
96
|
+
for (const comp of allComponents) {
|
|
97
|
+
if (comp.inertia) {
|
|
98
|
+
parts.push(renderInertia(comp.maturity, comp.visibility, width, height));
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
// Notes
|
|
102
|
+
for (const note of map.notes) {
|
|
103
|
+
parts.push(renderNote(note, width, height, theme));
|
|
104
|
+
}
|
|
105
|
+
// Annotations
|
|
106
|
+
parts.push(renderAnnotations(map, width, height, theme));
|
|
107
|
+
// Accelerators
|
|
108
|
+
for (const accel of map.accelerators) {
|
|
109
|
+
parts.push(renderAccelerator(accel, width, height));
|
|
110
|
+
}
|
|
111
|
+
// Title
|
|
112
|
+
if (map.title) {
|
|
113
|
+
parts.push(`<text x="0" y="-10" font-weight="bold" font-size="20px" ` +
|
|
114
|
+
`font-family="${esc(theme.fontFamily ?? '')}" fill="${theme.mapGridTextColor ?? theme.stroke ?? 'black'}">${esc(map.title)}</text>`);
|
|
115
|
+
}
|
|
116
|
+
parts.push('</svg>');
|
|
117
|
+
return parts.join('\n');
|
|
118
|
+
}
|
|
119
|
+
function renderDefs(theme, strokeWidth, pipelineArrowWidth, pipelineArrowHeight) {
|
|
120
|
+
const evolvedStroke = theme.link?.evolvedStroke ?? 'red';
|
|
121
|
+
const mainStroke = theme.stroke ?? 'black';
|
|
122
|
+
const pipelineStroke = theme.pipelineArrowStroke ?? 'black';
|
|
123
|
+
return `<defs>
|
|
124
|
+
<linearGradient id="wardleyGradient" x1="0%" x2="100%" y1="0%" y2="0%">
|
|
125
|
+
<stop offset="0%" style="stop-color:rgb(196,196,196);stop-opacity:1"/>
|
|
126
|
+
<stop offset="0.3" style="stop-color:white;stop-opacity:1"/>
|
|
127
|
+
<stop offset="0.7" style="stop-color:white"/>
|
|
128
|
+
<stop offset="1" style="stop-color:rgb(196,196,196)"/>
|
|
129
|
+
</linearGradient>
|
|
130
|
+
<linearGradient id="arrowGradient" x1="0%" y1="0%" x2="100%" y2="0%">
|
|
131
|
+
<stop offset="0%" style="stop-color:#ffffff;stop-opacity:1"/>
|
|
132
|
+
<stop offset="40%" style="stop-color:#808080;stop-opacity:1"/>
|
|
133
|
+
<stop offset="100%" style="stop-color:#808080;stop-opacity:1"/>
|
|
134
|
+
</linearGradient>
|
|
135
|
+
<pattern id="diagonalHatch" patternUnits="userSpaceOnUse" width="4" height="4">
|
|
136
|
+
<path d="M 3,-1 l 2,2 M 0,0 l 4,4 M -1,3 l 2,2" stroke="grey" stroke-width="1" opacity=".5"/>
|
|
137
|
+
</pattern>
|
|
138
|
+
<marker id="arrow" markerWidth="12" markerHeight="12" refX="15" refY="0" viewBox="0 -5 10 10" orient="0">
|
|
139
|
+
<path d="M0,-5L10,0L0,5" fill="${evolvedStroke}"/>
|
|
140
|
+
</marker>
|
|
141
|
+
<marker id="graphArrow" markerWidth="${12 / strokeWidth}" markerHeight="${12 / strokeWidth}" refX="9" refY="0" viewBox="0 -5 10 10" orient="0">
|
|
142
|
+
<path d="M0,-5L10,0L0,5" fill="${mainStroke}"/>
|
|
143
|
+
</marker>
|
|
144
|
+
<marker id="pipelineArrow" markerWidth="${pipelineArrowWidth}" markerHeight="${pipelineArrowHeight}" refX="9" refY="0" viewBox="0 -5 10 10" orient="0">
|
|
145
|
+
<path d="M0,-5L10,0L0,5" fill="${pipelineStroke}"/>
|
|
146
|
+
</marker>
|
|
147
|
+
</defs>`;
|
|
148
|
+
}
|
|
149
|
+
function renderBackground(width, height, theme) {
|
|
150
|
+
const bg = theme.containerBackground ?? 'white';
|
|
151
|
+
let fill;
|
|
152
|
+
if (theme.className === 'wardley') {
|
|
153
|
+
fill = 'url(#wardleyGradient)';
|
|
154
|
+
}
|
|
155
|
+
else {
|
|
156
|
+
fill = bg;
|
|
157
|
+
}
|
|
158
|
+
return `<rect x="0" y="0" width="${width}" height="${height}" fill="${fill}" id="fillArea"/>`;
|
|
159
|
+
}
|
|
160
|
+
function renderFoundation(map, width, height, theme, strokeWidth) {
|
|
161
|
+
const stroke = theme.stroke ?? 'black';
|
|
162
|
+
const dashArray = theme.strokeDasharray ?? '2,2';
|
|
163
|
+
const sepStroke = theme.evolutionSeparationStroke ?? stroke;
|
|
164
|
+
const textColor = theme.mapGridTextColor ?? stroke;
|
|
165
|
+
const fontFamily = theme.fontFamily ?? '';
|
|
166
|
+
const evolution = map.evolution && map.evolution.length === 4 ? map.evolution : [
|
|
167
|
+
{ line1: 'Genesis', line2: '' },
|
|
168
|
+
{ line1: 'Custom-Built', line2: '' },
|
|
169
|
+
{ line1: 'Product', line2: '(+rental)' },
|
|
170
|
+
{ line1: 'Commodity', line2: '(+utility)' },
|
|
171
|
+
];
|
|
172
|
+
const custMark = (width / 20) * EvoOffsets.custom;
|
|
173
|
+
const prodMark = (width / 20) * EvoOffsets.product;
|
|
174
|
+
const commMark = (width / 20) * EvoOffsets.commodity;
|
|
175
|
+
const parts = [];
|
|
176
|
+
// Value chain axis (vertical, rotated)
|
|
177
|
+
parts.push(`<g id="valueChain" transform="translate(0,${height}) rotate(270)">`);
|
|
178
|
+
parts.push(` <line x1="0" y1="0" x2="${height}" y2="0" stroke="${stroke}" stroke-width="${strokeWidth}" stroke-dasharray="${dashArray}"/>`);
|
|
179
|
+
// Evolution separation lines
|
|
180
|
+
parts.push(` <line x1="0" y1="${custMark}" x2="${height}" y2="${custMark}" stroke="${sepStroke}" stroke-dasharray="${dashArray}" stroke-width="1"/>`);
|
|
181
|
+
parts.push(` <line x1="0" y1="${prodMark}" x2="${height}" y2="${prodMark}" stroke="${sepStroke}" stroke-dasharray="${dashArray}" stroke-width="1"/>`);
|
|
182
|
+
parts.push(` <line x1="0" y1="${commMark}" x2="${height}" y2="${commMark}" stroke="${sepStroke}" stroke-dasharray="${dashArray}" stroke-width="1"/>`);
|
|
183
|
+
parts.push(` <text x="${height / 2}" y="-8" text-anchor="middle" font-size="12px" font-family="${esc(fontFamily)}" fill="${textColor}">Value Chain</text>`);
|
|
184
|
+
parts.push('</g>');
|
|
185
|
+
// Evolution axis (horizontal)
|
|
186
|
+
parts.push(`<g id="Evolution" transform="translate(0,${height})">`);
|
|
187
|
+
parts.push(` <line x1="0" y1="0" x2="${width - 2}" y2="0" stroke="${stroke}" stroke-width="${strokeWidth}" marker-end="url(#graphArrow)"/>`);
|
|
188
|
+
parts.push(` <text x="0" y="1em" font-size="11px" font-family="${esc(fontFamily)}" fill="${textColor}">${esc(evolution[0].line1)}</text>`);
|
|
189
|
+
if (evolution[0].line2)
|
|
190
|
+
parts.push(` <text x="0" y="2em" font-size="11px" font-family="${esc(fontFamily)}" fill="${textColor}">${esc(evolution[0].line2)}</text>`);
|
|
191
|
+
parts.push(` <text x="${custMark + 5}" y="1em" font-size="11px" font-family="${esc(fontFamily)}" fill="${textColor}">${esc(evolution[1].line1)}</text>`);
|
|
192
|
+
if (evolution[1].line2)
|
|
193
|
+
parts.push(` <text x="${custMark + 5}" y="2em" font-size="11px" font-family="${esc(fontFamily)}" fill="${textColor}">${esc(evolution[1].line2)}</text>`);
|
|
194
|
+
parts.push(` <text x="${prodMark + 5}" y="1em" font-size="11px" font-family="${esc(fontFamily)}" fill="${textColor}">${esc(evolution[2].line1)}</text>`);
|
|
195
|
+
if (evolution[2].line2)
|
|
196
|
+
parts.push(` <text x="${prodMark + 5}" y="2em" font-size="11px" font-family="${esc(fontFamily)}" fill="${textColor}">${esc(evolution[2].line2)}</text>`);
|
|
197
|
+
parts.push(` <text x="${commMark + 5}" y="1em" font-size="11px" font-family="${esc(fontFamily)}" fill="${textColor}">${esc(evolution[3].line1)}</text>`);
|
|
198
|
+
if (evolution[3].line2)
|
|
199
|
+
parts.push(` <text x="${commMark + 5}" y="2em" font-size="11px" font-family="${esc(fontFamily)}" fill="${textColor}">${esc(evolution[3].line2)}</text>`);
|
|
200
|
+
parts.push(` <text x="${width}" y="1.8em" text-anchor="end" font-size="11px" font-family="${esc(fontFamily)}" fill="${textColor}">Evolution</text>`);
|
|
201
|
+
parts.push('</g>');
|
|
202
|
+
return parts.join('\n');
|
|
203
|
+
}
|
|
204
|
+
function renderAttitude(att, width, height, theme) {
|
|
205
|
+
const x = maturityToX(att.maturity, width);
|
|
206
|
+
const y = visibilityToY(att.visibility, height);
|
|
207
|
+
const x2 = maturityToX(att.maturity2, width);
|
|
208
|
+
const y2 = visibilityToY(att.visibility2, height);
|
|
209
|
+
const w = x2 - x;
|
|
210
|
+
const h = y2 - y;
|
|
211
|
+
const attType = att.attitude;
|
|
212
|
+
const style = theme.attitudes?.[attType];
|
|
213
|
+
if (!style)
|
|
214
|
+
return '';
|
|
215
|
+
return `<rect x="${x}" y="${y}" width="${w}" height="${h}" ` +
|
|
216
|
+
`fill="${style.fill ?? 'none'}" stroke="${style.stroke ?? 'none'}" ` +
|
|
217
|
+
`fill-opacity="${style.fillOpacity ?? 0.4}" stroke-opacity="${style.strokeOpacity ?? 0.7}" ` +
|
|
218
|
+
`stroke-width="${theme.attitudes?.strokeWidth ?? '5px'}"/>`;
|
|
219
|
+
}
|
|
220
|
+
export function resolveComponentPosition(name, allComponents, evolvedMap) {
|
|
221
|
+
// Check evolved components first
|
|
222
|
+
const ev = evolvedMap.get(name);
|
|
223
|
+
if (ev) {
|
|
224
|
+
return { x: 0, y: 0, maturity: ev.maturity, visibility: ev.visibility, evolved: true };
|
|
225
|
+
}
|
|
226
|
+
const comp = allComponents.find(c => c.name === name);
|
|
227
|
+
if (comp) {
|
|
228
|
+
return { x: 0, y: 0, maturity: comp.maturity, visibility: comp.visibility, evolved: comp.evolved ?? false };
|
|
229
|
+
}
|
|
230
|
+
return null;
|
|
231
|
+
}
|
|
232
|
+
function renderLink(link, allComponents, evolvedMap, width, height, theme) {
|
|
233
|
+
const startPos = resolveComponentPosition(link.start, allComponents, evolvedMap);
|
|
234
|
+
const endPos = resolveComponentPosition(link.end, allComponents, evolvedMap);
|
|
235
|
+
if (!startPos || !endPos)
|
|
236
|
+
return '';
|
|
237
|
+
const x1 = maturityToX(startPos.maturity, width);
|
|
238
|
+
const y1 = visibilityToY(startPos.visibility, height);
|
|
239
|
+
const x2 = maturityToX(endPos.maturity, width);
|
|
240
|
+
const y2 = visibilityToY(endPos.visibility, height);
|
|
241
|
+
const isEvolved = startPos.evolved || endPos.evolved;
|
|
242
|
+
const linkStroke = isEvolved ? (theme.link?.evolvedStroke ?? 'red') : (theme.link?.stroke ?? 'grey');
|
|
243
|
+
const linkWidth = isEvolved ? (theme.link?.evolvedStrokeWidth ?? 1) : (theme.link?.strokeWidth ?? 1);
|
|
244
|
+
const parts = [];
|
|
245
|
+
parts.push(`<line x1="${x1}" y1="${y1}" x2="${x2}" y2="${y2}" stroke="${linkStroke}" stroke-width="${linkWidth}"/>`);
|
|
246
|
+
// Flow overlay
|
|
247
|
+
if (link.flow) {
|
|
248
|
+
parts.push(`<line x1="${x1}" y1="${y1}" x2="${x2}" y2="${y2}" ` +
|
|
249
|
+
`stroke="${theme.link?.flow ?? '#99c5ee9e'}" stroke-width="${theme.link?.flowStrokeWidth ?? 10}"/>`);
|
|
250
|
+
}
|
|
251
|
+
// Context text
|
|
252
|
+
if (link.context) {
|
|
253
|
+
const cx = (x1 + x2) / 2;
|
|
254
|
+
const cy = (y1 + y2) / 2;
|
|
255
|
+
parts.push(`<text x="${cx}" y="${cy - 8}" text-anchor="middle" ` +
|
|
256
|
+
`font-size="${theme.link?.contextFontSize ?? '11px'}" ` +
|
|
257
|
+
`font-family="${esc(theme.fontFamily ?? '')}" fill="${theme.mapGridTextColor ?? theme.stroke ?? 'black'}">${esc(link.context)}</text>`);
|
|
258
|
+
}
|
|
259
|
+
return parts.join('\n');
|
|
260
|
+
}
|
|
261
|
+
function renderEvolutionLink(ev, allComponents, width, height, theme) {
|
|
262
|
+
const source = allComponents.find(c => c.name === ev.name);
|
|
263
|
+
if (!source)
|
|
264
|
+
return '';
|
|
265
|
+
const x1 = maturityToX(source.maturity, width);
|
|
266
|
+
const y1 = visibilityToY(source.visibility, height);
|
|
267
|
+
const x2 = maturityToX(ev.maturity, width);
|
|
268
|
+
const y2 = y1; // same visibility
|
|
269
|
+
const evolvedStroke = theme.link?.evolvedStroke ?? 'red';
|
|
270
|
+
return `<line x1="${x1}" y1="${y1}" x2="${x2}" y2="${y2}" ` +
|
|
271
|
+
`stroke="${evolvedStroke}" stroke-width="${theme.link?.evolvedStrokeWidth ?? 1}" ` +
|
|
272
|
+
`stroke-dasharray="5 5" marker-end="url(#arrow)"/>`;
|
|
273
|
+
}
|
|
274
|
+
function renderAnchor(anchor, width, height, theme) {
|
|
275
|
+
const x = maturityToX(anchor.maturity, width);
|
|
276
|
+
const y = visibilityToY(anchor.visibility, height);
|
|
277
|
+
const fontSize = theme.anchor?.fontSize ?? '14px';
|
|
278
|
+
const fill = theme.mapGridTextColor ?? theme.stroke ?? 'black';
|
|
279
|
+
return `<text x="${x}" y="${y}" font-size="${fontSize}" font-weight="bold" ` +
|
|
280
|
+
`font-family="${esc(theme.fontFamily ?? '')}" fill="${fill}" text-anchor="middle">${esc(anchor.name)}</text>`;
|
|
281
|
+
}
|
|
282
|
+
function renderPipeline(pipeline, allComponents, width, height, theme) {
|
|
283
|
+
if (pipeline.hidden)
|
|
284
|
+
return '';
|
|
285
|
+
const comp = allComponents.find(c => c.name === pipeline.name);
|
|
286
|
+
if (!comp)
|
|
287
|
+
return '';
|
|
288
|
+
const y = visibilityToY(comp.visibility, height);
|
|
289
|
+
const m1 = pipeline.maturity1 ?? 0.2;
|
|
290
|
+
const m2 = pipeline.maturity2 ?? 0.8;
|
|
291
|
+
const x1 = maturityToX(m1, width) - 15;
|
|
292
|
+
const x2 = maturityToX(m2, width) + 15;
|
|
293
|
+
const pipelineWidth = x2 - x1;
|
|
294
|
+
const pipelineHeight = 22;
|
|
295
|
+
const sw = theme.component?.pipelineStrokeWidth ?? 1;
|
|
296
|
+
const str = theme.component?.stroke ?? 'black';
|
|
297
|
+
return `<g transform="translate(${x1},${y - 11})">
|
|
298
|
+
<line x1="0" y1="0" x2="${pipelineWidth}" y2="0" stroke-width="${sw}" stroke="${str}"/>
|
|
299
|
+
<line x1="${pipelineWidth}" y1="0" x2="${pipelineWidth}" y2="${pipelineHeight}" stroke-width="${sw}" stroke="${str}"/>
|
|
300
|
+
<line x1="${pipelineWidth}" y1="${pipelineHeight}" x2="0" y2="${pipelineHeight}" stroke-width="${sw}" stroke="${str}"/>
|
|
301
|
+
<line x1="0" y1="${pipelineHeight}" x2="0" y2="0" stroke-width="${sw}" stroke="${str}"/>
|
|
302
|
+
</g>`;
|
|
303
|
+
}
|
|
304
|
+
function isPipelineComponent(comp, pipelines) {
|
|
305
|
+
for (const p of pipelines) {
|
|
306
|
+
if (p.name === comp.name && !p.hidden)
|
|
307
|
+
return true;
|
|
308
|
+
}
|
|
309
|
+
return false;
|
|
310
|
+
}
|
|
311
|
+
function renderComponent(comp, width, height, theme, pipelines) {
|
|
312
|
+
const x = maturityToX(comp.maturity, width);
|
|
313
|
+
const y = visibilityToY(comp.visibility, height);
|
|
314
|
+
const evolved = comp.evolved ?? false;
|
|
315
|
+
const radius = theme.component?.radius ?? 5;
|
|
316
|
+
const stroke = evolved ? (theme.component?.evolved ?? 'red') : (theme.component?.stroke ?? 'black');
|
|
317
|
+
const fill = evolved ? (theme.component?.evolvedFill ?? 'white') : (theme.component?.fill ?? 'white');
|
|
318
|
+
const sw = theme.component?.strokeWidth ?? 1;
|
|
319
|
+
const textColor = evolved ? (theme.component?.evolvedTextColor ?? 'red') : (theme.component?.textColor ?? 'black');
|
|
320
|
+
const fontSize = theme.component?.fontSize ?? '14px';
|
|
321
|
+
const fontWeight = theme.component?.fontWeight ?? 'normal';
|
|
322
|
+
const fontFamily = theme.fontFamily ?? '';
|
|
323
|
+
const isPipeline = isPipelineComponent(comp, pipelines);
|
|
324
|
+
const parts = [];
|
|
325
|
+
if (isPipeline) {
|
|
326
|
+
// Pipeline components get rectangles
|
|
327
|
+
parts.push(`<rect x="${x - 5}" y="${y - 5}" width="10" height="10" ` +
|
|
328
|
+
`fill="${fill}" stroke="${stroke}" stroke-width="${theme.component?.pipelineStrokeWidth ?? 1}"/>`);
|
|
329
|
+
}
|
|
330
|
+
else {
|
|
331
|
+
// Normal components get circles
|
|
332
|
+
parts.push(`<circle cx="${x}" cy="${y}" r="${radius}" ` +
|
|
333
|
+
`fill="${fill}" stroke="${stroke}" stroke-width="${sw}"/>`);
|
|
334
|
+
}
|
|
335
|
+
// Label
|
|
336
|
+
const labelX = x + (comp.label?.x ?? 5);
|
|
337
|
+
const labelY = y + (comp.label?.y ?? -10);
|
|
338
|
+
parts.push(`<text x="${labelX}" y="${labelY}" font-size="${fontSize}" font-weight="${fontWeight}" ` +
|
|
339
|
+
`font-family="${esc(fontFamily)}" fill="${textColor}">${esc(comp.name)}</text>`);
|
|
340
|
+
return parts.join('\n');
|
|
341
|
+
}
|
|
342
|
+
function renderSubmap(comp, width, height, theme) {
|
|
343
|
+
const x = maturityToX(comp.maturity, width);
|
|
344
|
+
const y = visibilityToY(comp.visibility, height);
|
|
345
|
+
const evolved = comp.evolved ?? false;
|
|
346
|
+
const sm = theme.submap ?? theme.component;
|
|
347
|
+
const radius = sm?.radius ?? 5;
|
|
348
|
+
const stroke = evolved ? (sm?.evolved ?? 'red') : (sm?.stroke ?? 'black');
|
|
349
|
+
const fill = evolved ? (sm?.evolvedFill ?? 'black') : (sm?.fill ?? 'black');
|
|
350
|
+
const sw = sm?.strokeWidth ?? 1;
|
|
351
|
+
const textColor = evolved ? (sm?.evolvedTextColor ?? 'red') : (sm?.textColor ?? 'black');
|
|
352
|
+
const fontSize = sm?.fontSize ?? '13px';
|
|
353
|
+
const fontFamily = theme.fontFamily ?? '';
|
|
354
|
+
const parts = [];
|
|
355
|
+
parts.push(`<rect x="${x - radius}" y="${y - radius}" width="${radius * 2}" height="${radius * 2}" ` +
|
|
356
|
+
`fill="${fill}" stroke="${stroke}" stroke-width="${sw}"/>`);
|
|
357
|
+
const labelX = x + (comp.label?.x ?? 5);
|
|
358
|
+
const labelY = y + (comp.label?.y ?? -10);
|
|
359
|
+
parts.push(`<text x="${labelX}" y="${labelY}" font-size="${fontSize}" ` +
|
|
360
|
+
`font-family="${esc(fontFamily)}" fill="${textColor}">${esc(comp.name)}</text>`);
|
|
361
|
+
return parts.join('\n');
|
|
362
|
+
}
|
|
363
|
+
function renderEvolvedComponent(ev, allComponents, width, height, theme) {
|
|
364
|
+
const source = allComponents.find(c => c.name === ev.name);
|
|
365
|
+
if (!source)
|
|
366
|
+
return '';
|
|
367
|
+
const x = maturityToX(ev.maturity, width);
|
|
368
|
+
const y = visibilityToY(source.visibility, height);
|
|
369
|
+
const radius = theme.component?.radius ?? 5;
|
|
370
|
+
const stroke = theme.component?.evolved ?? 'red';
|
|
371
|
+
const fill = theme.component?.evolvedFill ?? 'white';
|
|
372
|
+
const sw = theme.component?.strokeWidth ?? 1;
|
|
373
|
+
const textColor = theme.component?.evolvedTextColor ?? 'red';
|
|
374
|
+
const fontSize = theme.component?.fontSize ?? '14px';
|
|
375
|
+
const fontFamily = theme.fontFamily ?? '';
|
|
376
|
+
const displayName = ev.override || ev.name;
|
|
377
|
+
const labelX = x + (ev.label?.x ?? 5);
|
|
378
|
+
const labelY = y + (ev.label?.y ?? -10);
|
|
379
|
+
const parts = [];
|
|
380
|
+
parts.push(`<circle cx="${x}" cy="${y}" r="${radius}" fill="${fill}" stroke="${stroke}" stroke-width="${sw}"/>`);
|
|
381
|
+
parts.push(`<text x="${labelX}" y="${labelY}" font-size="${fontSize}" ` +
|
|
382
|
+
`font-family="${esc(fontFamily)}" fill="${textColor}">${esc(displayName)}</text>`);
|
|
383
|
+
return parts.join('\n');
|
|
384
|
+
}
|
|
385
|
+
function renderInertia(maturity, visibility, width, height) {
|
|
386
|
+
const x = maturityToX(maturity, width);
|
|
387
|
+
const y = visibilityToY(visibility, height);
|
|
388
|
+
return `<line x1="${x}" y1="${y - 10}" x2="${x}" y2="${y + 10}" stroke="black" stroke-width="6"/>`;
|
|
389
|
+
}
|
|
390
|
+
function renderNote(note, width, height, theme) {
|
|
391
|
+
const x = maturityToX(note.maturity, width);
|
|
392
|
+
const y = visibilityToY(note.visibility, height);
|
|
393
|
+
const fontWeight = theme.note?.fontWeight ?? 'bold';
|
|
394
|
+
const fontSize = theme.note?.fontSize ?? '12px';
|
|
395
|
+
const fill = theme.note?.textColor ?? 'black';
|
|
396
|
+
const fontFamily = theme.fontFamily ?? '';
|
|
397
|
+
return `<text x="${x}" y="${y}" font-weight="${fontWeight}" font-size="${fontSize}" ` +
|
|
398
|
+
`font-family="${esc(fontFamily)}" fill="${fill}">${esc(note.text)}</text>`;
|
|
399
|
+
}
|
|
400
|
+
function renderAnnotations(map, width, height, theme) {
|
|
401
|
+
if (!map.annotations || map.annotations.length === 0)
|
|
402
|
+
return '';
|
|
403
|
+
const parts = [];
|
|
404
|
+
const annStyles = theme.annotation;
|
|
405
|
+
const fontFamily = theme.fontFamily ?? '';
|
|
406
|
+
// Render numbered circles at each occurrence position
|
|
407
|
+
for (const ann of map.annotations) {
|
|
408
|
+
if (!ann.occurances)
|
|
409
|
+
continue;
|
|
410
|
+
for (const occ of ann.occurances) {
|
|
411
|
+
const x = maturityToX(occ.maturity, width);
|
|
412
|
+
const y = visibilityToY(occ.visibility, height);
|
|
413
|
+
parts.push(`<circle cx="${x}" cy="${y}" r="15" ` +
|
|
414
|
+
`fill="${annStyles.fill}" stroke="${annStyles.stroke}" stroke-width="${annStyles.strokeWidth}"/>`);
|
|
415
|
+
parts.push(`<text x="${x - 5}" y="${y + 5}" text-anchor="start" ` +
|
|
416
|
+
`font-family="${esc(fontFamily)}" fill="${annStyles.text || annStyles.boxTextColour}">${ann.number}</text>`);
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
// Render annotation box
|
|
420
|
+
const annPos = map.presentation?.annotations ?? { visibility: 0.9, maturity: 0.1 };
|
|
421
|
+
const boxX = maturityToX(annPos.maturity, width);
|
|
422
|
+
const boxY = visibilityToY(annPos.visibility, height);
|
|
423
|
+
const lineHeight = 18;
|
|
424
|
+
const boxWidth = 200;
|
|
425
|
+
const boxHeight = (map.annotations.length + 1) * lineHeight + 8;
|
|
426
|
+
// Box background
|
|
427
|
+
parts.push(`<rect x="${boxX - 2}" y="${boxY - 2}" width="${boxWidth}" height="${boxHeight}" ` +
|
|
428
|
+
`fill="${annStyles.boxFill}" stroke="${annStyles.boxStroke}" stroke-width="${annStyles.boxStrokeWidth}"/>`);
|
|
429
|
+
// "Annotations:" header
|
|
430
|
+
parts.push(`<text x="${boxX + 2}" y="${boxY + lineHeight}" text-decoration="underline" ` +
|
|
431
|
+
`font-family="${esc(fontFamily)}" fill="${annStyles.text || annStyles.boxTextColour}" font-size="13px">Annotations:</text>`);
|
|
432
|
+
// Individual annotation entries
|
|
433
|
+
for (let i = 0; i < map.annotations.length; i++) {
|
|
434
|
+
const ann = map.annotations[i];
|
|
435
|
+
const ty = boxY + (i + 2) * lineHeight;
|
|
436
|
+
parts.push(`<text x="${boxX + 2}" y="${ty}" ` +
|
|
437
|
+
`font-family="${esc(fontFamily)}" fill="${annStyles.boxTextColour}" font-size="13px"> ${ann.number}. ${esc(ann.text)}</text>`);
|
|
438
|
+
}
|
|
439
|
+
return parts.join('\n');
|
|
440
|
+
}
|
|
441
|
+
function renderAccelerator(accel, width, height) {
|
|
442
|
+
const x = maturityToX(accel.maturity, width);
|
|
443
|
+
const y = visibilityToY(accel.visibility, height);
|
|
444
|
+
const isDeaccel = accel.deaccelerator;
|
|
445
|
+
const rotation = isDeaccel ? ' rotate(180,25,25)' : '';
|
|
446
|
+
return `<g transform="translate(${x - 25},${y - 25})${rotation}">
|
|
447
|
+
<g opacity="0.8" fill="url(#arrowGradient)">
|
|
448
|
+
<path d="m25.5 6 18 18 -18 18v-9H9a1.5 1.5 0 0 1 -1.5 -1.5V16.5a1.5 1.5 0 0 1 1.5 -1.5h16.5Z"/>
|
|
449
|
+
</g>
|
|
450
|
+
<path d="m44.561 22.939 -18 -18A1.5 1.5 0 0 0 24 6v7.5H9a3.003 3.003 0 0 0 -3 3v15a3.003 3.003 0 0 0 3 3h15v7.5a1.5 1.5 0 0 0 2.561 1.06l18 -18a1.5 1.5 0 0 0 0 -2.121ZM27 38.379V33a1.5 1.5 0 0 0 -1.5 -1.5H9V16.5h16.5a1.5 1.5 0 0 0 1.5 -1.5V9.621L41.379 24Z"/>
|
|
451
|
+
</g>`;
|
|
452
|
+
}
|
|
453
|
+
//# sourceMappingURL=render.mjs.map
|