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
package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/generate-chain.d.mts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import type { ChainMetadata, RawValueChain } from '#types/value-chain.mjs';
|
|
2
|
+
/**
|
|
3
|
+
* Parse the raw LLM response for Step 2. Dedupe components by lowercased
|
|
4
|
+
* trimmed name, drop orphan links with a warn, and throw on cycle.
|
|
5
|
+
*/
|
|
6
|
+
export declare function parseRawValueChainResponse(text: string): RawValueChain;
|
|
7
|
+
type LlmCall = any;
|
|
8
|
+
/**
|
|
9
|
+
* Invoke LLM #2 to generate the value chain. The returned `RawValueChain`
|
|
10
|
+
* always carries the metadata passed in — the LLM response's own metadata
|
|
11
|
+
* field, if any, is ignored (LLM #1 is the authoritative source).
|
|
12
|
+
*/
|
|
13
|
+
export declare function generateChain(metadata: ChainMetadata, llmCall: LlmCall, today?: Date): Promise<RawValueChain>;
|
|
14
|
+
export {};
|
|
15
|
+
//# sourceMappingURL=generate-chain.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generate-chain.d.mts","sourceRoot":"","sources":["../../../../../../../../../src/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/generate-chain.mts"],"names":[],"mappings":"AAUA,OAAO,KAAK,EACV,aAAa,EAEb,aAAa,EAEd,MAAM,wBAAwB,CAAC;AAyDhC;;;GAGG;AACH,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,MAAM,GAAG,aAAa,CAsDtE;AAGD,KAAK,OAAO,GAAG,GAAG,CAAC;AAEnB;;;;GAIG;AACH,wBAAsB,aAAa,CACjC,QAAQ,EAAE,aAAa,EACvB,OAAO,EAAE,OAAO,EAChB,KAAK,GAAE,IAAiB,GACvB,OAAO,CAAC,aAAa,CAAC,CAiBxB"}
|
package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/generate-chain.mjs
ADDED
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
// Step 2 of the write:chain:* pipeline — LLM #2.
|
|
2
|
+
//
|
|
3
|
+
// Given the metadata produced by Step 1, asks the LLM to generate the full
|
|
4
|
+
// value chain (anchor + needs + capabilities + dependency links + phase
|
|
5
|
+
// seeds). The parser validates the JSON shape with Zod, dedupes components,
|
|
6
|
+
// drops orphan links, and rejects cyclic graphs.
|
|
7
|
+
import { getPrompt } from '#lib/prompts/registry.mjs';
|
|
8
|
+
import { tryDegradeAmbient, getCurrentCollector } from '#lib/degradation/index.mjs';
|
|
9
|
+
import { RawValueChainSchema } from '#schemas/value-chain.schema.mjs';
|
|
10
|
+
/** Extract the JSON payload from a raw LLM response, tolerating stray prose
|
|
11
|
+
* around it by locating the first `{` and last `}`. */
|
|
12
|
+
function extractJsonPayload(text) {
|
|
13
|
+
const start = text.indexOf('{');
|
|
14
|
+
const end = text.lastIndexOf('}');
|
|
15
|
+
if (start === -1 || end === -1 || end <= start) {
|
|
16
|
+
throw new Error(`generateChain: no JSON object found in LLM response: ${text.slice(0, 200)}`);
|
|
17
|
+
}
|
|
18
|
+
return text.slice(start, end + 1);
|
|
19
|
+
}
|
|
20
|
+
/** DFS-based cycle detection over the directed graph formed by `links`. */
|
|
21
|
+
function hasCycle(names, links) {
|
|
22
|
+
const adj = new Map();
|
|
23
|
+
for (const name of names)
|
|
24
|
+
adj.set(name, []);
|
|
25
|
+
for (const { from, to } of links)
|
|
26
|
+
adj.get(from).push(to);
|
|
27
|
+
const WHITE = 0, GRAY = 1, BLACK = 2;
|
|
28
|
+
const color = new Map();
|
|
29
|
+
for (const name of names)
|
|
30
|
+
color.set(name, WHITE);
|
|
31
|
+
const stack = [];
|
|
32
|
+
for (const start of names) {
|
|
33
|
+
if (color.get(start) !== WHITE)
|
|
34
|
+
continue;
|
|
35
|
+
stack.push({ node: start, iter: 0 });
|
|
36
|
+
color.set(start, GRAY);
|
|
37
|
+
while (stack.length > 0) {
|
|
38
|
+
const frame = stack[stack.length - 1];
|
|
39
|
+
const neighbors = adj.get(frame.node);
|
|
40
|
+
if (frame.iter >= neighbors.length) {
|
|
41
|
+
color.set(frame.node, BLACK);
|
|
42
|
+
stack.pop();
|
|
43
|
+
continue;
|
|
44
|
+
}
|
|
45
|
+
const next = neighbors[frame.iter++];
|
|
46
|
+
const c = color.get(next);
|
|
47
|
+
if (c === GRAY)
|
|
48
|
+
return true;
|
|
49
|
+
if (c === WHITE) {
|
|
50
|
+
color.set(next, GRAY);
|
|
51
|
+
stack.push({ node: next, iter: 0 });
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
return false;
|
|
56
|
+
}
|
|
57
|
+
/** Record a soft warning on the ambient degradation collector if present.
|
|
58
|
+
* Swallowed silently in unit tests (no ambient collector). */
|
|
59
|
+
function warn(source, message) {
|
|
60
|
+
const collector = getCurrentCollector();
|
|
61
|
+
if (collector) {
|
|
62
|
+
collector.recordError(source, new Error(message), { recoverable: true, severity: 'warning' });
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Parse the raw LLM response for Step 2. Dedupe components by lowercased
|
|
67
|
+
* trimmed name, drop orphan links with a warn, and throw on cycle.
|
|
68
|
+
*/
|
|
69
|
+
export function parseRawValueChainResponse(text) {
|
|
70
|
+
const payload = extractJsonPayload(text);
|
|
71
|
+
let data;
|
|
72
|
+
try {
|
|
73
|
+
data = JSON.parse(payload);
|
|
74
|
+
}
|
|
75
|
+
catch (err) {
|
|
76
|
+
throw new Error(`generateChain: invalid JSON in LLM response: ${err.message}`);
|
|
77
|
+
}
|
|
78
|
+
const parsed = RawValueChainSchema.parse(data);
|
|
79
|
+
// Dedupe components.
|
|
80
|
+
const seen = new Set();
|
|
81
|
+
const components = [];
|
|
82
|
+
for (const c of parsed.components) {
|
|
83
|
+
const key = c.name.toLowerCase().trim();
|
|
84
|
+
if (seen.has(key)) {
|
|
85
|
+
warn('llm:write-chain:generate-chain', `duplicate component "${c.name}" dropped`);
|
|
86
|
+
continue;
|
|
87
|
+
}
|
|
88
|
+
seen.add(key);
|
|
89
|
+
components.push(c);
|
|
90
|
+
}
|
|
91
|
+
const nameSet = new Set(components.map(c => c.name));
|
|
92
|
+
const links = [];
|
|
93
|
+
for (const link of parsed.links) {
|
|
94
|
+
if (!nameSet.has(link.from) || !nameSet.has(link.to)) {
|
|
95
|
+
warn('llm:write-chain:generate-chain', `orphan link dropped: ${link.from} -> ${link.to}`);
|
|
96
|
+
continue;
|
|
97
|
+
}
|
|
98
|
+
if (link.from === link.to) {
|
|
99
|
+
warn('llm:write-chain:generate-chain', `self-loop dropped on "${link.from}"`);
|
|
100
|
+
continue;
|
|
101
|
+
}
|
|
102
|
+
links.push(link);
|
|
103
|
+
}
|
|
104
|
+
if (hasCycle(nameSet, links)) {
|
|
105
|
+
throw new Error('generateChain: cyclic dependency graph detected in LLM response');
|
|
106
|
+
}
|
|
107
|
+
// Metadata is supplied by the caller (Step 1 output); the schema allows it
|
|
108
|
+
// to be absent here. Fill with a stub so the type-system stays strict; the
|
|
109
|
+
// caller overrides immediately.
|
|
110
|
+
const metadata = parsed.metadata ?? {
|
|
111
|
+
title: '', angle: '', scope: '', objective: '', imperatives: [], temporality: 'present', contextSummary: '',
|
|
112
|
+
};
|
|
113
|
+
return { metadata, components, links };
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* Invoke LLM #2 to generate the value chain. The returned `RawValueChain`
|
|
117
|
+
* always carries the metadata passed in — the LLM response's own metadata
|
|
118
|
+
* field, if any, is ignored (LLM #1 is the authoritative source).
|
|
119
|
+
*/
|
|
120
|
+
export async function generateChain(metadata, llmCall, today = new Date()) {
|
|
121
|
+
const p = getPrompt('write-chain', 'top-down');
|
|
122
|
+
const date = today.toISOString().slice(0, 10);
|
|
123
|
+
const built = p.build({ metadata: JSON.stringify(metadata), date });
|
|
124
|
+
const response = await tryDegradeAmbient('llm:write-chain:generate-chain', () => llmCall(built.user, undefined, { systemPrompt: built.system }), null);
|
|
125
|
+
if (response == null) {
|
|
126
|
+
throw new Error('generateChain: LLM call degraded (see ambient collector)');
|
|
127
|
+
}
|
|
128
|
+
const chain = p.parse(response);
|
|
129
|
+
return { ...chain, metadata };
|
|
130
|
+
}
|
|
131
|
+
//# sourceMappingURL=generate-chain.mjs.map
|
package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/generate-chain.mjs.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"generate-chain.mjs","sourceRoot":"","sources":["../../../../../../../../../src/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/generate-chain.mts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { BaseChainWriteStrategy } from '../base-strategy.mjs';
|
|
2
|
+
import { type EmitOwmOptions } from '../../lib/emit/emit-owm.mjs';
|
|
3
|
+
import type { ChainMetadata } from '#types/value-chain.mjs';
|
|
4
|
+
export interface TopDownChainInput {
|
|
5
|
+
nlCommand: string;
|
|
6
|
+
/** Optional OWM rendering options forwarded to emit-owm. */
|
|
7
|
+
emit?: EmitOwmOptions;
|
|
8
|
+
}
|
|
9
|
+
export interface TopDownChainFullResult {
|
|
10
|
+
owm: string;
|
|
11
|
+
metadata: ChainMetadata;
|
|
12
|
+
}
|
|
13
|
+
export declare class TopDownChainStrategy extends BaseChainWriteStrategy {
|
|
14
|
+
static get method(): string;
|
|
15
|
+
private readonly _llmCall;
|
|
16
|
+
constructor({ llmCall }?: any);
|
|
17
|
+
/**
|
|
18
|
+
* Full pipeline output — OWM DSL plus the metadata extracted by LLM #1.
|
|
19
|
+
* Consumers that need to persist the context alongside the map (e.g. the
|
|
20
|
+
* MCP tool handler) should call this rather than `build`.
|
|
21
|
+
*/
|
|
22
|
+
buildFull(input: TopDownChainInput): Promise<TopDownChainFullResult>;
|
|
23
|
+
/**
|
|
24
|
+
* Backwards-compatible narrow output required by `BaseChainWriteStrategy`.
|
|
25
|
+
* Delegates to `buildFull` and discards the metadata.
|
|
26
|
+
*/
|
|
27
|
+
build(input: TopDownChainInput): Promise<string>;
|
|
28
|
+
}
|
|
29
|
+
import { BaseStrategy as CoreBaseStrategy, type StrategyResult } from '#core/ast/base-strategy.mjs';
|
|
30
|
+
import type { RequestContext } from '#core/context/request-context.mjs';
|
|
31
|
+
import type { LLMCall } from '#types/llm.mjs';
|
|
32
|
+
export declare class TopDownChainStrategyCore extends CoreBaseStrategy<TopDownChainInput, TopDownChainFullResult> {
|
|
33
|
+
private readonly _llmCall;
|
|
34
|
+
constructor(options?: {
|
|
35
|
+
llmCall?: LLMCall;
|
|
36
|
+
});
|
|
37
|
+
static get method(): string;
|
|
38
|
+
evaluate(input: TopDownChainInput, _context: RequestContext): Promise<StrategyResult<TopDownChainFullResult>>;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=top-down-strategy.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"top-down-strategy.d.mts","sourceRoot":"","sources":["../../../../../../../../../src/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/top-down-strategy.mts"],"names":[],"mappings":"AA2BA,OAAO,EAAE,sBAAsB,EAAE,MAAM,sBAAsB,CAAC;AAO9D,OAAO,EAA0B,KAAK,cAAc,EAAE,MAAM,6BAA6B,CAAC;AAC1F,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AAK5D,MAAM,WAAW,iBAAiB;IAChC,SAAS,EAAE,MAAM,CAAC;IAClB,4DAA4D;IAC5D,IAAI,CAAC,EAAE,cAAc,CAAC;CACvB;AAED,MAAM,WAAW,sBAAsB;IACrC,GAAG,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,aAAa,CAAC;CACzB;AAED,qBAAa,oBAAqB,SAAQ,sBAAsB;IAC9D,MAAM,KAAK,MAAM,IAAI,MAAM,CAE1B;IAED,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAU;gBAGvB,EAAE,OAAO,EAAE,GAAE,GAAQ;IAQjC;;;;OAIG;IACG,SAAS,CAAC,KAAK,EAAE,iBAAiB,GAAG,OAAO,CAAC,sBAAsB,CAAC;IAkC1E;;;OAGG;IACG,KAAK,CAAC,KAAK,EAAE,iBAAiB,GAAG,OAAO,CAAC,MAAM,CAAC;CAIvD;AAQD,OAAO,EACL,YAAY,IAAI,gBAAgB,EAChC,KAAK,cAAc,EACpB,MAAM,6BAA6B,CAAC;AACrC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;AACxE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAK9C,qBAAa,wBACX,SAAQ,gBAAgB,CAAC,iBAAiB,EAAE,sBAAsB,CAAC;IAEnE,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAiB;gBAE9B,OAAO,GAAE;QAAE,OAAO,CAAC,EAAE,OAAO,CAAA;KAAO;IAK/C,MAAM,KAAK,MAAM,IAAI,MAAM,CAE1B;IAEK,QAAQ,CACZ,KAAK,EAAE,iBAAiB,EACxB,QAAQ,EAAE,cAAc,GACvB,OAAO,CAAC,cAAc,CAAC,sBAAsB,CAAC,CAAC;CAoCnD"}
|
package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/top-down-strategy.mjs
ADDED
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
// write:chain:top-down — the first concrete value-chain write strategy.
|
|
2
|
+
// Implements the top-down Wardley algorithm: anchor → needs → capabilities → links.
|
|
3
|
+
//
|
|
4
|
+
// Composes the seven pipeline modules (extract-metadata, generate-chain,
|
|
5
|
+
// compute-visibility, adjust-x, place-labels, verify-layout, emit-owm)
|
|
6
|
+
// into a single-shot flow that turns a natural-language command into an
|
|
7
|
+
// OWM DSL document.
|
|
8
|
+
//
|
|
9
|
+
// Two LLM calls only:
|
|
10
|
+
// 1. extract-metadata — angle/scope/objective/imperatives/temporality.
|
|
11
|
+
// 2. generate-chain — chain shape (anchors, components, links, phases)
|
|
12
|
+
// plus an inline `xHint` per component for visual
|
|
13
|
+
// clarity.
|
|
14
|
+
// All later stages (compute-visibility, adjust-x, place-labels,
|
|
15
|
+
// verify-layout, emit-owm) are pure deterministic JS.
|
|
16
|
+
//
|
|
17
|
+
// verify-layout closes the loop on label placement: it computes the chain
|
|
18
|
+
// geometry analytically, detects overlaps, and reassigns label offsets via
|
|
19
|
+
// force-directed simulation + canonical snap until the rendering is clean
|
|
20
|
+
// or the iteration cap is reached.
|
|
21
|
+
//
|
|
22
|
+
// The pipeline modules are kept in sibling files (not inlined here) so
|
|
23
|
+
// that future `write:chain:*` strategies can recompose them — e.g. a
|
|
24
|
+
// bottom-up strategy could reuse compute-visibility + adjust-x + place-
|
|
25
|
+
// labels + verify-layout + emit-owm while replacing extract-metadata
|
|
26
|
+
// and generate-chain.
|
|
27
|
+
import { BaseChainWriteStrategy } from '../base-strategy.mjs';
|
|
28
|
+
import { extractMetadata } from '../../lib/llm/extract-metadata.mjs';
|
|
29
|
+
import { generateChain } from './generate-chain.mjs';
|
|
30
|
+
import { computeVisibility } from '../../lib/layout/compute-visibility.mjs';
|
|
31
|
+
import { adjustX } from '../../lib/layout/adjust-x.mjs';
|
|
32
|
+
import { placeLabels } from '../../lib/layout/place-labels.mjs';
|
|
33
|
+
import { verifyLayout } from '../../lib/layout/verify-layout.mjs';
|
|
34
|
+
import { generateChainOwmSyntax } from '../../lib/emit/emit-owm.mjs';
|
|
35
|
+
export class TopDownChainStrategy extends BaseChainWriteStrategy {
|
|
36
|
+
static get method() {
|
|
37
|
+
return 'write:chain:top-down';
|
|
38
|
+
}
|
|
39
|
+
_llmCall;
|
|
40
|
+
// any: destructured options bag mirrors the convention of other strategies
|
|
41
|
+
constructor({ llmCall } = {}) {
|
|
42
|
+
super();
|
|
43
|
+
if (typeof llmCall !== 'function') {
|
|
44
|
+
throw new Error('TopDownChainStrategy requires an llmCall function');
|
|
45
|
+
}
|
|
46
|
+
this._llmCall = llmCall;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Full pipeline output — OWM DSL plus the metadata extracted by LLM #1.
|
|
50
|
+
* Consumers that need to persist the context alongside the map (e.g. the
|
|
51
|
+
* MCP tool handler) should call this rather than `build`.
|
|
52
|
+
*/
|
|
53
|
+
async buildFull(input) {
|
|
54
|
+
if (!input?.nlCommand || typeof input.nlCommand !== 'string') {
|
|
55
|
+
throw new Error('TopDownChainStrategy.build requires a non-empty nlCommand');
|
|
56
|
+
}
|
|
57
|
+
const metadata = await extractMetadata(input.nlCommand, this._llmCall);
|
|
58
|
+
// LLM #2 returns the chain plus each component's xHint inline.
|
|
59
|
+
const raw = await generateChain(metadata, this._llmCall);
|
|
60
|
+
// Deterministic Y assignment from the parsed chain. xHints are already
|
|
61
|
+
// on raw.components, so adjust-x reads them directly via the
|
|
62
|
+
// PositionedValueChain produced by computeVisibility.
|
|
63
|
+
const visibility = computeVisibility(raw);
|
|
64
|
+
const adjusted = adjustX(visibility.chain);
|
|
65
|
+
const laid = placeLabels(adjusted.chain);
|
|
66
|
+
// Caller-provided size always wins so MCP clients can override the
|
|
67
|
+
// density-driven canvas dimensions computed in steps 3 and 5.
|
|
68
|
+
const computedSize = {
|
|
69
|
+
width: adjusted.mapSize.width,
|
|
70
|
+
height: visibility.mapSize.height,
|
|
71
|
+
};
|
|
72
|
+
const emitOptions = {
|
|
73
|
+
...(input.emit ?? {}),
|
|
74
|
+
size: input.emit?.size ?? computedSize,
|
|
75
|
+
};
|
|
76
|
+
// Step 6: collision-aware label correction.
|
|
77
|
+
const verified = verifyLayout(laid, emitOptions);
|
|
78
|
+
const owm = generateChainOwmSyntax(verified.chain, emitOptions);
|
|
79
|
+
return { owm, metadata };
|
|
80
|
+
}
|
|
81
|
+
/**
|
|
82
|
+
* Backwards-compatible narrow output required by `BaseChainWriteStrategy`.
|
|
83
|
+
* Delegates to `buildFull` and discards the metadata.
|
|
84
|
+
*/
|
|
85
|
+
async build(input) {
|
|
86
|
+
const { owm } = await this.buildFull(input);
|
|
87
|
+
return owm;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
// ─── Core BaseStrategy adapter ──────────────────────────────────────────────
|
|
91
|
+
//
|
|
92
|
+
// Wraps the legacy `TopDownChainStrategy` in the core BaseStrategy contract.
|
|
93
|
+
// Note the divergent return shape: chain generation produces
|
|
94
|
+
// `{ owm: string, metadata: ChainMetadata }`, NOT an EvolutionResult.
|
|
95
|
+
import { BaseStrategy as CoreBaseStrategy, } from '#core/ast/base-strategy.mjs';
|
|
96
|
+
import { getStrategyLLM } from '#lib/llm/registry.mjs';
|
|
97
|
+
const NEW_METHOD_ID_TOPDOWN = 'wardley:map:value-chain:generate:top-down';
|
|
98
|
+
export class TopDownChainStrategyCore extends CoreBaseStrategy {
|
|
99
|
+
_llmCall;
|
|
100
|
+
constructor(options = {}) {
|
|
101
|
+
super();
|
|
102
|
+
this._llmCall = options.llmCall ?? null;
|
|
103
|
+
}
|
|
104
|
+
static get method() {
|
|
105
|
+
return NEW_METHOD_ID_TOPDOWN;
|
|
106
|
+
}
|
|
107
|
+
async evaluate(input, _context) {
|
|
108
|
+
// any: legacy registry id 'write-chain' is not in the StrategyId enum yet.
|
|
109
|
+
const llmCall = this._llmCall ?? await getStrategyLLM('write-chain');
|
|
110
|
+
const legacy = new TopDownChainStrategy({ llmCall });
|
|
111
|
+
const result = await legacy.buildFull(input);
|
|
112
|
+
const capturedAt = new Date().toISOString();
|
|
113
|
+
// any: metadata is the LLM #1 extracted structure (title, anchor, lang, etc.);
|
|
114
|
+
// ChainMetadata has a fixed shape but we look up arbitrary keys defensively.
|
|
115
|
+
const metadata = (result.metadata ?? {});
|
|
116
|
+
const signals = [
|
|
117
|
+
{ name: 'nlCommand', value: input.nlCommand, source: 'user-input', capturedAt },
|
|
118
|
+
...(typeof metadata.lang === 'string'
|
|
119
|
+
? [{ name: 'language', value: metadata.lang, source: 'llm-internal', capturedAt }]
|
|
120
|
+
: []),
|
|
121
|
+
...(typeof metadata.title === 'string'
|
|
122
|
+
? [{ name: 'title', value: metadata.title, source: 'llm-internal', capturedAt }]
|
|
123
|
+
: []),
|
|
124
|
+
];
|
|
125
|
+
// Surface the extracted anchor as an insight — it is the LLM's structural
|
|
126
|
+
// interpretation of the natural-language command and drives the rest of
|
|
127
|
+
// the chain build.
|
|
128
|
+
const insights = typeof metadata.anchor === 'string'
|
|
129
|
+
? [{
|
|
130
|
+
text: `Anchor extracted from natural-language command: "${metadata.anchor}"`,
|
|
131
|
+
by: NEW_METHOD_ID_TOPDOWN,
|
|
132
|
+
type: 'other',
|
|
133
|
+
}]
|
|
134
|
+
: [];
|
|
135
|
+
return {
|
|
136
|
+
signals,
|
|
137
|
+
reasoning: [],
|
|
138
|
+
insights,
|
|
139
|
+
result,
|
|
140
|
+
};
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
//# sourceMappingURL=top-down-strategy.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"top-down-strategy.mjs","sourceRoot":"","sources":["../../../../../../../../../src/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/top-down-strategy.mts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import type { ParsedCapabilityResponse } from '#schemas/parsed-llm.schema.mjs';
|
|
2
|
+
/**
|
|
3
|
+
* Parse LLM capability identification response.
|
|
4
|
+
* Input type (from OWM DSL) always takes priority over LLM-estimated type.
|
|
5
|
+
* @param {string} text - Raw LLM response
|
|
6
|
+
* @param {{ name: string, type?: string, context?: string }} component - Input component
|
|
7
|
+
* @returns {{ type: string, nature: string, capability: string, confidence: number, justification: string, context: string, name: string }}
|
|
8
|
+
*/
|
|
9
|
+
export declare function parseCapabilityResponse(text: string, component: any): ParsedCapabilityResponse;
|
|
10
|
+
/**
|
|
11
|
+
* Identify the true underlying capability or need behind a component label.
|
|
12
|
+
*
|
|
13
|
+
* When type is provided (from OWM DSL):
|
|
14
|
+
* - anchor/market/ecosystem → skip immediately, no LLM call
|
|
15
|
+
* - component/pipeline → LLM identifies nature/capability, input type is authoritative
|
|
16
|
+
*
|
|
17
|
+
* When type is absent:
|
|
18
|
+
* - LLM estimates type + nature + capability (no penalty)
|
|
19
|
+
*
|
|
20
|
+
* @param {{ name: string, type?: string, description?: string, context?: string }} component
|
|
21
|
+
* @param {function(string): Promise<string>} llmCall
|
|
22
|
+
* @returns {Promise<{ type: string, nature: string, capability: string, confidence: number, justification: string }>}
|
|
23
|
+
*/
|
|
24
|
+
export declare function identifyCapability(component: any, llmCall?: any): Promise<any>;
|
|
25
|
+
import { BaseStrategy as CoreBaseStrategy, type StrategyResult } from '#core/ast/base-strategy.mjs';
|
|
26
|
+
import type { RequestContext } from '#core/context/request-context.mjs';
|
|
27
|
+
import type { LLMCall } from '#types/llm.mjs';
|
|
28
|
+
export interface IdentifyCapabilityInput {
|
|
29
|
+
name: string;
|
|
30
|
+
type?: string;
|
|
31
|
+
description?: string;
|
|
32
|
+
context?: string;
|
|
33
|
+
}
|
|
34
|
+
export declare class IdentifyCapabilityStrategy extends CoreBaseStrategy<IdentifyCapabilityInput, ParsedCapabilityResponse> {
|
|
35
|
+
private readonly _llmCall;
|
|
36
|
+
constructor(options?: {
|
|
37
|
+
llmCall?: LLMCall;
|
|
38
|
+
});
|
|
39
|
+
static get method(): string;
|
|
40
|
+
evaluate(component: IdentifyCapabilityInput, _context: RequestContext): Promise<StrategyResult<ParsedCapabilityResponse>>;
|
|
41
|
+
}
|
|
42
|
+
//# sourceMappingURL=identify-capability.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"identify-capability.d.mts","sourceRoot":"","sources":["../../../../../../../../../src/frameworks/wardley/chain/_legacy/write/component/lib/capability/identify-capability.mts"],"names":[],"mappings":"AAQA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,gCAAgC,CAAC;AAS/E;;;;;;GAMG;AAEH,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,MAAM,EAAE,SAAS,EAAE,GAAG,GAAG,wBAAwB,CAqB9F;AAED;;;;;;;;;;;;;GAaG;AAEH,wBAAsB,kBAAkB,CAAC,SAAS,EAAE,GAAG,EAAE,OAAO,CAAC,EAAE,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC,CA0CpF;AAUD,OAAO,EACL,YAAY,IAAI,gBAAgB,EAChC,KAAK,cAAc,EACpB,MAAM,6BAA6B,CAAC;AACrC,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;AACxE,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,gBAAgB,CAAC;AAM9C,MAAM,WAAW,uBAAuB;IACtC,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,qBAAa,0BACX,SAAQ,gBAAgB,CAAC,uBAAuB,EAAE,wBAAwB,CAAC;IAG3E,OAAO,CAAC,QAAQ,CAAC,QAAQ,CAAiB;gBAE9B,OAAO,GAAE;QAAE,OAAO,CAAC,EAAE,OAAO,CAAA;KAAO;IAK/C,MAAM,KAAK,MAAM,IAAI,MAAM,CAE1B;IAEK,QAAQ,CACZ,SAAS,EAAE,uBAAuB,EAClC,QAAQ,EAAE,cAAc,GACvB,OAAO,CAAC,cAAc,CAAC,wBAAwB,CAAC,CAAC;CAuBrD"}
|
package/dist/frameworks/wardley/chain/_legacy/write/component/lib/capability/identify-capability.mjs
ADDED
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
// Identify the true underlying capability or need behind a component label.
|
|
2
|
+
//
|
|
3
|
+
// Reusable module: can be called by any strategy or tool that needs to
|
|
4
|
+
// decode technical solution names (CRM, ERP, Kubernetes…) into the
|
|
5
|
+
// capability they serve, classified by type and nature.
|
|
6
|
+
//
|
|
7
|
+
// The MCP tool wrapper lives in src/mcp/identify-capability.tool.mts.
|
|
8
|
+
import { parseKeyValueBlock } from '#lib/prompts/parsers.mjs';
|
|
9
|
+
import { getPrompt } from '#lib/prompts/registry.mjs';
|
|
10
|
+
import { tryDegradeAmbient } from '#lib/degradation/index.mjs';
|
|
11
|
+
const ELIGIBLE_TYPES = new Set(['component', 'pipeline']);
|
|
12
|
+
// Prompt text lives in prompts/identify-capability.md. Resolved via getPrompt().
|
|
13
|
+
/**
|
|
14
|
+
* Parse LLM capability identification response.
|
|
15
|
+
* Input type (from OWM DSL) always takes priority over LLM-estimated type.
|
|
16
|
+
* @param {string} text - Raw LLM response
|
|
17
|
+
* @param {{ name: string, type?: string, context?: string }} component - Input component
|
|
18
|
+
* @returns {{ type: string, nature: string, capability: string, confidence: number, justification: string, context: string, name: string }}
|
|
19
|
+
*/
|
|
20
|
+
// any: component is the loose MCP input (name/type/description/context)
|
|
21
|
+
export function parseCapabilityResponse(text, component) {
|
|
22
|
+
const raw = parseKeyValueBlock(text, ['type', 'nature', 'capability', 'confidence', 'justification']);
|
|
23
|
+
if (raw.capability === undefined) {
|
|
24
|
+
throw new Error(`identifyCapability: could not parse LLM response: ${text.slice(0, 200)}`);
|
|
25
|
+
}
|
|
26
|
+
// Original regex for `type` and `nature` captured \S+ (first token).
|
|
27
|
+
// parseKeyValueBlock captures the full line; reduce to the first token to preserve semantics.
|
|
28
|
+
const firstToken = (s) => s?.split(/\s+/)[0];
|
|
29
|
+
const llmType = firstToken(raw.type)?.toLowerCase() ?? 'component';
|
|
30
|
+
return {
|
|
31
|
+
type: component.type || llmType,
|
|
32
|
+
nature: firstToken(raw.nature)?.toLowerCase() ?? 'none',
|
|
33
|
+
capability: raw.capability,
|
|
34
|
+
context: component.context || '',
|
|
35
|
+
name: component.name || '',
|
|
36
|
+
confidence: raw.confidence !== undefined ? parseFloat(raw.confidence) : 0.5,
|
|
37
|
+
justification: raw.justification ?? '',
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
/**
|
|
41
|
+
* Identify the true underlying capability or need behind a component label.
|
|
42
|
+
*
|
|
43
|
+
* When type is provided (from OWM DSL):
|
|
44
|
+
* - anchor/market/ecosystem → skip immediately, no LLM call
|
|
45
|
+
* - component/pipeline → LLM identifies nature/capability, input type is authoritative
|
|
46
|
+
*
|
|
47
|
+
* When type is absent:
|
|
48
|
+
* - LLM estimates type + nature + capability (no penalty)
|
|
49
|
+
*
|
|
50
|
+
* @param {{ name: string, type?: string, description?: string, context?: string }} component
|
|
51
|
+
* @param {function(string): Promise<string>} llmCall
|
|
52
|
+
* @returns {Promise<{ type: string, nature: string, capability: string, confidence: number, justification: string }>}
|
|
53
|
+
*/
|
|
54
|
+
// any: component is the loose MCP input; llmCall is a closure with diverse signatures
|
|
55
|
+
export async function identifyCapability(component, llmCall) {
|
|
56
|
+
// When type is known and non-eligible, skip immediately
|
|
57
|
+
if (component.type && !ELIGIBLE_TYPES.has(component.type)) {
|
|
58
|
+
return {
|
|
59
|
+
type: component.type,
|
|
60
|
+
nature: 'none',
|
|
61
|
+
capability: component.name || '',
|
|
62
|
+
context: component.context || '',
|
|
63
|
+
name: component.name || '',
|
|
64
|
+
confidence: 1,
|
|
65
|
+
justification: `Type "${component.type}" is not eligible for capability identification (only component and pipeline are)`,
|
|
66
|
+
skipped: true,
|
|
67
|
+
};
|
|
68
|
+
}
|
|
69
|
+
const p = getPrompt('identify-capability');
|
|
70
|
+
const built = p.build({
|
|
71
|
+
component: component.name || '',
|
|
72
|
+
description: component.description ?? '',
|
|
73
|
+
context: component.context ?? '',
|
|
74
|
+
});
|
|
75
|
+
// Wrap the LLM call so a failure (rate limit, auth, network) surfaces
|
|
76
|
+
// on the ambient degradation collector — the caller still receives a
|
|
77
|
+
// valid capability shape, but the MCP envelope flips degraded:true.
|
|
78
|
+
const response = await tryDegradeAmbient('llm:identify-capability', () => llmCall(built.user, undefined, { systemPrompt: built.system }), '');
|
|
79
|
+
const result = p.parse(response, component);
|
|
80
|
+
// When type was not provided, check if LLM-estimated type is non-eligible
|
|
81
|
+
if (!component.type && !ELIGIBLE_TYPES.has(result.type)) {
|
|
82
|
+
return {
|
|
83
|
+
...result,
|
|
84
|
+
nature: 'none',
|
|
85
|
+
capability: component.name || '',
|
|
86
|
+
skipped: true,
|
|
87
|
+
};
|
|
88
|
+
}
|
|
89
|
+
return result;
|
|
90
|
+
}
|
|
91
|
+
// ─── Core BaseStrategy wrapper class ────────────────────────────────────────
|
|
92
|
+
//
|
|
93
|
+
// Wraps the `identifyCapability` function in the core BaseStrategy contract.
|
|
94
|
+
// The function above stays exported because timeline-benchmark and the
|
|
95
|
+
// legacy dispatcher use it directly. This class lets recipes reference
|
|
96
|
+
// `wardley:map:node:identify:default` and dispatch
|
|
97
|
+
// through the kernel runner.
|
|
98
|
+
import { BaseStrategy as CoreBaseStrategy, } from '#core/ast/base-strategy.mjs';
|
|
99
|
+
import { getStrategyLLM } from '#lib/llm/registry.mjs';
|
|
100
|
+
const NEW_METHOD_ID_IDENT = 'wardley:map:node:identify:default';
|
|
101
|
+
export class IdentifyCapabilityStrategy extends CoreBaseStrategy {
|
|
102
|
+
// any: llmCall closure shape is provider-dependent
|
|
103
|
+
_llmCall;
|
|
104
|
+
constructor(options = {}) {
|
|
105
|
+
super();
|
|
106
|
+
this._llmCall = options.llmCall ?? null;
|
|
107
|
+
}
|
|
108
|
+
static get method() {
|
|
109
|
+
return NEW_METHOD_ID_IDENT;
|
|
110
|
+
}
|
|
111
|
+
async evaluate(component, _context) {
|
|
112
|
+
// any: legacy registry id 'identify-capability' is not in the StrategyId enum yet.
|
|
113
|
+
const llmCall = this._llmCall ?? await getStrategyLLM('identify-capability');
|
|
114
|
+
const result = await identifyCapability(component, llmCall);
|
|
115
|
+
const capturedAt = new Date().toISOString();
|
|
116
|
+
return {
|
|
117
|
+
signals: [
|
|
118
|
+
{ name: 'name', value: component.name, source: 'user-input', capturedAt },
|
|
119
|
+
...(component.type
|
|
120
|
+
? [{ name: 'type', value: component.type, source: 'user-input', capturedAt }]
|
|
121
|
+
: []),
|
|
122
|
+
...(component.context
|
|
123
|
+
? [{ name: 'context', value: component.context, source: 'user-input', capturedAt }]
|
|
124
|
+
: []),
|
|
125
|
+
],
|
|
126
|
+
reasoning: [],
|
|
127
|
+
insights: result.justification
|
|
128
|
+
? [{ text: result.justification, by: NEW_METHOD_ID_IDENT, type: 'other', confidence: result.confidence }]
|
|
129
|
+
: [],
|
|
130
|
+
result,
|
|
131
|
+
};
|
|
132
|
+
}
|
|
133
|
+
}
|
|
134
|
+
//# sourceMappingURL=identify-capability.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"identify-capability.mjs","sourceRoot":"","sources":["../../../../../../../../../src/frameworks/wardley/chain/_legacy/write/component/lib/capability/identify-capability.mts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @typedef {Object} PipelineCapabilityInferenceResult
|
|
3
|
+
* @property {string} solutionName - Original solution name input
|
|
4
|
+
* @property {string} capability - Inferred capability (nature-formatted, e.g. "Orchestrate containers")
|
|
5
|
+
* @property {string} capabilityLabel - Clean label for OWM display (e.g. "Container Orchestration")
|
|
6
|
+
* @property {string} nature - Wardley component nature: activity | practice | knowledge | data
|
|
7
|
+
* @property {string} wardleyType - Component type: component | pipeline | anchor | market | ecosystem
|
|
8
|
+
* @property {number} confidence - Confidence in the inference (0–1)
|
|
9
|
+
* @property {string} justification - LLM reasoning for the inference
|
|
10
|
+
* @property {boolean} inferred - Always true — marks this as an LLM inference result
|
|
11
|
+
*/
|
|
12
|
+
/**
|
|
13
|
+
* Convert a nature-formatted capability string into a clean display label
|
|
14
|
+
* suitable for OWM component names.
|
|
15
|
+
*
|
|
16
|
+
* Transformations by nature:
|
|
17
|
+
* - activity: "Orchestrate containers" → "Container Orchestration"
|
|
18
|
+
* (removes leading verb, nominalizes)
|
|
19
|
+
* - practice: "how to manage IT services" → "IT Service Management"
|
|
20
|
+
* (removes "how to", nominalizes)
|
|
21
|
+
* - knowledge: "technical expertise in welding" → "Welding Expertise"
|
|
22
|
+
* - data: kept as-is with title case
|
|
23
|
+
*
|
|
24
|
+
* Falls back to title-casing the raw capability if transformation fails.
|
|
25
|
+
*
|
|
26
|
+
* @param {string} capability - Nature-formatted capability string
|
|
27
|
+
* @param {string} nature - Component nature (activity/practice/knowledge/data)
|
|
28
|
+
* @returns {string} Clean label for OWM display
|
|
29
|
+
*/
|
|
30
|
+
export declare function capabilityToLabel(capability: string, nature?: string): string;
|
|
31
|
+
/**
|
|
32
|
+
* Infer the underlying capability from a solution name using the Tier 2 LLM.
|
|
33
|
+
*
|
|
34
|
+
* This is the core function for pipeline mode's first step: given a named
|
|
35
|
+
* solution (product, framework, methodology, standard), determine the generic
|
|
36
|
+
* capability it addresses.
|
|
37
|
+
*
|
|
38
|
+
* @param {string} solutionName - The solution name (e.g. "Kubernetes", "Scrum", "ISO 27001")
|
|
39
|
+
* @param {Object} options
|
|
40
|
+
* @param {string} [options.description] - Additional context about the solution
|
|
41
|
+
* @param {function} options.llmCall - LLM call function (from llm-call.mjs)
|
|
42
|
+
* @returns {Promise<PipelineCapabilityInferenceResult>}
|
|
43
|
+
*/
|
|
44
|
+
export declare function inferCapabilityFromSolution(solutionName: string, options?: any): Promise<any>;
|
|
45
|
+
//# sourceMappingURL=infer-capability-from-solution.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"infer-capability-from-solution.d.mts","sourceRoot":"","sources":["../../../../../../../../../src/frameworks/wardley/chain/_legacy/write/component/lib/classification/infer-capability-from-solution.mts"],"names":[],"mappings":"AA2CA;;;;;;;;;;GAUG;AAIH;;;;;;;;;;;;;;;;;GAiBG;AACH,wBAAgB,iBAAiB,CAAC,UAAU,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CA+E7E;AAkBD;;;;;;;;;;;;GAYG;AAEH,wBAAsB,2BAA2B,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,GAAE,GAAQ,GAAG,OAAO,CAAC,GAAG,CAAC,CA0CvG"}
|