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,549 @@
|
|
|
1
|
+
// Pipeline-enriched evaluation mode for estimateEvolution
|
|
2
|
+
//
|
|
3
|
+
// When pipeline: true is passed, orchestrates 3 evaluations:
|
|
4
|
+
// 1. Capability pivot — the abstract capability is evaluated first as central anchor
|
|
5
|
+
// 2. State-of-the-art solution — a modern/SotA implementation of that capability
|
|
6
|
+
// 3. Legacy solution — an older/legacy implementation
|
|
7
|
+
//
|
|
8
|
+
// Produces a complete OWM (onlinewardleymaps.com) output with pipeline syntax
|
|
9
|
+
// containing component, pipeline, and label declarations.
|
|
10
|
+
//
|
|
11
|
+
// The capability is always the pivot: it is evaluated first, and its evolution
|
|
12
|
+
// score anchors the pipeline range.
|
|
13
|
+
import { logDebug, logInfo } from '../../../lib/mcp-notifications.mjs';
|
|
14
|
+
import { dispatchSolutionStrategies } from '../routing/solution-dispatch.mjs';
|
|
15
|
+
import { toErrorMessage } from '../../../lib/errors.mjs';
|
|
16
|
+
import { parseKeyValueBlock } from '../../../lib/prompts/parsers.mjs';
|
|
17
|
+
import { getPrompt } from '../../../lib/prompts/registry.mjs';
|
|
18
|
+
const TOOL = 'estimateEvolution:pipeline';
|
|
19
|
+
// ─── Step 1: Capability Evaluation ─────────────────────────────────────────
|
|
20
|
+
/**
|
|
21
|
+
* @typedef {Object} CapabilityPivotResult
|
|
22
|
+
* @property {string} capabilityName - The abstract capability name (e.g. "Manage customer relationships")
|
|
23
|
+
* @property {string} nature - Capability nature (activity/practice/data/knowledge)
|
|
24
|
+
* @property {number} evolution - Evolution score [0, 1]
|
|
25
|
+
* @property {number} confidence - Confidence in the evolution score [0, 1]
|
|
26
|
+
* @property {string} method - Strategy method that produced the score
|
|
27
|
+
* @property {Object} evaluations - Full evaluation results from all strategies
|
|
28
|
+
* @property {Object} wardleyType - Wardley component type metadata
|
|
29
|
+
* @property {Object} routing - Routing metadata from the evaluation
|
|
30
|
+
*/
|
|
31
|
+
/**
|
|
32
|
+
* Evaluate the capability pivot — the first step of the enriched pipeline.
|
|
33
|
+
*
|
|
34
|
+
* Given the standard estimateEvolution result (which already ran capability
|
|
35
|
+
* strategies), this function extracts the capability evolution score and
|
|
36
|
+
* wraps it in a structured CapabilityPivotResult.
|
|
37
|
+
*
|
|
38
|
+
* If the input was originally a solution (e.g. "Kubernetes"), the capability
|
|
39
|
+
* was already identified via identifyCapability (e.g. "Orchestrate containers").
|
|
40
|
+
* In that case, this function re-evaluates the capability directly as a
|
|
41
|
+
* generic capability through the capability strategies.
|
|
42
|
+
*
|
|
43
|
+
* If the input was already a capability (e.g. "container orchestration"),
|
|
44
|
+
* the standard evaluation results are used directly — no re-evaluation needed.
|
|
45
|
+
*
|
|
46
|
+
* @param {Object} standardResult - The standard estimateEvolution oneshot result
|
|
47
|
+
* @param {Object} component - The original component input with identified capability
|
|
48
|
+
* @param {Object} options
|
|
49
|
+
* @param {Function} options.evaluateCapabilityFn - Function to evaluate a capability (accepts {name, description, strategy})
|
|
50
|
+
* @returns {Promise<CapabilityPivotResult>}
|
|
51
|
+
*/
|
|
52
|
+
export async function evaluateCapabilityPivot(standardResult, component, options = {}) {
|
|
53
|
+
const { evaluateCapabilityFn } = options;
|
|
54
|
+
// Read the canonical input-side discriminant. `component.kind` is set by
|
|
55
|
+
// estimate-evolution after routing is resolved; the result-side flag
|
|
56
|
+
// `standardResult.routing.usedSolutionStrategies` is still written for the
|
|
57
|
+
// MCP contract but no longer the internal source of truth.
|
|
58
|
+
const isSolution = component.kind === 'solution';
|
|
59
|
+
const capabilityName = component.capability || component.name;
|
|
60
|
+
const nature = component.nature || 'activity';
|
|
61
|
+
logDebug(TOOL, `Capability pivot: name="${capabilityName}", nature="${nature}", isSolution=${isSolution}`);
|
|
62
|
+
let capabilityEvaluations;
|
|
63
|
+
let capabilityRouting;
|
|
64
|
+
let capabilityWardleyType;
|
|
65
|
+
if (isSolution && evaluateCapabilityFn && component.capability) {
|
|
66
|
+
// The input was a solution — we need to evaluate the underlying capability separately
|
|
67
|
+
logDebug(TOOL, `Re-evaluating capability "${capabilityName}" independently (input was solution "${component.name}")`);
|
|
68
|
+
const capResult = await evaluateCapabilityFn({
|
|
69
|
+
name: capabilityName,
|
|
70
|
+
description: component.description,
|
|
71
|
+
context: component.context,
|
|
72
|
+
strategy: 'all',
|
|
73
|
+
space: 'economic',
|
|
74
|
+
});
|
|
75
|
+
capabilityEvaluations = capResult.evaluations || {};
|
|
76
|
+
capabilityRouting = capResult.routing || {};
|
|
77
|
+
capabilityWardleyType = capResult.wardleyType || {};
|
|
78
|
+
}
|
|
79
|
+
else {
|
|
80
|
+
// The input was already a capability — use the standard result's capability evaluations
|
|
81
|
+
logDebug(TOOL, `Using standard evaluation for capability "${capabilityName}" (input was already a capability)`);
|
|
82
|
+
capabilityEvaluations = standardResult.evaluations || {};
|
|
83
|
+
capabilityRouting = standardResult.routing || {};
|
|
84
|
+
capabilityWardleyType = standardResult.wardleyType || {};
|
|
85
|
+
}
|
|
86
|
+
// Extract the best evolution score from capability evaluations
|
|
87
|
+
const { evolution, confidence, method } = extractBestEvolution(capabilityEvaluations);
|
|
88
|
+
logDebug(TOOL, `Capability pivot result: evolution=${evolution}, confidence=${confidence}, method="${method}"`);
|
|
89
|
+
return {
|
|
90
|
+
capabilityName,
|
|
91
|
+
nature,
|
|
92
|
+
evolution,
|
|
93
|
+
confidence,
|
|
94
|
+
method,
|
|
95
|
+
evaluations: capabilityEvaluations,
|
|
96
|
+
wardleyType: capabilityWardleyType,
|
|
97
|
+
routing: capabilityRouting,
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
// ─── Helpers ───────────────────────────────────────────────────────────────
|
|
101
|
+
/**
|
|
102
|
+
* Extract the best (highest confidence) evolution score from a set of evaluations.
|
|
103
|
+
*
|
|
104
|
+
* @param {Object<string, { evolution?: number, confidence?: number, error?: string }>} evaluations
|
|
105
|
+
* @returns {{ evolution: number, confidence: number, method: string }}
|
|
106
|
+
*/
|
|
107
|
+
// any: evaluations is a Record<string, EvolutionResult|{error}> map
|
|
108
|
+
function extractBestEvolution(evaluations) {
|
|
109
|
+
let bestEvolution = 0.5;
|
|
110
|
+
let bestConfidence = 0;
|
|
111
|
+
let bestMethod = 'unknown';
|
|
112
|
+
for (const [method, result] of Object.entries(evaluations)) {
|
|
113
|
+
if (result.error || result.evolution == null)
|
|
114
|
+
continue;
|
|
115
|
+
if (result.confidence > bestConfidence) {
|
|
116
|
+
bestEvolution = result.evolution;
|
|
117
|
+
bestConfidence = result.confidence;
|
|
118
|
+
bestMethod = method;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
return { evolution: bestEvolution, confidence: bestConfidence, method: bestMethod };
|
|
122
|
+
}
|
|
123
|
+
// ─── Capability Bounding ─────────────────────────────────────────────────
|
|
124
|
+
/**
|
|
125
|
+
* Clamp the capability evolution between the SotA (upper bound) and legacy
|
|
126
|
+
* (lower bound) solution evolutions.
|
|
127
|
+
*
|
|
128
|
+
* In Wardley Mapping, the abstract capability should sit between its most
|
|
129
|
+
* evolved implementation (SotA) and its least evolved one (legacy).
|
|
130
|
+
* If only one bound is available, only that bound is enforced.
|
|
131
|
+
* If neither bound is available, the evolution is returned unchanged.
|
|
132
|
+
*
|
|
133
|
+
* @param {number} capabilityEvolution - The raw capability evolution score
|
|
134
|
+
* @param {number|null} sotaEvolution - SotA solution evolution (upper bound), or null
|
|
135
|
+
* @param {number|null} legacyEvolution - Legacy solution evolution (lower bound), or null
|
|
136
|
+
* @returns {{ evolution: number, clamped: boolean, originalEvolution: number }}
|
|
137
|
+
*/
|
|
138
|
+
export function clampCapabilityEvolution(capabilityEvolution, sotaEvolution, legacyEvolution) {
|
|
139
|
+
const original = capabilityEvolution;
|
|
140
|
+
let clamped = false;
|
|
141
|
+
let evolution = capabilityEvolution;
|
|
142
|
+
// Determine effective bounds (only apply when values are valid numbers)
|
|
143
|
+
const hasUpper = sotaEvolution != null && Number.isFinite(sotaEvolution);
|
|
144
|
+
const hasLower = legacyEvolution != null && Number.isFinite(legacyEvolution);
|
|
145
|
+
if (hasLower && evolution < legacyEvolution) {
|
|
146
|
+
evolution = legacyEvolution;
|
|
147
|
+
clamped = true;
|
|
148
|
+
}
|
|
149
|
+
if (hasUpper && evolution > sotaEvolution) {
|
|
150
|
+
evolution = sotaEvolution;
|
|
151
|
+
clamped = true;
|
|
152
|
+
}
|
|
153
|
+
// Final [0, 1] safety clamp
|
|
154
|
+
evolution = Math.max(0, Math.min(1, evolution));
|
|
155
|
+
return {
|
|
156
|
+
evolution: Math.round(evolution * 1000) / 1000,
|
|
157
|
+
clamped,
|
|
158
|
+
originalEvolution: original,
|
|
159
|
+
};
|
|
160
|
+
}
|
|
161
|
+
// ─── OWM Syntax Generation ────────────────────────────────────────────────
|
|
162
|
+
/**
|
|
163
|
+
* Default visibility (y-axis) for the pipeline component in OWM maps.
|
|
164
|
+
* Follows the convention from CPC strategy: 0.51 places the component
|
|
165
|
+
* in the middle of the value chain.
|
|
166
|
+
*/
|
|
167
|
+
const DEFAULT_VISIBILITY = 0.51;
|
|
168
|
+
/**
|
|
169
|
+
* Quote a component name for OWM syntax if it contains spaces.
|
|
170
|
+
* @param {string} name
|
|
171
|
+
* @returns {string} Quoted name if necessary
|
|
172
|
+
*/
|
|
173
|
+
function wmQuote(name) {
|
|
174
|
+
if (!name)
|
|
175
|
+
return '"Component"';
|
|
176
|
+
const clean = name.replace(/"/g, "'");
|
|
177
|
+
return clean.includes(' ') ? `"${clean}"` : clean;
|
|
178
|
+
}
|
|
179
|
+
/**
|
|
180
|
+
* Round a number to 2 decimal places for OWM coordinates.
|
|
181
|
+
* @param {number} n
|
|
182
|
+
* @returns {number}
|
|
183
|
+
*/
|
|
184
|
+
function round2(n) {
|
|
185
|
+
return Math.round(n * 100) / 100;
|
|
186
|
+
}
|
|
187
|
+
/**
|
|
188
|
+
* Generate valid onlinewardleymaps.com OWM syntax for a 3-component pipeline.
|
|
189
|
+
*
|
|
190
|
+
* The output format is:
|
|
191
|
+
*
|
|
192
|
+
* component "Capability Label" [visibility, pipeline_min] label [-53, -17]
|
|
193
|
+
* pipeline "Capability Label"
|
|
194
|
+
* {
|
|
195
|
+
* component "Legacy Solution" [evolution] label [-61, -23]
|
|
196
|
+
* component "Input Component" [evolution] label [-31, -3]
|
|
197
|
+
* component "SotA Solution" [evolution] label [-4, 30]
|
|
198
|
+
* }
|
|
199
|
+
*
|
|
200
|
+
* The capability is the outer pipeline container. Its evolution coordinate
|
|
201
|
+
* is the pipeline minimum (leftmost inner component evolution minus a small
|
|
202
|
+
* margin). The pipeline range spans from legacy (lowest) to SotA (highest).
|
|
203
|
+
*
|
|
204
|
+
* Inner components are ordered left-to-right by evolution (legacy → SotA).
|
|
205
|
+
*
|
|
206
|
+
* @param {Object} params
|
|
207
|
+
* @param {string} params.capabilityLabel - Display label for the capability pipeline
|
|
208
|
+
* @param {number} params.capabilityEvolution - Evolution score of the capability pivot
|
|
209
|
+
* @param {string} params.componentName - Original input component name
|
|
210
|
+
* @param {number} params.componentEvolution - Evolution of the input component (may equal SotA or legacy)
|
|
211
|
+
* @param {string} [params.sotaName] - Name of the state-of-the-art solution
|
|
212
|
+
* @param {number} [params.sotaEvolution] - Evolution of the SotA solution
|
|
213
|
+
* @param {string} [params.legacyName] - Name of the legacy solution
|
|
214
|
+
* @param {number} [params.legacyEvolution] - Evolution of the legacy solution
|
|
215
|
+
* @param {number} [params.visibility] - Y-axis visibility (default: 0.51)
|
|
216
|
+
* @param {string} [params.nature] - Component nature (activity/practice/data/knowledge) — metadata only
|
|
217
|
+
* @returns {string} Valid OWM syntax string
|
|
218
|
+
*/
|
|
219
|
+
// any: params bag for OWM syntax generation (component, anchor, label, evolution, ...)
|
|
220
|
+
export function generateOwmSyntax(params) {
|
|
221
|
+
const { capabilityLabel = 'Capability', capabilityEvolution = 0.5, componentName, componentEvolution, sotaName = null, sotaEvolution = null, legacyName = null, legacyEvolution = null, visibility = DEFAULT_VISIBILITY, nature = 'activity', } = params;
|
|
222
|
+
// ── Collect inner components ────────────────────────────────────────────
|
|
223
|
+
// Each inner component: { name, evolution }
|
|
224
|
+
// We always have at least the input component; SotA and legacy are optional.
|
|
225
|
+
const innerComponents = [];
|
|
226
|
+
if (legacyName != null && legacyEvolution != null) {
|
|
227
|
+
innerComponents.push({ name: legacyName, evolution: round2(legacyEvolution) });
|
|
228
|
+
}
|
|
229
|
+
// The input component itself (if distinct from SotA and legacy)
|
|
230
|
+
if (componentName != null && componentEvolution != null) {
|
|
231
|
+
innerComponents.push({ name: componentName, evolution: round2(componentEvolution) });
|
|
232
|
+
}
|
|
233
|
+
if (sotaName != null && sotaEvolution != null) {
|
|
234
|
+
innerComponents.push({ name: sotaName, evolution: round2(sotaEvolution) });
|
|
235
|
+
}
|
|
236
|
+
// Deduplicate by name (if input component is same as SotA or legacy, keep one)
|
|
237
|
+
const seen = new Set();
|
|
238
|
+
const deduped = [];
|
|
239
|
+
for (const ic of innerComponents) {
|
|
240
|
+
const key = ic.name.toLowerCase().trim();
|
|
241
|
+
if (!seen.has(key)) {
|
|
242
|
+
seen.add(key);
|
|
243
|
+
deduped.push(ic);
|
|
244
|
+
}
|
|
245
|
+
}
|
|
246
|
+
// Sort by evolution ascending (left → right on the map: legacy → SotA)
|
|
247
|
+
deduped.sort((a, b) => a.evolution - b.evolution);
|
|
248
|
+
// ── Compute pipeline range ──────────────────────────────────────────────
|
|
249
|
+
// Pipeline min = leftmost component evolution minus a small margin
|
|
250
|
+
// Pipeline max is implicit from the rightmost component
|
|
251
|
+
const evolutions = deduped.map(c => c.evolution);
|
|
252
|
+
const pipelineMin = round2(Math.max(0, Math.min(...evolutions) - 0.05));
|
|
253
|
+
// ── Build OWM lines ─────────────────────────────────────────────────────
|
|
254
|
+
const capLabel = wmQuote(capabilityLabel);
|
|
255
|
+
const vis = round2(visibility);
|
|
256
|
+
const lines = [];
|
|
257
|
+
// Nature as OWM comment (informative metadata)
|
|
258
|
+
lines.push(`// nature: ${nature}`);
|
|
259
|
+
// Outer pipeline component: [visibility, pipeline_min_evolution]
|
|
260
|
+
lines.push(`component ${capLabel} [${vis}, ${pipelineMin}] label [-53, -17]`);
|
|
261
|
+
lines.push(`pipeline ${capLabel}`);
|
|
262
|
+
lines.push(`{`);
|
|
263
|
+
// Inner components with staggered label offsets to avoid overlap
|
|
264
|
+
const labelOffsets = [
|
|
265
|
+
'[-61, -23]', // leftmost (legacy)
|
|
266
|
+
'[-31, -3]', // middle (input/capability)
|
|
267
|
+
'[-4, 30]', // rightmost (SotA)
|
|
268
|
+
];
|
|
269
|
+
for (let i = 0; i < deduped.length; i++) {
|
|
270
|
+
const ic = deduped[i];
|
|
271
|
+
const labelOffset = labelOffsets[Math.min(i, labelOffsets.length - 1)];
|
|
272
|
+
lines.push(` component ${wmQuote(ic.name)} [${ic.evolution}] label ${labelOffset}`);
|
|
273
|
+
}
|
|
274
|
+
lines.push(`}`);
|
|
275
|
+
return lines.join('\n');
|
|
276
|
+
}
|
|
277
|
+
// ─── Step 2: Solution Discovery ──────────────────────────────────────────
|
|
278
|
+
/**
|
|
279
|
+
* @typedef {Object} DiscoveredSolution
|
|
280
|
+
* @property {string} name - Solution name (e.g. "Kubernetes", "Docker Swarm")
|
|
281
|
+
* @property {string} description - Brief description of the solution
|
|
282
|
+
* @property {'sota'|'legacy'} role - Whether this is the SotA or legacy solution
|
|
283
|
+
*/
|
|
284
|
+
/**
|
|
285
|
+
* @typedef {Object} SolutionDiscoveryResult
|
|
286
|
+
* @property {DiscoveredSolution|null} sota - State-of-the-art / cutting-edge solution
|
|
287
|
+
* @property {DiscoveredSolution|null} legacy - Legacy / established / older solution
|
|
288
|
+
* @property {string} capabilityUsed - The capability name used for discovery
|
|
289
|
+
* @property {number} confidence - Confidence in the discovery (0–1)
|
|
290
|
+
*/
|
|
291
|
+
/**
|
|
292
|
+
* LLM prompt template for discovering representative solutions for a capability.
|
|
293
|
+
*
|
|
294
|
+
* Given a generic capability, the LLM identifies:
|
|
295
|
+
* - A state-of-the-art (SotA) solution: the most modern, cutting-edge implementation
|
|
296
|
+
* - A legacy solution: an older, well-established but less evolved implementation
|
|
297
|
+
*
|
|
298
|
+
* Both solutions must be NAMED (proper nouns with specific identity) — not generic
|
|
299
|
+
* descriptions. They should represent opposite ends of the evolution spectrum for
|
|
300
|
+
* the same underlying capability.
|
|
301
|
+
*/
|
|
302
|
+
// Prompt text lives in prompts/pipeline-enrichment.solution-discovery.md.
|
|
303
|
+
/**
|
|
304
|
+
* Parse the LLM response for solution discovery into a structured result.
|
|
305
|
+
*
|
|
306
|
+
* Expected format:
|
|
307
|
+
* sota_name=GitHub Actions
|
|
308
|
+
* sota_description=Modern cloud-native CI/CD platform integrated with GitHub
|
|
309
|
+
* legacy_name=Jenkins
|
|
310
|
+
* legacy_description=Established open-source automation server, widely used but complex to maintain
|
|
311
|
+
* confidence=0.88
|
|
312
|
+
* reasoning=GitHub Actions represents modern SotA while Jenkins is the canonical legacy CI/CD tool
|
|
313
|
+
*
|
|
314
|
+
* @param {string} text - Raw LLM response
|
|
315
|
+
* @param {string} capabilityName - Capability used for context in error messages
|
|
316
|
+
* @returns {SolutionDiscoveryResult}
|
|
317
|
+
*/
|
|
318
|
+
export function parseSolutionDiscoveryResponse(text, capabilityName) {
|
|
319
|
+
const raw = parseKeyValueBlock(text, [
|
|
320
|
+
'sota_name', 'sota_description', 'legacy_name', 'legacy_description', 'confidence', 'reasoning',
|
|
321
|
+
]);
|
|
322
|
+
const confidence = raw.confidence !== undefined
|
|
323
|
+
? Math.round(Math.max(0, Math.min(1, parseFloat(raw.confidence))) * 100) / 100
|
|
324
|
+
: 0.60;
|
|
325
|
+
// Build SotA solution (if found)
|
|
326
|
+
let sota = null;
|
|
327
|
+
if (raw.sota_name !== undefined) {
|
|
328
|
+
const name = raw.sota_name;
|
|
329
|
+
if (name && name.length > 0 && !/^(none|n\/a|unknown|not applicable)$/i.test(name)) {
|
|
330
|
+
sota = {
|
|
331
|
+
name,
|
|
332
|
+
description: raw.sota_description ?? `State-of-the-art solution for ${capabilityName}`,
|
|
333
|
+
role: 'sota',
|
|
334
|
+
};
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
// Build legacy solution (if found)
|
|
338
|
+
let legacy = null;
|
|
339
|
+
if (raw.legacy_name !== undefined) {
|
|
340
|
+
const name = raw.legacy_name;
|
|
341
|
+
if (name && name.length > 0 && !/^(none|n\/a|unknown|not applicable)$/i.test(name)) {
|
|
342
|
+
legacy = {
|
|
343
|
+
name,
|
|
344
|
+
description: raw.legacy_description ?? `Legacy solution for ${capabilityName}`,
|
|
345
|
+
role: 'legacy',
|
|
346
|
+
};
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
return {
|
|
350
|
+
sota,
|
|
351
|
+
legacy,
|
|
352
|
+
capabilityUsed: capabilityName,
|
|
353
|
+
confidence,
|
|
354
|
+
reasoning: raw.reasoning ?? null,
|
|
355
|
+
};
|
|
356
|
+
}
|
|
357
|
+
/**
|
|
358
|
+
* Discover two representative solutions (SotA + legacy) for a given capability
|
|
359
|
+
* using the Tier 2 LLM.
|
|
360
|
+
*
|
|
361
|
+
* This is Step 2 of the enriched pipeline: after the capability pivot is
|
|
362
|
+
* evaluated, we identify which named solutions sit at opposite ends of the
|
|
363
|
+
* evolution axis for that capability.
|
|
364
|
+
*
|
|
365
|
+
* The discovered solutions are NOT yet evaluated — they are returned as
|
|
366
|
+
* structured metadata for Step 3 (solution evaluation) to consume.
|
|
367
|
+
*
|
|
368
|
+
* @param {string} capabilityName - The generic capability name (e.g. "container orchestration")
|
|
369
|
+
* @param {Object} options
|
|
370
|
+
* @param {function(string): Promise<string>} options.llmCall - LLM call function
|
|
371
|
+
* @param {string} [options.description] - Additional context about the capability
|
|
372
|
+
* @param {string} [options.excludeName] - Original component name to exclude from results
|
|
373
|
+
* @returns {Promise<SolutionDiscoveryResult>}
|
|
374
|
+
*/
|
|
375
|
+
export async function discoverPipelineSolutions(capabilityName, options = {}) {
|
|
376
|
+
const { llmCall, description = '', excludeName = '' } = options;
|
|
377
|
+
if (!capabilityName || typeof capabilityName !== 'string') {
|
|
378
|
+
logDebug(TOOL, 'discoverPipelineSolutions: empty capability — returning null results');
|
|
379
|
+
return { sota: null, legacy: null, capabilityUsed: '', confidence: 0 };
|
|
380
|
+
}
|
|
381
|
+
if (typeof llmCall !== 'function') {
|
|
382
|
+
logDebug(TOOL, 'discoverPipelineSolutions: no llmCall — returning null results');
|
|
383
|
+
return { sota: null, legacy: null, capabilityUsed: capabilityName, confidence: 0 };
|
|
384
|
+
}
|
|
385
|
+
const trimmed = capabilityName.trim();
|
|
386
|
+
const contextLine = description
|
|
387
|
+
? `Context: ${description}`
|
|
388
|
+
: 'Context: (none provided)';
|
|
389
|
+
const excludeLine = excludeName
|
|
390
|
+
? `Original component (do NOT repeat): "${excludeName}"`
|
|
391
|
+
: '';
|
|
392
|
+
const p = getPrompt('pipeline-enrichment', 'solution-discovery');
|
|
393
|
+
const built = p.build({ capability: trimmed, context_line: contextLine, exclude_line: excludeLine });
|
|
394
|
+
logDebug(TOOL, `Discovering solutions for capability "${trimmed}"${excludeName ? ` (excluding "${excludeName}")` : ''}...`);
|
|
395
|
+
try {
|
|
396
|
+
const response = await llmCall(built.user, undefined, { systemPrompt: built.system });
|
|
397
|
+
const result = p.parse(response, trimmed);
|
|
398
|
+
logDebug(TOOL, `Solution discovery for "${trimmed}": ` +
|
|
399
|
+
`sota="${result.sota?.name ?? '(none)'}", legacy="${result.legacy?.name ?? '(none)'}", ` +
|
|
400
|
+
`confidence=${result.confidence}`);
|
|
401
|
+
return result;
|
|
402
|
+
}
|
|
403
|
+
catch (err) {
|
|
404
|
+
logDebug(TOOL, `Solution discovery failed for "${trimmed}": ${toErrorMessage(err)}`);
|
|
405
|
+
return { sota: null, legacy: null, capabilityUsed: trimmed, confidence: 0 };
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
// ─── Step 3: Solution Evaluation ────────────────────────────────────────
|
|
409
|
+
/**
|
|
410
|
+
* Evaluate a single discovered solution (SotA or legacy) via the solution strategies
|
|
411
|
+
* (12 Wardley properties). This reuses the same evaluation path as normal solution
|
|
412
|
+
* evaluations through dispatchSolutionStrategies().
|
|
413
|
+
*
|
|
414
|
+
* @param {DiscoveredSolution} solution - The discovered solution (name, description, role)
|
|
415
|
+
* @param {Object} options
|
|
416
|
+
* @param {Function} options.llmCall - LLM call function
|
|
417
|
+
* @returns {Promise<{ evolution: number|null, confidence: number, method: string, evaluations: Object }>}
|
|
418
|
+
*/
|
|
419
|
+
export async function evaluateDiscoveredSolution(solution, options = {}) {
|
|
420
|
+
const { llmCall } = options;
|
|
421
|
+
if (!solution || !solution.name) {
|
|
422
|
+
logDebug(TOOL, 'evaluateDiscoveredSolution: no solution provided');
|
|
423
|
+
return { evolution: null, confidence: 0, method: 'none', evaluations: {} };
|
|
424
|
+
}
|
|
425
|
+
if (typeof llmCall !== 'function') {
|
|
426
|
+
logDebug(TOOL, `evaluateDiscoveredSolution: no llmCall for "${solution.name}"`);
|
|
427
|
+
return { evolution: null, confidence: 0, method: 'none', evaluations: {} };
|
|
428
|
+
}
|
|
429
|
+
logDebug(TOOL, `Evaluating ${solution.role} solution "${solution.name}" via solution strategies...`);
|
|
430
|
+
// Build a component object compatible with dispatchSolutionStrategies
|
|
431
|
+
const solutionComponent = {
|
|
432
|
+
name: solution.name,
|
|
433
|
+
description: solution.description || '',
|
|
434
|
+
isSolution: true,
|
|
435
|
+
};
|
|
436
|
+
try {
|
|
437
|
+
const evaluations = await dispatchSolutionStrategies(solutionComponent, {
|
|
438
|
+
llmCall,
|
|
439
|
+
strategy: 'all',
|
|
440
|
+
mode: 'auto',
|
|
441
|
+
});
|
|
442
|
+
// Extract best evolution from the solution strategy evaluations
|
|
443
|
+
const { evolution, confidence, method } = extractBestEvolution(evaluations);
|
|
444
|
+
logDebug(TOOL, `${solution.role} solution "${solution.name}": evolution=${evolution}, confidence=${confidence}, method="${method}"`);
|
|
445
|
+
return { evolution, confidence, method, evaluations };
|
|
446
|
+
}
|
|
447
|
+
catch (err) {
|
|
448
|
+
logDebug(TOOL, `evaluateDiscoveredSolution failed for "${solution.name}": ${toErrorMessage(err)}`);
|
|
449
|
+
return { evolution: null, confidence: 0, method: 'error', evaluations: { error: toErrorMessage(err) } };
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
// ─── Full Pipeline Orchestration ──────────────────────────────────────────
|
|
453
|
+
/**
|
|
454
|
+
* Run the full enriched pipeline: capability pivot + SotA solution + legacy solution.
|
|
455
|
+
*
|
|
456
|
+
* Implements:
|
|
457
|
+
* - Step 1: Capability pivot evaluation (always first)
|
|
458
|
+
* - Step 2: Solution discovery — identifies SotA and legacy solutions via LLM
|
|
459
|
+
* - Step 3: Solution evaluation — evaluates SotA and legacy via 12 Wardley property strategies
|
|
460
|
+
*
|
|
461
|
+
* OWM syntax is generated when all 3 components are available, or partially
|
|
462
|
+
* when at least the capability pivot is evaluated.
|
|
463
|
+
*
|
|
464
|
+
* @param {Object} standardResult - The standard estimateEvolution result
|
|
465
|
+
* @param {Object} component - The original component with identified capability
|
|
466
|
+
* @param {Object} options
|
|
467
|
+
* @param {Function} options.evaluateCapabilityFn - Evaluator function for capability
|
|
468
|
+
* @param {Function} [options.llmCall] - LLM call function for solution discovery
|
|
469
|
+
* @returns {Promise<Object>} Pipeline result with capability pivot, OWM output, and discovered solutions
|
|
470
|
+
*/
|
|
471
|
+
export async function runEnrichedPipeline(standardResult, component, options = {}) {
|
|
472
|
+
logInfo(TOOL, `Starting enriched pipeline for "${component.name}"`);
|
|
473
|
+
// Step 1: Capability pivot — always first
|
|
474
|
+
const capabilityPivot = await evaluateCapabilityPivot(standardResult, component, options);
|
|
475
|
+
logInfo(TOOL, `Pipeline step 1 complete: capability="${capabilityPivot.capabilityName}", evolution=${capabilityPivot.evolution}`);
|
|
476
|
+
// Step 2: Solution discovery — identify SotA and legacy solutions for the capability
|
|
477
|
+
const discoveredSolutions = await discoverPipelineSolutions(capabilityPivot.capabilityName, {
|
|
478
|
+
llmCall: options.llmCall,
|
|
479
|
+
description: component.description,
|
|
480
|
+
context: component.context,
|
|
481
|
+
excludeName: component.name,
|
|
482
|
+
});
|
|
483
|
+
if (discoveredSolutions.sota || discoveredSolutions.legacy) {
|
|
484
|
+
logInfo(TOOL, `Pipeline step 2 complete: sota="${discoveredSolutions.sota?.name ?? '(none)'}", ` +
|
|
485
|
+
`legacy="${discoveredSolutions.legacy?.name ?? '(none)'}" (confidence=${discoveredSolutions.confidence})`);
|
|
486
|
+
}
|
|
487
|
+
else {
|
|
488
|
+
logInfo(TOOL, `Pipeline step 2: no solutions discovered for "${capabilityPivot.capabilityName}"`);
|
|
489
|
+
}
|
|
490
|
+
// Step 3: Solution evaluation — evaluate discovered solutions via solution strategies (12 properties)
|
|
491
|
+
// Both SotA and legacy go through the same evaluateDiscoveredSolution path,
|
|
492
|
+
// which dispatches to the solution strategies pipeline (12 Wardley properties).
|
|
493
|
+
// SotA evaluation
|
|
494
|
+
let sotaSolution = null;
|
|
495
|
+
if (discoveredSolutions.sota) {
|
|
496
|
+
const sotaEval = await evaluateDiscoveredSolution(discoveredSolutions.sota, { llmCall: options.llmCall });
|
|
497
|
+
sotaSolution = {
|
|
498
|
+
...discoveredSolutions.sota,
|
|
499
|
+
evolution: sotaEval.evolution,
|
|
500
|
+
confidence: sotaEval.confidence,
|
|
501
|
+
method: sotaEval.method,
|
|
502
|
+
evaluations: sotaEval.evaluations,
|
|
503
|
+
};
|
|
504
|
+
logInfo(TOOL, `Pipeline step 3 (sota): "${sotaSolution.name}" evolution=${sotaSolution.evolution}`);
|
|
505
|
+
}
|
|
506
|
+
// Legacy evaluation — evaluate via the same solution strategies pipeline as normal solutions
|
|
507
|
+
let legacySolution = null;
|
|
508
|
+
if (discoveredSolutions.legacy) {
|
|
509
|
+
const legacyEval = await evaluateDiscoveredSolution(discoveredSolutions.legacy, { llmCall: options.llmCall });
|
|
510
|
+
legacySolution = {
|
|
511
|
+
...discoveredSolutions.legacy,
|
|
512
|
+
evolution: legacyEval.evolution,
|
|
513
|
+
confidence: legacyEval.confidence,
|
|
514
|
+
method: legacyEval.method,
|
|
515
|
+
evaluations: legacyEval.evaluations,
|
|
516
|
+
};
|
|
517
|
+
logInfo(TOOL, `Pipeline step 3 (legacy): "${legacySolution.name}" evolution=${legacySolution.evolution}`);
|
|
518
|
+
}
|
|
519
|
+
// Generate OWM syntax with whatever components are available
|
|
520
|
+
const capabilityLabel = component.capabilityLabel || capabilityPivot.capabilityName || 'Capability';
|
|
521
|
+
const owm = generateOwmSyntax({
|
|
522
|
+
capabilityLabel,
|
|
523
|
+
capabilityEvolution: capabilityPivot.evolution,
|
|
524
|
+
componentName: component.name,
|
|
525
|
+
componentEvolution: standardResult?.evolution ?? capabilityPivot.evolution,
|
|
526
|
+
sotaName: sotaSolution?.name ?? null,
|
|
527
|
+
sotaEvolution: sotaSolution?.evolution ?? null,
|
|
528
|
+
legacyName: legacySolution?.name ?? null,
|
|
529
|
+
legacyEvolution: legacySolution?.evolution ?? null,
|
|
530
|
+
visibility: DEFAULT_VISIBILITY,
|
|
531
|
+
nature: capabilityPivot.nature || 'activity',
|
|
532
|
+
});
|
|
533
|
+
logInfo(TOOL, `OWM syntax generated (${owm.split('\n').length} lines)`);
|
|
534
|
+
// Build pipeline result
|
|
535
|
+
const pipelineResult = {
|
|
536
|
+
pipeline: true,
|
|
537
|
+
componentName: component.name,
|
|
538
|
+
capabilityPivot,
|
|
539
|
+
sotaSolution,
|
|
540
|
+
legacySolution,
|
|
541
|
+
discoveredSolutions,
|
|
542
|
+
owm,
|
|
543
|
+
owmOutput: owm, // canonical field name for the OWM syntax output
|
|
544
|
+
// Standard result preserved for backward compatibility
|
|
545
|
+
standardResult,
|
|
546
|
+
};
|
|
547
|
+
return pipelineResult;
|
|
548
|
+
}
|
|
549
|
+
//# sourceMappingURL=pipeline-enriched.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"pipeline-enriched.mjs","sourceRoot":"","sources":["../../../../src/work-on-evolution/write/pipeline/pipeline-enriched.mts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import type { ClassificationResult } from '../../../types/classification.mjs';
|
|
2
|
+
/**
|
|
3
|
+
* Classify a component into an economic space.
|
|
4
|
+
*
|
|
5
|
+
* @param {string} componentName - The component name (e.g. "Air")
|
|
6
|
+
* @param {string} context - Business / usage context
|
|
7
|
+
* @returns {ClassificationResult}
|
|
8
|
+
*/
|
|
9
|
+
export declare function classifyComponent(componentName: string, context?: string): ClassificationResult;
|
|
10
|
+
/**
|
|
11
|
+
* Build re-questioning prompts for non-economic components.
|
|
12
|
+
* Returns an array of follow-up questions to present to the user.
|
|
13
|
+
*
|
|
14
|
+
* @param {ClassificationResult} classification
|
|
15
|
+
* @param {string} componentName
|
|
16
|
+
* @returns {string[]}
|
|
17
|
+
*/
|
|
18
|
+
export declare function buildReQuestions(classification: ClassificationResult, componentName: string): string[];
|
|
19
|
+
//# sourceMappingURL=classification-gate.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"classification-gate.d.mts","sourceRoot":"","sources":["../../../../src/work-on-evolution/write/routing/classification-gate.mts"],"names":[],"mappings":"AAeA,OAAO,KAAK,EAAE,oBAAoB,EAAiB,MAAM,mCAAmC,CAAC;AA4E7F;;;;;;GAMG;AACH,wBAAgB,iBAAiB,CAAC,aAAa,EAAE,MAAM,EAAE,OAAO,GAAE,MAAW,GAAG,oBAAoB,CAqFnG;AAED;;;;;;;GAOG;AACH,wBAAgB,gBAAgB,CAAC,cAAc,EAAE,oBAAoB,EAAE,aAAa,EAAE,MAAM,GAAG,MAAM,EAAE,CAwBtG"}
|