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,137 @@
|
|
|
1
|
+
import { createEmptyMap, createUnifiedComponent, } from './types/unified/index.mjs';
|
|
2
|
+
import Converter from './Converter.mjs';
|
|
3
|
+
export class UnifiedConverter {
|
|
4
|
+
legacyConverter;
|
|
5
|
+
constructor(featureSwitches) {
|
|
6
|
+
this.legacyConverter = new Converter(featureSwitches);
|
|
7
|
+
}
|
|
8
|
+
parse(mapText) {
|
|
9
|
+
const legacyMap = this.legacyConverter.parse(mapText);
|
|
10
|
+
return this.transformToUnifiedMap(legacyMap);
|
|
11
|
+
}
|
|
12
|
+
transformToUnifiedMap(legacyMap) {
|
|
13
|
+
const unifiedMap = createEmptyMap();
|
|
14
|
+
this.copyBasicProperties(legacyMap, unifiedMap);
|
|
15
|
+
this.transformAllComponentTypes(legacyMap, unifiedMap);
|
|
16
|
+
unifiedMap.evolved = this.transformEvolvedElements(legacyMap.evolved || []);
|
|
17
|
+
unifiedMap.pipelines = this.transformPipelines(legacyMap.pipelines || [], this.getAllComponents(unifiedMap));
|
|
18
|
+
unifiedMap.links = this.transformLinks(legacyMap.links || []);
|
|
19
|
+
this.copyAdditionalProperties(legacyMap, unifiedMap);
|
|
20
|
+
return unifiedMap;
|
|
21
|
+
}
|
|
22
|
+
copyBasicProperties(source, target) {
|
|
23
|
+
target.title = source.title || '';
|
|
24
|
+
target.presentation = source.presentation;
|
|
25
|
+
target.errors = source.errors || [];
|
|
26
|
+
target.evolution = source.evolution || [];
|
|
27
|
+
}
|
|
28
|
+
copyAdditionalProperties(source, target) {
|
|
29
|
+
target.annotations = source.annotations || [];
|
|
30
|
+
target.notes = source.notes || [];
|
|
31
|
+
target.urls = source.urls || [];
|
|
32
|
+
target.attitudes = source.attitudes || [];
|
|
33
|
+
target.accelerators = source.accelerators || [];
|
|
34
|
+
}
|
|
35
|
+
transformAllComponentTypes(legacyMap, unifiedMap) {
|
|
36
|
+
unifiedMap.components = this.transformComponents(legacyMap.elements || [], 'component');
|
|
37
|
+
unifiedMap.anchors = this.transformComponents(legacyMap.anchors || [], 'anchor');
|
|
38
|
+
unifiedMap.submaps = this.transformComponents(legacyMap.submaps || [], 'submap');
|
|
39
|
+
}
|
|
40
|
+
transformComponents(legacyComponents, type) {
|
|
41
|
+
return legacyComponents.map(component => {
|
|
42
|
+
return createUnifiedComponent({
|
|
43
|
+
id: component.id || this.generateId(component.name, type),
|
|
44
|
+
name: component.name || '',
|
|
45
|
+
type: type,
|
|
46
|
+
maturity: component.maturity || 0,
|
|
47
|
+
visibility: component.visibility || 0,
|
|
48
|
+
line: component.line,
|
|
49
|
+
label: component.label,
|
|
50
|
+
evolving: component.evolving || false,
|
|
51
|
+
evolved: component.evolved || false,
|
|
52
|
+
evolveMaturity: component.evolveMaturity,
|
|
53
|
+
inertia: component.inertia || false,
|
|
54
|
+
pseudoComponent: component.pseudoComponent || false,
|
|
55
|
+
offsetY: component.offsetY || 0,
|
|
56
|
+
decorators: component.decorators,
|
|
57
|
+
override: component.override,
|
|
58
|
+
url: component.url,
|
|
59
|
+
pipeline: component.pipeline || false,
|
|
60
|
+
increaseLabelSpacing: component.increaseLabelSpacing,
|
|
61
|
+
});
|
|
62
|
+
});
|
|
63
|
+
}
|
|
64
|
+
transformEvolvedElements(legacyEvolved) {
|
|
65
|
+
return legacyEvolved.map(evolved => {
|
|
66
|
+
return {
|
|
67
|
+
name: evolved.name || '',
|
|
68
|
+
maturity: evolved.maturity || 0,
|
|
69
|
+
label: evolved.label,
|
|
70
|
+
override: evolved.override,
|
|
71
|
+
line: evolved.line,
|
|
72
|
+
decorators: evolved.decorators,
|
|
73
|
+
increaseLabelSpacing: evolved.increaseLabelSpacing,
|
|
74
|
+
};
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
transformPipelines(legacyPipelines, allComponents) {
|
|
78
|
+
return legacyPipelines.map(pipeline => {
|
|
79
|
+
const transformedPipeline = {
|
|
80
|
+
id: pipeline.id || this.generateId(pipeline.name, 'pipeline'),
|
|
81
|
+
name: pipeline.name || '',
|
|
82
|
+
visibility: pipeline.visibility || 0,
|
|
83
|
+
line: pipeline.line,
|
|
84
|
+
components: this.transformPipelineComponents(pipeline.components || []),
|
|
85
|
+
inertia: pipeline.inertia || false,
|
|
86
|
+
hidden: pipeline.hidden || false,
|
|
87
|
+
maturity1: pipeline.maturity1,
|
|
88
|
+
maturity2: pipeline.maturity2,
|
|
89
|
+
};
|
|
90
|
+
this.processPipelineVisibility(transformedPipeline, allComponents);
|
|
91
|
+
return transformedPipeline;
|
|
92
|
+
});
|
|
93
|
+
}
|
|
94
|
+
transformPipelineComponents(components) {
|
|
95
|
+
return components.map(comp => ({
|
|
96
|
+
id: comp.id || this.generateId(comp.name, 'pipelinecomponent'),
|
|
97
|
+
name: comp.name || '',
|
|
98
|
+
maturity: comp.maturity || 0,
|
|
99
|
+
visibility: comp.visibility || 0,
|
|
100
|
+
line: comp.line,
|
|
101
|
+
label: comp.label || { x: 0, y: 0 },
|
|
102
|
+
}));
|
|
103
|
+
}
|
|
104
|
+
processPipelineVisibility(pipeline, allComponents) {
|
|
105
|
+
if (!allComponents)
|
|
106
|
+
return;
|
|
107
|
+
const matchingComponent = allComponents.find(component => component.name === pipeline.name);
|
|
108
|
+
if (matchingComponent) {
|
|
109
|
+
pipeline.visibility = matchingComponent.visibility;
|
|
110
|
+
}
|
|
111
|
+
else {
|
|
112
|
+
pipeline.hidden = true;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
transformLinks(legacyLinks) {
|
|
116
|
+
return legacyLinks.map(link => ({
|
|
117
|
+
start: link.start || '',
|
|
118
|
+
end: link.end || '',
|
|
119
|
+
line: link.line,
|
|
120
|
+
flow: link.flow !== false,
|
|
121
|
+
flowValue: link.flowValue,
|
|
122
|
+
future: link.future || false,
|
|
123
|
+
past: link.past || false,
|
|
124
|
+
context: link.context,
|
|
125
|
+
}));
|
|
126
|
+
}
|
|
127
|
+
generateId(name, type) {
|
|
128
|
+
return `${type}_${name.replace(/\s+/g, '_').toLowerCase()}`;
|
|
129
|
+
}
|
|
130
|
+
getAllComponents(map) {
|
|
131
|
+
return [...map.components, ...map.anchors, ...map.submaps, ...map.markets, ...map.ecosystems];
|
|
132
|
+
}
|
|
133
|
+
stripComments(data) {
|
|
134
|
+
return this.legacyConverter.stripComments(data);
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
//# sourceMappingURL=UnifiedConverter.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UnifiedConverter.mjs","sourceRoot":"","sources":["../../../../../src/lib/vendor/cli-owm/parser/UnifiedConverter.mts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"defaults.d.mts","sourceRoot":"","sources":["../../../../../src/lib/vendor/cli-owm/parser/defaults.mts"],"names":[],"mappings":"AAAA,eAAO,MAAM,kBAAkB;;;CAAiB,CAAC;AAEjD,MAAM,WAAW,OAAO;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;CACrB;AAED,eAAO,MAAM,UAAU,EAAE,OAIxB,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"defaults.mjs","sourceRoot":"","sources":["../../../../../src/lib/vendor/cli-owm/parser/defaults.mts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,kBAAkB,GAAG,EAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,EAAC,CAAC;AAQjD,MAAM,CAAC,MAAM,UAAU,GAAY;IAC/B,MAAM,EAAE,GAAG;IACX,OAAO,EAAE,CAAC;IACV,SAAS,EAAE,EAAE;CAChB,CAAC"}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import { ComponentLabel, IProvideBaseElement, IProvideDecoratorsConfig } from './types/base.mjs';
|
|
2
|
+
export declare const setName: (baseElement: IProvideBaseElement & {
|
|
3
|
+
name?: string;
|
|
4
|
+
}, element: string, config: IProvideDecoratorsConfig) => void;
|
|
5
|
+
export declare const setRef: (baseElement: IProvideBaseElement & {
|
|
6
|
+
url?: string;
|
|
7
|
+
}, element: string) => void;
|
|
8
|
+
export declare const setTextFromEnding: (baseElement: IProvideBaseElement & {
|
|
9
|
+
text?: string;
|
|
10
|
+
}, element: string) => void;
|
|
11
|
+
export declare const setOccurances: (baseElement: IProvideBaseElement & {
|
|
12
|
+
occurances?: {
|
|
13
|
+
visibility: number;
|
|
14
|
+
maturity: number;
|
|
15
|
+
}[];
|
|
16
|
+
}, element: string) => void;
|
|
17
|
+
export declare const setPipelineMaturity: (baseElement: IProvideBaseElement & {
|
|
18
|
+
hidden?: boolean;
|
|
19
|
+
maturity1?: number;
|
|
20
|
+
maturity2?: number;
|
|
21
|
+
}, element: string) => void;
|
|
22
|
+
export declare const setPipelineComponentMaturity: (baseElement: IProvideBaseElement & {
|
|
23
|
+
maturity?: number;
|
|
24
|
+
}, element: string) => void;
|
|
25
|
+
export declare const extractLocation: (input: string, defaultValue: {
|
|
26
|
+
visibility: number;
|
|
27
|
+
maturity: number;
|
|
28
|
+
}) => {
|
|
29
|
+
visibility: number;
|
|
30
|
+
maturity: number;
|
|
31
|
+
};
|
|
32
|
+
export declare const extractSize: (input: string, defaultValue: {
|
|
33
|
+
width: number;
|
|
34
|
+
height: number;
|
|
35
|
+
}) => {
|
|
36
|
+
width: number;
|
|
37
|
+
height: number;
|
|
38
|
+
};
|
|
39
|
+
export declare const extractManyLocations: (input: string, defaultValue: {
|
|
40
|
+
visibility: number;
|
|
41
|
+
maturity: number;
|
|
42
|
+
visibility2: number;
|
|
43
|
+
maturity2: number;
|
|
44
|
+
}) => {
|
|
45
|
+
visibility: number;
|
|
46
|
+
maturity: number;
|
|
47
|
+
visibility2: number;
|
|
48
|
+
maturity2: number;
|
|
49
|
+
};
|
|
50
|
+
export declare const setMethod: (baseElement: IProvideBaseElement & {
|
|
51
|
+
name?: string;
|
|
52
|
+
buy?: boolean;
|
|
53
|
+
build?: boolean;
|
|
54
|
+
outsource?: boolean;
|
|
55
|
+
market?: boolean;
|
|
56
|
+
ecosystem?: boolean;
|
|
57
|
+
increaseLabelSpacing?: number;
|
|
58
|
+
}, element: string, config: IProvideDecoratorsConfig) => void;
|
|
59
|
+
export declare const setAttitude: (baseElement: IProvideBaseElement & {
|
|
60
|
+
attitude?: string;
|
|
61
|
+
}, _element: string, config: IProvideDecoratorsConfig) => void;
|
|
62
|
+
export declare const setHeightWidth: (baseElement: IProvideBaseElement & {
|
|
63
|
+
width?: string;
|
|
64
|
+
height?: string;
|
|
65
|
+
}, element: string) => void;
|
|
66
|
+
export declare const setNameWithMaturity: (baseElement: IProvideBaseElement & {
|
|
67
|
+
name?: string;
|
|
68
|
+
override?: string;
|
|
69
|
+
maturity?: number;
|
|
70
|
+
}, element: string) => void;
|
|
71
|
+
export declare const setCoords: (baseElement: IProvideBaseElement & {
|
|
72
|
+
visibility?: number;
|
|
73
|
+
maturity?: number;
|
|
74
|
+
}, element: string) => void;
|
|
75
|
+
export declare const isDeAccelerator: (baseElement: IProvideBaseElement & {
|
|
76
|
+
deaccelerator?: boolean;
|
|
77
|
+
}, element: string) => void;
|
|
78
|
+
export declare const setManyCoords: (baseElement: IProvideBaseElement & {
|
|
79
|
+
visibility?: number;
|
|
80
|
+
maturity?: number;
|
|
81
|
+
visibility2?: number;
|
|
82
|
+
maturity2?: number;
|
|
83
|
+
}, element: string) => void;
|
|
84
|
+
export declare const decorators: (baseElement: IProvideBaseElement & {
|
|
85
|
+
decorators?: any;
|
|
86
|
+
increaseLabelSpacing?: number;
|
|
87
|
+
}, element: string) => IProvideBaseElement & {
|
|
88
|
+
decorators?: any;
|
|
89
|
+
increaseLabelSpacing?: number;
|
|
90
|
+
};
|
|
91
|
+
export declare const setLabel: (baseElement: IProvideBaseElement & {
|
|
92
|
+
increaseLabelSpacing?: number;
|
|
93
|
+
label?: ComponentLabel;
|
|
94
|
+
}, element: string) => void;
|
|
95
|
+
export declare const setEvolve: (baseElement: IProvideBaseElement & {
|
|
96
|
+
evolveMaturity?: number | null;
|
|
97
|
+
evolving?: boolean;
|
|
98
|
+
}, element: string) => void;
|
|
99
|
+
export declare const setInertia: (baseElement: IProvideBaseElement & {
|
|
100
|
+
inertia?: boolean;
|
|
101
|
+
}, element: string) => void;
|
|
102
|
+
export declare const setText: (baseElement: IProvideBaseElement & {
|
|
103
|
+
text?: string;
|
|
104
|
+
}, element: string, config: IProvideDecoratorsConfig) => void;
|
|
105
|
+
export declare const setContext: (baseElement: IProvideBaseElement & {
|
|
106
|
+
context?: string;
|
|
107
|
+
}, element: string, config: IProvideDecoratorsConfig) => void;
|
|
108
|
+
export declare const setNumber: (baseElement: IProvideBaseElement & {
|
|
109
|
+
number?: number;
|
|
110
|
+
}, element: string, config: IProvideDecoratorsConfig) => void;
|
|
111
|
+
export declare const setUrl: (baseElement: IProvideBaseElement & {
|
|
112
|
+
url?: string;
|
|
113
|
+
}, element: string) => void;
|
|
114
|
+
//# sourceMappingURL=extractionFunctions.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"extractionFunctions.d.mts","sourceRoot":"","sources":["../../../../../src/lib/vendor/cli-owm/parser/extractionFunctions.mts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
import merge from 'lodash.merge';
|
|
2
|
+
import * as Defaults from './defaults.mjs';
|
|
3
|
+
export const setName = (baseElement, element, config) => {
|
|
4
|
+
const name = element.split(`${config.keyword} `)[1].trim().split(' [')[0].trim();
|
|
5
|
+
Object.assign(baseElement, { name });
|
|
6
|
+
};
|
|
7
|
+
export const setRef = (baseElement, element) => {
|
|
8
|
+
if (element.indexOf('url(') !== -1) {
|
|
9
|
+
const extractedRef = element.split('url(')[1].split(')')[0].trim();
|
|
10
|
+
Object.assign(baseElement, { url: extractedRef });
|
|
11
|
+
}
|
|
12
|
+
};
|
|
13
|
+
export const setTextFromEnding = (baseElement, element) => {
|
|
14
|
+
let text = '';
|
|
15
|
+
if (element.trim().indexOf(']') > -1 && element.trim().indexOf(']') !== element.trim().length - 1) {
|
|
16
|
+
if (element.replace(/\s/g, '').indexOf(']]') === -1) {
|
|
17
|
+
text = element.split(']')[1].trim();
|
|
18
|
+
}
|
|
19
|
+
if (element.replace(/\s/g, '').indexOf(']]') > -1) {
|
|
20
|
+
const pos = element.lastIndexOf(']');
|
|
21
|
+
text = element.substr(pos + 1, element.length - 1).trim();
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
Object.assign(baseElement, { text });
|
|
25
|
+
};
|
|
26
|
+
export const setOccurances = (baseElement, element) => {
|
|
27
|
+
const defaultPosition = {
|
|
28
|
+
visibility: 0.9,
|
|
29
|
+
maturity: 0.1,
|
|
30
|
+
};
|
|
31
|
+
const positionData = [];
|
|
32
|
+
if (element.replace(/\s/g, '').indexOf('[[') > -1) {
|
|
33
|
+
const justOccurances = '[' + element.replace(/\s/g, '').split('[[')[1].split(']]')[0] + ']';
|
|
34
|
+
const occurancesAsArray = justOccurances.replace(/\],\[/g, ']|[').split('|');
|
|
35
|
+
occurancesAsArray.forEach(e => {
|
|
36
|
+
positionData.push(extractLocation(e, defaultPosition));
|
|
37
|
+
});
|
|
38
|
+
}
|
|
39
|
+
else if (element.indexOf('[') > -1 && element.indexOf(']') > -1) {
|
|
40
|
+
positionData.push(extractLocation(element, defaultPosition));
|
|
41
|
+
}
|
|
42
|
+
Object.assign(baseElement, { occurances: positionData });
|
|
43
|
+
};
|
|
44
|
+
export const setPipelineMaturity = (baseElement, element) => {
|
|
45
|
+
let pipelineHidden = true;
|
|
46
|
+
const pieplinePos = { maturity1: 0.2, maturity2: 0.8 };
|
|
47
|
+
const findPos = element.split('[');
|
|
48
|
+
if (element.indexOf('[') > -1 && element.indexOf(']') > -1 && findPos.length > 1 && findPos[1].indexOf(']') > -1) {
|
|
49
|
+
const extractedPos = findPos[1].split(']')[0].split(',');
|
|
50
|
+
pieplinePos.maturity1 = parseFloat(extractedPos[0].trim());
|
|
51
|
+
pieplinePos.maturity2 = parseFloat(extractedPos[1].trim());
|
|
52
|
+
pipelineHidden = false;
|
|
53
|
+
}
|
|
54
|
+
Object.assign(baseElement, {
|
|
55
|
+
hidden: pipelineHidden,
|
|
56
|
+
maturity2: pieplinePos.maturity2,
|
|
57
|
+
maturity1: pieplinePos.maturity1,
|
|
58
|
+
});
|
|
59
|
+
};
|
|
60
|
+
export const setPipelineComponentMaturity = (baseElement, element) => {
|
|
61
|
+
const pieplinePos = { maturity: 0.2 };
|
|
62
|
+
const findPos = element.split('[');
|
|
63
|
+
if (element.indexOf('[') > -1 && element.indexOf(']') > -1 && findPos.length > 1 && findPos[1].indexOf(']') > -1) {
|
|
64
|
+
const extractedPos = findPos[1].split(']')[0];
|
|
65
|
+
pieplinePos.maturity = parseFloat(extractedPos.trim());
|
|
66
|
+
}
|
|
67
|
+
Object.assign(baseElement, { maturity: pieplinePos.maturity });
|
|
68
|
+
};
|
|
69
|
+
export const extractLocation = (input, defaultValue) => {
|
|
70
|
+
if (input.indexOf('[') > -1 && input.indexOf(']') > -1) {
|
|
71
|
+
const loc = input.split('[')[1].trim().split(']')[0].replace(/\s/g, '').split(',');
|
|
72
|
+
return {
|
|
73
|
+
visibility: isNaN(parseFloat(loc[0])) ? defaultValue.visibility : parseFloat(loc[0]),
|
|
74
|
+
maturity: isNaN(parseFloat(loc[1])) ? defaultValue.maturity : parseFloat(loc[1]),
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
else
|
|
78
|
+
return defaultValue;
|
|
79
|
+
};
|
|
80
|
+
export const extractSize = (input, defaultValue) => {
|
|
81
|
+
if (input.indexOf('[') > -1 && input.indexOf(']') > -1) {
|
|
82
|
+
const loc = input.split('[')[1].trim().split(']')[0].replace(/\s/g, '').split(',');
|
|
83
|
+
return {
|
|
84
|
+
width: isNaN(parseFloat(loc[0])) ? defaultValue.width : parseFloat(loc[0]),
|
|
85
|
+
height: isNaN(parseFloat(loc[1])) ? defaultValue.height : parseFloat(loc[1]),
|
|
86
|
+
};
|
|
87
|
+
}
|
|
88
|
+
else
|
|
89
|
+
return defaultValue;
|
|
90
|
+
};
|
|
91
|
+
export const extractManyLocations = (input, defaultValue) => {
|
|
92
|
+
if (input.indexOf('[') > -1 && input.indexOf(']') > -1) {
|
|
93
|
+
const loc = input.split('[')[1].trim().split(']')[0].replace(/\s/g, '').split(',');
|
|
94
|
+
return {
|
|
95
|
+
visibility: isNaN(parseFloat(loc[0])) ? defaultValue.visibility : parseFloat(loc[0]),
|
|
96
|
+
maturity: isNaN(parseFloat(loc[1])) ? defaultValue.maturity : parseFloat(loc[1]),
|
|
97
|
+
visibility2: isNaN(parseFloat(loc[2])) ? defaultValue.visibility2 : parseFloat(loc[2]),
|
|
98
|
+
maturity2: isNaN(parseFloat(loc[3])) ? defaultValue.maturity2 : parseFloat(loc[3]),
|
|
99
|
+
};
|
|
100
|
+
}
|
|
101
|
+
else
|
|
102
|
+
return defaultValue;
|
|
103
|
+
};
|
|
104
|
+
export const setMethod = (baseElement, element, config) => {
|
|
105
|
+
const name = element.split(`${config.keyword} `)[1].trim();
|
|
106
|
+
Object.assign(baseElement, {
|
|
107
|
+
name,
|
|
108
|
+
buy: false,
|
|
109
|
+
build: false,
|
|
110
|
+
outsource: false,
|
|
111
|
+
market: false,
|
|
112
|
+
ecosystem: false,
|
|
113
|
+
[config.keyword]: true,
|
|
114
|
+
});
|
|
115
|
+
};
|
|
116
|
+
export const setAttitude = (baseElement, _element, config) => {
|
|
117
|
+
Object.assign(baseElement, { attitude: config.keyword });
|
|
118
|
+
};
|
|
119
|
+
export const setHeightWidth = (baseElement, element) => {
|
|
120
|
+
if (!element.includes(']')) {
|
|
121
|
+
return;
|
|
122
|
+
}
|
|
123
|
+
const [width, height] = element.split(']')[1].trim().split(' ');
|
|
124
|
+
Object.assign(baseElement, { width, height });
|
|
125
|
+
};
|
|
126
|
+
export const setNameWithMaturity = (baseElement, element) => {
|
|
127
|
+
let name = element.split('evolve ')[1].trim();
|
|
128
|
+
let override = '';
|
|
129
|
+
const evolveMaturity = element.match(/\s[0-9]?\.[0-9]+[0-9]?/);
|
|
130
|
+
let newPoint = 0.85;
|
|
131
|
+
if (evolveMaturity && evolveMaturity.length > 0) {
|
|
132
|
+
newPoint = parseFloat(evolveMaturity[0]);
|
|
133
|
+
const unprocessedName = name.split(String(newPoint))[0].trim();
|
|
134
|
+
name = unprocessedName;
|
|
135
|
+
if (name.indexOf('->') > -1) {
|
|
136
|
+
override = unprocessedName.split('->')[1].trim();
|
|
137
|
+
name = unprocessedName.split('->')[0].trim();
|
|
138
|
+
}
|
|
139
|
+
}
|
|
140
|
+
Object.assign(baseElement, { name, override, maturity: newPoint });
|
|
141
|
+
};
|
|
142
|
+
export const setCoords = (baseElement, element) => {
|
|
143
|
+
const positionData = extractLocation(element, {
|
|
144
|
+
visibility: 0.9,
|
|
145
|
+
maturity: 0.1,
|
|
146
|
+
});
|
|
147
|
+
Object.assign(baseElement, {
|
|
148
|
+
maturity: positionData.maturity,
|
|
149
|
+
visibility: positionData.visibility,
|
|
150
|
+
});
|
|
151
|
+
};
|
|
152
|
+
export const isDeAccelerator = (baseElement, element) => {
|
|
153
|
+
Object.assign(baseElement, {
|
|
154
|
+
deaccelerator: element.indexOf('deaccelerator') === 0,
|
|
155
|
+
});
|
|
156
|
+
};
|
|
157
|
+
export const setManyCoords = (baseElement, element) => {
|
|
158
|
+
const positionData = extractManyLocations(element, {
|
|
159
|
+
visibility: 0.9,
|
|
160
|
+
maturity: 0.1,
|
|
161
|
+
visibility2: 0.8,
|
|
162
|
+
maturity2: 0.2,
|
|
163
|
+
});
|
|
164
|
+
Object.assign(baseElement, {
|
|
165
|
+
maturity: positionData.maturity,
|
|
166
|
+
visibility: positionData.visibility,
|
|
167
|
+
maturity2: positionData.maturity2,
|
|
168
|
+
visibility2: positionData.visibility2,
|
|
169
|
+
});
|
|
170
|
+
};
|
|
171
|
+
export const decorators = (baseElement, element) => {
|
|
172
|
+
const defaultDecorators = {
|
|
173
|
+
ecosystem: false,
|
|
174
|
+
market: false,
|
|
175
|
+
buy: false,
|
|
176
|
+
build: false,
|
|
177
|
+
outsource: false,
|
|
178
|
+
};
|
|
179
|
+
if (!baseElement.decorators) {
|
|
180
|
+
baseElement.decorators = { ...defaultDecorators };
|
|
181
|
+
}
|
|
182
|
+
else {
|
|
183
|
+
baseElement.decorators = { ...defaultDecorators, ...baseElement.decorators };
|
|
184
|
+
}
|
|
185
|
+
[methodDecorator, marketDecorator, ecosystemDecorator].forEach(d => merge(baseElement, d(baseElement, element)));
|
|
186
|
+
return baseElement;
|
|
187
|
+
};
|
|
188
|
+
export const setLabel = (baseElement, element) => {
|
|
189
|
+
let labelOffset = { ...Defaults.defaultLabelOffset };
|
|
190
|
+
if (baseElement.increaseLabelSpacing) {
|
|
191
|
+
labelOffset = {
|
|
192
|
+
x: labelOffset.x * baseElement.increaseLabelSpacing,
|
|
193
|
+
y: labelOffset.y * baseElement.increaseLabelSpacing,
|
|
194
|
+
};
|
|
195
|
+
}
|
|
196
|
+
if (element.indexOf('label ') > -1) {
|
|
197
|
+
const findPos = element.split('label [');
|
|
198
|
+
if (findPos.length > 0 && findPos[1].indexOf(']') > -1) {
|
|
199
|
+
const extractedPos = findPos[1].split(']')[0].split(',');
|
|
200
|
+
labelOffset.x = parseFloat(extractedPos[0].trim());
|
|
201
|
+
labelOffset.y = parseFloat(extractedPos[1].trim());
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
Object.assign(baseElement, { label: labelOffset });
|
|
205
|
+
};
|
|
206
|
+
export const setEvolve = (baseElement, element) => {
|
|
207
|
+
let newPoint = null;
|
|
208
|
+
if (element.indexOf('evolve ') > -1) {
|
|
209
|
+
newPoint = element.split('evolve ')[1].trim();
|
|
210
|
+
newPoint = newPoint.replace('inertia', '').trim();
|
|
211
|
+
}
|
|
212
|
+
Object.assign(baseElement, {
|
|
213
|
+
evolveMaturity: newPoint,
|
|
214
|
+
evolving: newPoint !== null && newPoint !== undefined,
|
|
215
|
+
});
|
|
216
|
+
};
|
|
217
|
+
export const setInertia = (baseElement, element) => {
|
|
218
|
+
Object.assign(baseElement, {
|
|
219
|
+
inertia: element.indexOf('inertia') !== -1 || element.indexOf('(inertia)') !== -1,
|
|
220
|
+
});
|
|
221
|
+
};
|
|
222
|
+
export const setText = (baseElement, element, config) => {
|
|
223
|
+
const start = element.indexOf(config.keyword);
|
|
224
|
+
const text = element
|
|
225
|
+
.substr(`${config.keyword} `.length + start, element.length - `${config.keyword} `.length + start)
|
|
226
|
+
.trim()
|
|
227
|
+
.split(' [')[0]
|
|
228
|
+
.trim();
|
|
229
|
+
Object.assign(baseElement, { text });
|
|
230
|
+
};
|
|
231
|
+
export const setContext = (baseElement, element, config) => {
|
|
232
|
+
const start = element.indexOf(config.keyword);
|
|
233
|
+
const text = element
|
|
234
|
+
.substr(`${config.keyword} `.length + start, element.length - `${config.keyword} `.length + start)
|
|
235
|
+
.trim()
|
|
236
|
+
.split(';')[1]
|
|
237
|
+
.trim();
|
|
238
|
+
Object.assign(baseElement, { context: text });
|
|
239
|
+
};
|
|
240
|
+
export const setNumber = (baseElement, element, config) => {
|
|
241
|
+
const number = element.split(`${config.keyword} `)[1].trim().split(' [')[0].trim();
|
|
242
|
+
Object.assign(baseElement, { number: parseInt(number) });
|
|
243
|
+
};
|
|
244
|
+
export const setUrl = (baseElement, element) => {
|
|
245
|
+
const path = element.split('[')[1].trim().split(']')[0].trim();
|
|
246
|
+
Object.assign(baseElement, { url: path });
|
|
247
|
+
};
|
|
248
|
+
const methodDecorator = (_baseElement, element) => {
|
|
249
|
+
const meths = ['build', 'buy', 'outsource'];
|
|
250
|
+
const decs = {};
|
|
251
|
+
let parentAttributes = {};
|
|
252
|
+
for (let i = 0; i < meths.length; i++) {
|
|
253
|
+
const meth = meths[i];
|
|
254
|
+
if (element.indexOf(meth) > -1 && element.indexOf('(') < element.indexOf(meth) && element.indexOf(')') > element.indexOf(meth)) {
|
|
255
|
+
decs[meth] = true;
|
|
256
|
+
parentAttributes = { increaseLabelSpacing: 2 };
|
|
257
|
+
break;
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
return { decorators: decs, ...parentAttributes };
|
|
261
|
+
};
|
|
262
|
+
const marketDecorator = (_baseElement, element) => {
|
|
263
|
+
const decs = {};
|
|
264
|
+
let parentAttributes = {};
|
|
265
|
+
if ((element.indexOf('market') > -1 &&
|
|
266
|
+
element.indexOf('(') < element.indexOf('market') &&
|
|
267
|
+
element.indexOf(')') > element.indexOf('market')) ||
|
|
268
|
+
element.indexOf('market') === 0) {
|
|
269
|
+
decs.market = true;
|
|
270
|
+
parentAttributes = { increaseLabelSpacing: 2 };
|
|
271
|
+
}
|
|
272
|
+
return { decorators: decs, ...parentAttributes };
|
|
273
|
+
};
|
|
274
|
+
const ecosystemDecorator = (_baseElement, element) => {
|
|
275
|
+
const decs = {};
|
|
276
|
+
let parentAttributes = {};
|
|
277
|
+
if ((element.indexOf('ecosystem') > -1 &&
|
|
278
|
+
element.indexOf('(') < element.indexOf('ecosystem') &&
|
|
279
|
+
element.indexOf(')') > element.indexOf('ecosystem')) ||
|
|
280
|
+
element.indexOf('ecosystem') === 0) {
|
|
281
|
+
decs.ecosystem = true;
|
|
282
|
+
parentAttributes = { increaseLabelSpacing: 3 };
|
|
283
|
+
}
|
|
284
|
+
return { decorators: decs, ...parentAttributes };
|
|
285
|
+
};
|
|
286
|
+
//# sourceMappingURL=extractionFunctions.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"extractionFunctions.mjs","sourceRoot":"","sources":["../../../../../src/lib/vendor/cli-owm/parser/extractionFunctions.mts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { IParseStrategy } from '../types/base.mjs';
|
|
2
|
+
import BaseStrategyRunner from '../BaseStrategyRunner.mjs';
|
|
3
|
+
export default class AcceleratorExtractionStrategy implements IParseStrategy {
|
|
4
|
+
data: string;
|
|
5
|
+
containerName: string;
|
|
6
|
+
baseStrategies: BaseStrategyRunner[];
|
|
7
|
+
constructor(data: string);
|
|
8
|
+
apply(): {
|
|
9
|
+
[x: string]: any[];
|
|
10
|
+
errors: never[];
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
//# sourceMappingURL=AcceleratorExtractionStrategy.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AcceleratorExtractionStrategy.d.mts","sourceRoot":"","sources":["../../../../../../src/lib/vendor/cli-owm/parser/strategies/AcceleratorExtractionStrategy.mts"],"names":[],"mappings":"AACA,OAAO,EAAC,cAAc,EAAC,MAAM,mBAAmB,CAAC;AACjD,OAAO,kBAAkB,MAAM,2BAA2B,CAAC;AAE3D,MAAM,CAAC,OAAO,OAAO,6BAA8B,YAAW,cAAc;IACxE,IAAI,EAAE,MAAM,CAAC;IACb,aAAa,EAAE,MAAM,CAAC;IACtB,cAAc,EAAE,kBAAkB,EAAE,CAAC;gBACzB,IAAI,EAAE,MAAM;IAmBxB,KAAK;;;;CAOR"}
|