labre-mcp 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +97 -0
- package/dist/core/ast/analysis-ref.d.mts +7 -0
- package/dist/core/ast/analysis-ref.d.mts.map +1 -0
- package/dist/core/ast/analysis-ref.mjs +19 -0
- package/dist/core/ast/analysis-ref.mjs.map +1 -0
- package/dist/core/ast/base-ast.d.mts +4 -0
- package/dist/core/ast/base-ast.d.mts.map +1 -0
- package/dist/core/ast/base-ast.mjs +5 -0
- package/dist/core/ast/base-ast.mjs.map +1 -0
- package/dist/core/ast/base-strategy.d.mts +30 -0
- package/dist/core/ast/base-strategy.d.mts.map +1 -0
- package/dist/core/ast/base-strategy.mjs +25 -0
- package/dist/core/ast/base-strategy.mjs.map +1 -0
- package/dist/core/bus/event-bus.d.mts +11 -0
- package/dist/core/bus/event-bus.d.mts.map +1 -0
- package/dist/core/bus/event-bus.mjs +70 -0
- package/dist/core/bus/event-bus.mjs.map +1 -0
- package/dist/core/bus/event.schema.d.mts +20 -0
- package/dist/core/bus/event.schema.d.mts.map +1 -0
- package/dist/core/bus/event.schema.mjs +19 -0
- package/dist/core/bus/event.schema.mjs.map +1 -0
- package/dist/core/context/request-context.d.mts +10 -0
- package/dist/core/context/request-context.d.mts.map +1 -0
- package/dist/core/context/request-context.mjs +13 -0
- package/dist/core/context/request-context.mjs.map +1 -0
- package/dist/core/index.d.mts +13 -0
- package/dist/core/index.d.mts.map +1 -0
- package/dist/core/index.mjs +17 -0
- package/dist/core/index.mjs.map +1 -0
- package/dist/core/listeners/artifact-writer-listener.d.mts +20 -0
- package/dist/core/listeners/artifact-writer-listener.d.mts.map +1 -0
- package/dist/core/listeners/artifact-writer-listener.mjs +64 -0
- package/dist/core/listeners/artifact-writer-listener.mjs.map +1 -0
- package/dist/core/persistence/artifact-writer.d.mts +25 -0
- package/dist/core/persistence/artifact-writer.d.mts.map +1 -0
- package/dist/core/persistence/artifact-writer.mjs +36 -0
- package/dist/core/persistence/artifact-writer.mjs.map +1 -0
- package/dist/core/persistence/project-id-resolver.d.mts +11 -0
- package/dist/core/persistence/project-id-resolver.d.mts.map +1 -0
- package/dist/core/persistence/project-id-resolver.mjs +52 -0
- package/dist/core/persistence/project-id-resolver.mjs.map +1 -0
- package/dist/core/recipe/jsonpath-fanout.d.mts +3 -0
- package/dist/core/recipe/jsonpath-fanout.d.mts.map +1 -0
- package/dist/core/recipe/jsonpath-fanout.mjs +44 -0
- package/dist/core/recipe/jsonpath-fanout.mjs.map +1 -0
- package/dist/core/recipe/recipe-loader.d.mts +12 -0
- package/dist/core/recipe/recipe-loader.d.mts.map +1 -0
- package/dist/core/recipe/recipe-loader.mjs +69 -0
- package/dist/core/recipe/recipe-loader.mjs.map +1 -0
- package/dist/core/recipe/recipe-runner.d.mts +48 -0
- package/dist/core/recipe/recipe-runner.d.mts.map +1 -0
- package/dist/core/recipe/recipe-runner.mjs +247 -0
- package/dist/core/recipe/recipe-runner.mjs.map +1 -0
- package/dist/core/recipe/recipe.schema.d.mts +26 -0
- package/dist/core/recipe/recipe.schema.d.mts.map +1 -0
- package/dist/core/recipe/recipe.schema.mjs +46 -0
- package/dist/core/recipe/recipe.schema.mjs.map +1 -0
- package/dist/core/registry/short-name-map.d.mts +10 -0
- package/dist/core/registry/short-name-map.d.mts.map +1 -0
- package/dist/core/registry/short-name-map.mjs +39 -0
- package/dist/core/registry/short-name-map.mjs.map +1 -0
- package/dist/core/registry/strategy-registry.d.mts +13 -0
- package/dist/core/registry/strategy-registry.d.mts.map +1 -0
- package/dist/core/registry/strategy-registry.mjs +42 -0
- package/dist/core/registry/strategy-registry.mjs.map +1 -0
- package/dist/core/transport/auth-middleware.d.mts +6 -0
- package/dist/core/transport/auth-middleware.d.mts.map +1 -0
- package/dist/core/transport/auth-middleware.mjs +9 -0
- package/dist/core/transport/auth-middleware.mjs.map +1 -0
- package/dist/core/transport/boot-health-checks.d.mts +6 -0
- package/dist/core/transport/boot-health-checks.d.mts.map +1 -0
- package/dist/core/transport/boot-health-checks.mjs +42 -0
- package/dist/core/transport/boot-health-checks.mjs.map +1 -0
- package/dist/core/transport/boot-tool-registry.d.mts +3 -0
- package/dist/core/transport/boot-tool-registry.d.mts.map +1 -0
- package/dist/core/transport/boot-tool-registry.mjs +28 -0
- package/dist/core/transport/boot-tool-registry.mjs.map +1 -0
- package/dist/core/transport/context-extractor.d.mts +3 -0
- package/dist/core/transport/context-extractor.d.mts.map +1 -0
- package/dist/core/transport/context-extractor.mjs +33 -0
- package/dist/core/transport/context-extractor.mjs.map +1 -0
- package/dist/core/transport/http-server.d.mts +19 -0
- package/dist/core/transport/http-server.d.mts.map +1 -0
- package/dist/core/transport/http-server.mjs +77 -0
- package/dist/core/transport/http-server.mjs.map +1 -0
- package/dist/core/transport/json-rpc.schema.d.mts +31 -0
- package/dist/core/transport/json-rpc.schema.d.mts.map +1 -0
- package/dist/core/transport/json-rpc.schema.mjs +34 -0
- package/dist/core/transport/json-rpc.schema.mjs.map +1 -0
- package/dist/core/transport/labre-daemon.d.mts +3 -0
- package/dist/core/transport/labre-daemon.d.mts.map +1 -0
- package/dist/core/transport/labre-daemon.mjs +66 -0
- package/dist/core/transport/labre-daemon.mjs.map +1 -0
- package/dist/core/transport/labre-stdio.d.mts +16 -0
- package/dist/core/transport/labre-stdio.d.mts.map +1 -0
- package/dist/core/transport/labre-stdio.mjs +99 -0
- package/dist/core/transport/labre-stdio.mjs.map +1 -0
- package/dist/core/transport/mcp-handler.d.mts +21 -0
- package/dist/core/transport/mcp-handler.d.mts.map +1 -0
- package/dist/core/transport/mcp-handler.mjs +95 -0
- package/dist/core/transport/mcp-handler.mjs.map +1 -0
- package/dist/core/transport/strategy-registry-boot.d.mts +15 -0
- package/dist/core/transport/strategy-registry-boot.d.mts.map +1 -0
- package/dist/core/transport/strategy-registry-boot.mjs +39 -0
- package/dist/core/transport/strategy-registry-boot.mjs.map +1 -0
- package/dist/frameworks/common/layout/quality/overlap-check-strategy.d.mts +16 -0
- package/dist/frameworks/common/layout/quality/overlap-check-strategy.d.mts.map +1 -0
- package/dist/frameworks/common/layout/quality/overlap-check-strategy.mjs +71 -0
- package/dist/frameworks/common/layout/quality/overlap-check-strategy.mjs.map +1 -0
- package/dist/frameworks/common/layout/write/place-labels-strategy.d.mts +8 -0
- package/dist/frameworks/common/layout/write/place-labels-strategy.d.mts.map +1 -0
- package/dist/frameworks/common/layout/write/place-labels-strategy.mjs +60 -0
- package/dist/frameworks/common/layout/write/place-labels-strategy.mjs.map +1 -0
- package/dist/frameworks/common/registry.d.mts +7 -0
- package/dist/frameworks/common/registry.d.mts.map +1 -0
- package/dist/frameworks/common/registry.mjs +15 -0
- package/dist/frameworks/common/registry.mjs.map +1 -0
- package/dist/frameworks/common/toolbox/list/emit/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/common/toolbox/list/emit/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/common/toolbox/list/emit/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/common/toolbox/list/emit/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/common/toolbox/wardley/json-boilerplate/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/common/toolbox/wardley/json-boilerplate/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/common/toolbox/wardley/json-boilerplate/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/common/toolbox/wardley/json-boilerplate/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/mocks-registry.d.mts +4 -0
- package/dist/frameworks/mocks-registry.d.mts.map +1 -0
- package/dist/frameworks/mocks-registry.mjs +148 -0
- package/dist/frameworks/mocks-registry.mjs.map +1 -0
- package/dist/frameworks/render/registry.d.mts +4 -0
- package/dist/frameworks/render/registry.d.mts.map +1 -0
- package/dist/frameworks/render/registry.mjs +11 -0
- package/dist/frameworks/render/registry.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/acl/value-chain.d.mts +5 -0
- package/dist/frameworks/render/wardley-map/acl/value-chain.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/acl/value-chain.mjs +139 -0
- package/dist/frameworks/render/wardley-map/acl/value-chain.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/image/config/png.mock-strategy.d.mts +15 -0
- package/dist/frameworks/render/wardley-map/image/config/png.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/image/config/png.mock-strategy.mjs +21 -0
- package/dist/frameworks/render/wardley-map/image/config/png.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/image/config/svg.mock-strategy.d.mts +15 -0
- package/dist/frameworks/render/wardley-map/image/config/svg.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/image/config/svg.mock-strategy.mjs +21 -0
- package/dist/frameworks/render/wardley-map/image/config/svg.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/image/emit/png.mock-strategy.d.mts +15 -0
- package/dist/frameworks/render/wardley-map/image/emit/png.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/image/emit/png.mock-strategy.mjs +21 -0
- package/dist/frameworks/render/wardley-map/image/emit/png.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.d.mts +11 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.mjs +61 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.mock-strategy.d.mts +15 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.mock-strategy.mjs +21 -0
- package/dist/frameworks/render/wardley-map/image/emit/svg.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/image/parse/png.mock-strategy.d.mts +15 -0
- package/dist/frameworks/render/wardley-map/image/parse/png.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/image/parse/png.mock-strategy.mjs +21 -0
- package/dist/frameworks/render/wardley-map/image/parse/png.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/image/parse/svg.mock-strategy.d.mts +15 -0
- package/dist/frameworks/render/wardley-map/image/parse/svg.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/image/parse/svg.mock-strategy.mjs +21 -0
- package/dist/frameworks/render/wardley-map/image/parse/svg.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/render/wardley-map/owm/config/dsl.mock-strategy.d.mts +15 -0
- package/dist/frameworks/render/wardley-map/owm/config/dsl.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/render/wardley-map/owm/config/dsl.mock-strategy.mjs +21 -0
- package/dist/frameworks/render/wardley-map/owm/config/dsl.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/base-strategy.d.mts +22 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/base-strategy.mjs +34 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/registry.d.mts +17 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/registry.mjs +83 -0
- package/dist/frameworks/wardley/chain/_legacy/read/anchor/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/base-strategy.d.mts +22 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/base-strategy.mjs +34 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/registry.d.mts +17 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/registry.mjs +83 -0
- package/dist/frameworks/wardley/chain/_legacy/read/chain/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/base-strategy.d.mts +22 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/base-strategy.mjs +34 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/registry.d.mts +17 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/registry.mjs +83 -0
- package/dist/frameworks/wardley/chain/_legacy/read/component/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/base-strategy.d.mts +22 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/base-strategy.mjs +33 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/registry.d.mts +17 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/registry.mjs +86 -0
- package/dist/frameworks/wardley/chain/_legacy/write/anchor/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/emit/emit-owm.d.mts +20 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/emit/emit-owm.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/emit/emit-owm.mjs +67 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/emit/emit-owm.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/adjust-x.d.mts +31 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/adjust-x.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/adjust-x.mjs +224 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/adjust-x.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/canonical-snap.d.mts +41 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/canonical-snap.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/canonical-snap.mjs +149 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/canonical-snap.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/compute-visibility.d.mts +47 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/compute-visibility.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/compute-visibility.mjs +298 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/compute-visibility.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/force-directed.d.mts +104 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/force-directed.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/force-directed.mjs +699 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/force-directed.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/place-labels.d.mts +14 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/place-labels.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/place-labels.mjs +70 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/place-labels.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/verify-layout.d.mts +35 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/verify-layout.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/verify-layout.mjs +131 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/layout/verify-layout.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/llm/extract-metadata.d.mts +17 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/llm/extract-metadata.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/llm/extract-metadata.mjs +58 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/lib/llm/extract-metadata.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/base-strategy.d.mts +22 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/base-strategy.mjs +33 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/registry.d.mts +17 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/registry.mjs +100 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/generate-chain.d.mts +15 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/generate-chain.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/generate-chain.mjs +131 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/generate-chain.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/top-down-strategy.d.mts +40 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/top-down-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/top-down-strategy.mjs +143 -0
- package/dist/frameworks/wardley/chain/_legacy/write/chain/strategies/top-down/top-down-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/capability/identify-capability.d.mts +42 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/capability/identify-capability.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/capability/identify-capability.mjs +134 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/capability/identify-capability.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/infer-capability-from-solution.d.mts +45 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/infer-capability-from-solution.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/infer-capability-from-solution.mjs +206 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/infer-capability-from-solution.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/wardley-type-classification.d.mts +37 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/wardley-type-classification.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/wardley-type-classification.mjs +154 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/classification/wardley-type-classification.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/concurrent-verification.d.mts +81 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/concurrent-verification.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/concurrent-verification.mjs +317 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/concurrent-verification.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/dual-verification-orchestrator.d.mts +99 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/dual-verification-orchestrator.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/dual-verification-orchestrator.mjs +288 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/dual-verification-orchestrator.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/signal-combiner.d.mts +131 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/signal-combiner.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/signal-combiner.mjs +435 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/signal-combiner.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-reconciliation.d.mts +60 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-reconciliation.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-reconciliation.mjs +182 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-reconciliation.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-signals.d.mts +62 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-signals.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-signals.mjs +123 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/verification-signals.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/web-search-verification.d.mts +93 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/web-search-verification.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/web-search-verification.mjs +464 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/lib/verification/web-search-verification.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/base-strategy.d.mts +22 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/base-strategy.mjs +33 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/registry.d.mts +17 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/registry.mjs +98 -0
- package/dist/frameworks/wardley/chain/_legacy/write/component/strategies/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/ast/schema-snapshot.d.mts +370 -0
- package/dist/frameworks/wardley/chain/ast/schema-snapshot.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/ast/schema-snapshot.mjs +147 -0
- package/dist/frameworks/wardley/chain/ast/schema-snapshot.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/ast/wardley-chain-ast.d.mts +224 -0
- package/dist/frameworks/wardley/chain/ast/wardley-chain-ast.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/ast/wardley-chain-ast.mjs +42 -0
- package/dist/frameworks/wardley/chain/ast/wardley-chain-ast.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/emit/owm/owm-emit-strategy.d.mts +16 -0
- package/dist/frameworks/wardley/chain/emit/owm/owm-emit-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/emit/owm/owm-emit-strategy.mjs +35 -0
- package/dist/frameworks/wardley/chain/emit/owm/owm-emit-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/read/map/owm-parser-strategy.d.mts +17 -0
- package/dist/frameworks/wardley/chain/read/map/owm-parser-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/read/map/owm-parser-strategy.mjs +45 -0
- package/dist/frameworks/wardley/chain/read/map/owm-parser-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/chain/registry.d.mts +7 -0
- package/dist/frameworks/wardley/chain/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/chain/registry.mjs +28 -0
- package/dist/frameworks/wardley/chain/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/inertia-analysis.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/inertia-analysis.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/inertia-analysis.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/inertia-analysis.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/list.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/list.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/list.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/climate/simon-wardley/inertia/list.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/kanban-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/kanban-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/kanban-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/kanban-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/list-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/list-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/list-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/climate/simon-wardley/list/list-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/climate/wiki/detail/wiki-url.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/climate/wiki/detail/wiki-url.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/climate/wiki/detail/wiki-url.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/climate/wiki/detail/wiki-url.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/climate/wiki/list/kanban-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/climate/wiki/list/kanban-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/climate/wiki/list/kanban-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/climate/wiki/list/kanban-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/climate/wiki/list/list-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/climate/wiki/list/list-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/climate/wiki/list/list-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/climate/wiki/list/list-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/phase-assessment.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/phase-assessment.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/phase-assessment.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/phase-assessment.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/three-judgement-assessment.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/three-judgement-assessment.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/three-judgement-assessment.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/doctrinal-analysis/three-judgement-assessment.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view-group-by-phase.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view-group-by-phase.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view-group-by-phase.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view-group-by-phase.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/kanban-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/list-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/list-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/list-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/list/list-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/organisation.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/organisation.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/organisation.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/organisation.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/personal.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/personal.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/personal.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/simon-wardley/pst-analysis/personal.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/detail/wiki-url.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/wiki/detail/wiki-url.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/detail/wiki-url.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/wiki/detail/wiki-url.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/doctrinal-analysis/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/wiki/doctrinal-analysis/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/doctrinal-analysis/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/wiki/doctrinal-analysis/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/kanban-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/kanban-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/kanban-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/kanban-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/phase-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/phase-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/phase-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/doctrine/wiki/list/phase-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/base-strategy.d.mts +22 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/base-strategy.mjs +36 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/registry.d.mts +17 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/registry.mjs +83 -0
- package/dist/frameworks/wardley/evolution/_legacy/read/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/estimate-evolution.d.mts +78 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/estimate-evolution.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/estimate-evolution.mjs +641 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/estimate-evolution.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/evaluate-map/evaluate-map.d.mts +48 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/evaluate-map/evaluate-map.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/evaluate-map/evaluate-map.mjs +435 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/evaluate-map/evaluate-map.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/lib/evolution-input-validation.d.mts +37 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/lib/evolution-input-validation.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/lib/evolution-input-validation.mjs +51 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/lib/evolution-input-validation.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-mapper.d.mts +128 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-mapper.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-mapper.mjs +298 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-mapper.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-taxonomy-cache.d.mts +91 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-taxonomy-cache.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-taxonomy-cache.mjs +319 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/patent/cpc-taxonomy-cache.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/pipeline/pipeline-enriched.d.mts +187 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/pipeline/pipeline-enriched.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/pipeline/pipeline-enriched.mjs +549 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/pipeline/pipeline-enriched.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/classification-gate.d.mts +19 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/classification-gate.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/classification-gate.mjs +192 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/classification-gate.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/detect-solution.d.mts +104 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/detect-solution.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/detect-solution.mjs +452 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/detect-solution.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/mode-router.d.mts +49 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/mode-router.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/mode-router.mjs +390 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/mode-router.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-capability-router.d.mts +4 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-capability-router.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-capability-router.mjs +36 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-capability-router.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-dispatch.d.mts +91 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-dispatch.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-dispatch.mjs +242 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/solution-dispatch.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/strategy-resolver.d.mts +20 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/strategy-resolver.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/strategy-resolver.mjs +32 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/routing/strategy-resolver.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve-transform.d.ts +3 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve-transform.d.ts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve-transform.js +96 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve-transform.js.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve.d.mts +37 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve.mjs +93 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/s-curve/s-curve.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/skill-handler.d.mts +99 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/skill-handler.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/skill-handler.mjs +609 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/skill-handler.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/anchor/estimate-anchor-evolution.d.mts +24 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/anchor/estimate-anchor-evolution.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/anchor/estimate-anchor-evolution.mjs +156 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/anchor/estimate-anchor-evolution.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/base-strategy.d.mts +72 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/base-strategy.mjs +98 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/cpc-evolution-strategy.d.mts +324 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/cpc-evolution-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/cpc-evolution-strategy.mjs +788 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/cpc-evolution-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/llm-direct-strategy.d.mts +18 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/llm-direct-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/llm-direct-strategy.mjs +98 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/llm-direct-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/logprob-distribution-strategy.d.mts +38 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/logprob-distribution-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/logprob-distribution-strategy.mjs +178 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/logprob-distribution-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/publication-analysis-strategy.d.mts +24 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/publication-analysis-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/publication-analysis-strategy.mjs +110 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/publication-analysis-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/registry.d.mts +28 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/registry.mjs +102 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/s-curve-strategy.d.mts +8 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/s-curve-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/s-curve-strategy.mjs +58 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/s-curve-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/timeline-benchmark-strategy.d.mts +63 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/timeline-benchmark-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/timeline-benchmark-strategy.mjs +287 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/capacity/timeline-benchmark-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/aggregate-properties.d.mts +197 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/aggregate-properties.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/aggregate-properties.mjs +416 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/aggregate-properties.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/assemble-result.d.mts +91 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/assemble-result.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/assemble-result.mjs +236 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/assemble-result.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/phase-classifier.d.mts +211 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/phase-classifier.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/phase-classifier.mjs +453 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/phase-classifier.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/properties-strategy.d.mts +113 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/properties-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/properties-strategy.mjs +549 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/properties-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/registry.d.mts +18 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/registry.mjs +73 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-base-strategy.d.mts +163 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-base-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-base-strategy.mjs +228 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-base-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-evolution-result.d.mts +361 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-evolution-result.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-evolution-result.mjs +604 -0
- package/dist/frameworks/wardley/evolution/_legacy/write/strategies/solution/solution-evolution-result.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/ast/wardley-evolution-ast.d.mts +135 -0
- package/dist/frameworks/wardley/evolution/ast/wardley-evolution-ast.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/ast/wardley-evolution-ast.mjs +94 -0
- package/dist/frameworks/wardley/evolution/ast/wardley-evolution-ast.mjs.map +1 -0
- package/dist/frameworks/wardley/evolution/registry.d.mts +8 -0
- package/dist/frameworks/wardley/evolution/registry.d.mts.map +1 -0
- package/dist/frameworks/wardley/evolution/registry.mjs +42 -0
- package/dist/frameworks/wardley/evolution/registry.mjs.map +1 -0
- package/dist/frameworks/wardley/gameplay/simon-wardley/list/list-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/gameplay/simon-wardley/list/list-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/gameplay/simon-wardley/list/list-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/gameplay/simon-wardley/list/list-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/gameplay/wiki/detail/wiki-url.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/gameplay/wiki/detail/wiki-url.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/gameplay/wiki/detail/wiki-url.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/gameplay/wiki/detail/wiki-url.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/gameplay/wiki/list/list-view.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/gameplay/wiki/list/list-view.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/gameplay/wiki/list/list-view.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/gameplay/wiki/list/list-view.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/act/next-step/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/act/next-step/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/act/next-step/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/act/next-step/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/decide/next-step/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/decide/next-step/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/decide/next-step/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/decide/next-step/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/observe/next-step/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/observe/next-step/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/observe/next-step/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/observe/next-step/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/orient/next-step/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/orient/next-step/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/orient/next-step/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/orient/next-step/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/purpose/audit-purpose-quality/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/purpose/audit-purpose-quality/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/purpose/audit-purpose-quality/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/purpose/audit-purpose-quality/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/purpose/generate/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/purpose/generate/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/purpose/generate/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/purpose/generate/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/explain/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/explain/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/explain/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/explain/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/guide/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/guide/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/guide/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/strategy-cycle/guide/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/why-of-movement/guide/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/why-of-movement/guide/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/why-of-movement/guide/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/why-of-movement/guide/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/iteration/why-of-purpose/guide/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/iteration/why-of-purpose/guide/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/iteration/why-of-purpose/guide/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/iteration/why-of-purpose/guide/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.d.mts +13 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.mjs +47 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.mjs.map +1 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/basemap/generate/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/climate/identify/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/climate/identify/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/climate/identify/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/climate/identify/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/climate/identify-method-issues/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/climate/identify-method-issues/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/climate/identify-method-issues/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/climate/identify-method-issues/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/climate/inertia-identification/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/climate/inertia-identification/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/climate/inertia-identification/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/climate/inertia-identification/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/climate/position-value-chain-in-evolution/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/climate/position-value-chain-in-evolution/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/climate/position-value-chain-in-evolution/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/climate/position-value-chain-in-evolution/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/config/x-axis/custom.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/config/x-axis/custom.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/config/x-axis/custom.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/config/x-axis/custom.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/config/x-axis/standard.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/config/x-axis/standard.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/config/x-axis/standard.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/config/x-axis/standard.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/config/y-axis/custom.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/config/y-axis/custom.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/config/y-axis/custom.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/config/y-axis/custom.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/config/y-axis/standard.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/config/y-axis/standard.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/config/y-axis/standard.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/config/y-axis/standard.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/doctrine/identify-the-method/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/doctrine/identify-the-method/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/doctrine/identify-the-method/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/doctrine/identify-the-method/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/doctrine/orient-path-where-to-invest/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/doctrine/orient-path-where-to-invest/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/doctrine/orient-path-where-to-invest/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/doctrine/orient-path-where-to-invest/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/gameplay/recommend-strategy-over-the-map/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/gameplay/recommend-strategy-over-the-map/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/gameplay/recommend-strategy-over-the-map/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/gameplay/recommend-strategy-over-the-map/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/node/classify-point-of-change/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/node/classify-point-of-change/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/node/classify-point-of-change/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/node/classify-point-of-change/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/node/generate-node-from-pipeline/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/node/generate-node-from-pipeline/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/node/generate-node-from-pipeline/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/node/generate-node-from-pipeline/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline-from-component/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline-from-component/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline-from-component/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/node/generate-pipeline-from-component/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/node/identify-method/buy-policy.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/node/identify-method/buy-policy.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/node/identify-method/buy-policy.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/node/identify-method/buy-policy.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/node/identify-method/project-management.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/node/identify-method/project-management.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/node/identify-method/project-management.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/node/identify-method/project-management.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/node/identify-point-of-change/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/node/identify-point-of-change/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/node/identify-point-of-change/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/node/identify-point-of-change/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/output/read/where-to-invest.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/output/read/where-to-invest.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/output/read/where-to-invest.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/output/read/where-to-invest.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/output/update/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/output/update/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/output/update/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/output/update/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/quality/audit/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/quality/audit/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/quality/audit/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/quality/audit/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/audit/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/value-chain/audit/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/audit/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/value-chain/audit/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/generate/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/value-chain/generate/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/generate/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/value-chain/generate/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/generate/top-down.d.mts +13 -0
- package/dist/frameworks/wardley/map/value-chain/generate/top-down.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/generate/top-down.mjs +105 -0
- package/dist/frameworks/wardley/map/value-chain/generate/top-down.mjs.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.d.mts +8 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.mjs +182 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.mjs.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/value-chain/organized-y-position/default.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/read/pipeline-opportunity.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/value-chain/read/pipeline-opportunity.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/read/pipeline-opportunity.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/value-chain/read/pipeline-opportunity.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/select-by-type/component.d.mts +8 -0
- package/dist/frameworks/wardley/map/value-chain/select-by-type/component.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/value-chain/select-by-type/component.mjs +66 -0
- package/dist/frameworks/wardley/map/value-chain/select-by-type/component.mjs.map +1 -0
- package/dist/frameworks/wardley/map/zonage/generate/coherent-cluster.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/zonage/generate/coherent-cluster.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/zonage/generate/coherent-cluster.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/zonage/generate/coherent-cluster.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/zonage/generate/pst-analysis.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/zonage/generate/pst-analysis.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/zonage/generate/pst-analysis.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/zonage/generate/pst-analysis.mock-strategy.mjs.map +1 -0
- package/dist/frameworks/wardley/map/zonage/generate/teams.mock-strategy.d.mts +15 -0
- package/dist/frameworks/wardley/map/zonage/generate/teams.mock-strategy.d.mts.map +1 -0
- package/dist/frameworks/wardley/map/zonage/generate/teams.mock-strategy.mjs +21 -0
- package/dist/frameworks/wardley/map/zonage/generate/teams.mock-strategy.mjs.map +1 -0
- package/dist/index.d.mts +4 -0
- package/dist/index.d.mts.map +1 -0
- package/dist/index.mjs +10 -0
- package/dist/index.mjs.map +1 -0
- package/dist/lib/component-detection.d.mts +161 -0
- package/dist/lib/component-detection.d.mts.map +1 -0
- package/dist/lib/component-detection.mjs +267 -0
- package/dist/lib/component-detection.mjs.map +1 -0
- package/dist/lib/degradation/collector.d.mts +50 -0
- package/dist/lib/degradation/collector.d.mts.map +1 -0
- package/dist/lib/degradation/collector.mjs +93 -0
- package/dist/lib/degradation/collector.mjs.map +1 -0
- package/dist/lib/degradation/context.d.mts +22 -0
- package/dist/lib/degradation/context.d.mts.map +1 -0
- package/dist/lib/degradation/context.mjs +39 -0
- package/dist/lib/degradation/context.mjs.map +1 -0
- package/dist/lib/degradation/index.d.mts +9 -0
- package/dist/lib/degradation/index.d.mts.map +1 -0
- package/dist/lib/degradation/index.mjs +17 -0
- package/dist/lib/degradation/index.mjs.map +1 -0
- package/dist/lib/degradation/mcp-wrapper.d.mts +27 -0
- package/dist/lib/degradation/mcp-wrapper.d.mts.map +1 -0
- package/dist/lib/degradation/mcp-wrapper.mjs +45 -0
- package/dist/lib/degradation/mcp-wrapper.mjs.map +1 -0
- package/dist/lib/degradation/registry.d.mts +32 -0
- package/dist/lib/degradation/registry.d.mts.map +1 -0
- package/dist/lib/degradation/registry.mjs +79 -0
- package/dist/lib/degradation/registry.mjs.map +1 -0
- package/dist/lib/degradation/types.d.mts +41 -0
- package/dist/lib/degradation/types.d.mts.map +1 -0
- package/dist/lib/degradation/types.mjs +10 -0
- package/dist/lib/degradation/types.mjs.map +1 -0
- package/dist/lib/degradation/with-degradation.d.mts +34 -0
- package/dist/lib/degradation/with-degradation.d.mts.map +1 -0
- package/dist/lib/degradation/with-degradation.mjs +51 -0
- package/dist/lib/degradation/with-degradation.mjs.map +1 -0
- package/dist/lib/errors.d.mts +10 -0
- package/dist/lib/errors.d.mts.map +1 -0
- package/dist/lib/errors.mjs +33 -0
- package/dist/lib/errors.mjs.map +1 -0
- package/dist/lib/known-dictionaries.d.mts +38 -0
- package/dist/lib/known-dictionaries.d.mts.map +1 -0
- package/dist/lib/known-dictionaries.mjs +326 -0
- package/dist/lib/known-dictionaries.mjs.map +1 -0
- package/dist/lib/language-detect.d.mts +33 -0
- package/dist/lib/language-detect.d.mts.map +1 -0
- package/dist/lib/language-detect.mjs +217 -0
- package/dist/lib/language-detect.mjs.map +1 -0
- package/dist/lib/llm/config.loader.d.mts +6 -0
- package/dist/lib/llm/config.loader.d.mts.map +1 -0
- package/dist/lib/llm/config.loader.mjs +51 -0
- package/dist/lib/llm/config.loader.mjs.map +1 -0
- package/dist/lib/llm/config.schema.d.mts +60 -0
- package/dist/lib/llm/config.schema.d.mts.map +1 -0
- package/dist/lib/llm/config.schema.mjs +49 -0
- package/dist/lib/llm/config.schema.mjs.map +1 -0
- package/dist/lib/llm/copilot-sdk-call.d.mts +21 -0
- package/dist/lib/llm/copilot-sdk-call.d.mts.map +1 -0
- package/dist/lib/llm/copilot-sdk-call.mjs +211 -0
- package/dist/lib/llm/copilot-sdk-call.mjs.map +1 -0
- package/dist/lib/llm/llm-call.d.mts +18 -0
- package/dist/lib/llm/llm-call.d.mts.map +1 -0
- package/dist/lib/llm/llm-call.mjs +286 -0
- package/dist/lib/llm/llm-call.mjs.map +1 -0
- package/dist/lib/llm/llm-error-handler.d.mts +40 -0
- package/dist/lib/llm/llm-error-handler.d.mts.map +1 -0
- package/dist/lib/llm/llm-error-handler.mjs +159 -0
- package/dist/lib/llm/llm-error-handler.mjs.map +1 -0
- package/dist/lib/llm/providers/agent-sdk-provider.d.mts +3 -0
- package/dist/lib/llm/providers/agent-sdk-provider.d.mts.map +1 -0
- package/dist/lib/llm/providers/agent-sdk-provider.mjs +29 -0
- package/dist/lib/llm/providers/agent-sdk-provider.mjs.map +1 -0
- package/dist/lib/llm/providers/copilot-sdk-provider.d.mts +4 -0
- package/dist/lib/llm/providers/copilot-sdk-provider.d.mts.map +1 -0
- package/dist/lib/llm/providers/copilot-sdk-provider.mjs +37 -0
- package/dist/lib/llm/providers/copilot-sdk-provider.mjs.map +1 -0
- package/dist/lib/llm/providers/http-api-provider.d.mts +4 -0
- package/dist/lib/llm/providers/http-api-provider.d.mts.map +1 -0
- package/dist/lib/llm/providers/http-api-provider.mjs +35 -0
- package/dist/lib/llm/providers/http-api-provider.mjs.map +1 -0
- package/dist/lib/llm/providers/provider.types.d.mts +15 -0
- package/dist/lib/llm/providers/provider.types.d.mts.map +1 -0
- package/dist/lib/llm/providers/provider.types.mjs +11 -0
- package/dist/lib/llm/providers/provider.types.mjs.map +1 -0
- package/dist/lib/llm/registry.d.mts +11 -0
- package/dist/lib/llm/registry.d.mts.map +1 -0
- package/dist/lib/llm/registry.mjs +126 -0
- package/dist/lib/llm/registry.mjs.map +1 -0
- package/dist/lib/llm/strategy-ids.d.mts +17 -0
- package/dist/lib/llm/strategy-ids.d.mts.map +1 -0
- package/dist/lib/llm/strategy-ids.mjs +19 -0
- package/dist/lib/llm/strategy-ids.mjs.map +1 -0
- package/dist/lib/mcp-notifications.d.mts +63 -0
- package/dist/lib/mcp-notifications.d.mts.map +1 -0
- package/dist/lib/mcp-notifications.mjs +130 -0
- package/dist/lib/mcp-notifications.mjs.map +1 -0
- package/dist/lib/owm/analytical-geometry.d.mts +26 -0
- package/dist/lib/owm/analytical-geometry.d.mts.map +1 -0
- package/dist/lib/owm/analytical-geometry.mjs +116 -0
- package/dist/lib/owm/analytical-geometry.mjs.map +1 -0
- package/dist/lib/owm/cli-owm-adapter.d.mts +5 -0
- package/dist/lib/owm/cli-owm-adapter.d.mts.map +1 -0
- package/dist/lib/owm/cli-owm-adapter.mjs +26 -0
- package/dist/lib/owm/cli-owm-adapter.mjs.map +1 -0
- package/dist/lib/owm/overlap-detector.d.mts +93 -0
- package/dist/lib/owm/overlap-detector.d.mts.map +1 -0
- package/dist/lib/owm/overlap-detector.mjs +325 -0
- package/dist/lib/owm/overlap-detector.mjs.map +1 -0
- package/dist/lib/owm/owm-dsl.d.mts +123 -0
- package/dist/lib/owm/owm-dsl.d.mts.map +1 -0
- package/dist/lib/owm/owm-dsl.mjs +330 -0
- package/dist/lib/owm/owm-dsl.mjs.map +1 -0
- package/dist/lib/owm/render-adapter.d.mts +8 -0
- package/dist/lib/owm/render-adapter.d.mts.map +1 -0
- package/dist/lib/owm/render-adapter.mjs +19 -0
- package/dist/lib/owm/render-adapter.mjs.map +1 -0
- package/dist/lib/owm/svg-bbox-parser.d.mts +77 -0
- package/dist/lib/owm/svg-bbox-parser.d.mts.map +1 -0
- package/dist/lib/owm/svg-bbox-parser.mjs +251 -0
- package/dist/lib/owm/svg-bbox-parser.mjs.map +1 -0
- package/dist/lib/patent/bigquery-client.d.mts +124 -0
- package/dist/lib/patent/bigquery-client.d.mts.map +1 -0
- package/dist/lib/patent/bigquery-client.mjs +298 -0
- package/dist/lib/patent/bigquery-client.mjs.map +1 -0
- package/dist/lib/patent/bigquery-patent-constants.d.mts +10 -0
- package/dist/lib/patent/bigquery-patent-constants.d.mts.map +1 -0
- package/dist/lib/patent/bigquery-patent-constants.mjs +18 -0
- package/dist/lib/patent/bigquery-patent-constants.mjs.map +1 -0
- package/dist/lib/patent/bigquery-patent-source.d.mts +216 -0
- package/dist/lib/patent/bigquery-patent-source.d.mts.map +1 -0
- package/dist/lib/patent/bigquery-patent-source.mjs +488 -0
- package/dist/lib/patent/bigquery-patent-source.mjs.map +1 -0
- package/dist/lib/patent/bigquery-query-builders.d.mts +205 -0
- package/dist/lib/patent/bigquery-query-builders.d.mts.map +1 -0
- package/dist/lib/patent/bigquery-query-builders.mjs +538 -0
- package/dist/lib/patent/bigquery-query-builders.mjs.map +1 -0
- package/dist/lib/patent/mock-patent-source.d.mts +285 -0
- package/dist/lib/patent/mock-patent-source.d.mts.map +1 -0
- package/dist/lib/patent/mock-patent-source.mjs +321 -0
- package/dist/lib/patent/mock-patent-source.mjs.map +1 -0
- package/dist/lib/patent/patent-data-source.d.mts +176 -0
- package/dist/lib/patent/patent-data-source.d.mts.map +1 -0
- package/dist/lib/patent/patent-data-source.mjs +124 -0
- package/dist/lib/patent/patent-data-source.mjs.map +1 -0
- package/dist/lib/patent/patent-indicators.d.mts +162 -0
- package/dist/lib/patent/patent-indicators.d.mts.map +1 -0
- package/dist/lib/patent/patent-indicators.mjs +374 -0
- package/dist/lib/patent/patent-indicators.mjs.map +1 -0
- package/dist/lib/phase-distribution.d.mts +21 -0
- package/dist/lib/phase-distribution.d.mts.map +1 -0
- package/dist/lib/phase-distribution.mjs +66 -0
- package/dist/lib/phase-distribution.mjs.map +1 -0
- package/dist/lib/progress-messages.d.mts +377 -0
- package/dist/lib/progress-messages.d.mts.map +1 -0
- package/dist/lib/progress-messages.mjs +408 -0
- package/dist/lib/progress-messages.mjs.map +1 -0
- package/dist/lib/prompts/builders-registry.d.mts +12 -0
- package/dist/lib/prompts/builders-registry.d.mts.map +1 -0
- package/dist/lib/prompts/builders-registry.mjs +31 -0
- package/dist/lib/prompts/builders-registry.mjs.map +1 -0
- package/dist/lib/prompts/config.loader.d.mts +21 -0
- package/dist/lib/prompts/config.loader.d.mts.map +1 -0
- package/dist/lib/prompts/config.loader.mjs +143 -0
- package/dist/lib/prompts/config.loader.mjs.map +1 -0
- package/dist/lib/prompts/init.d.mts +2 -0
- package/dist/lib/prompts/init.d.mts.map +1 -0
- package/dist/lib/prompts/init.mjs +43 -0
- package/dist/lib/prompts/init.mjs.map +1 -0
- package/dist/lib/prompts/interpolate.d.mts +2 -0
- package/dist/lib/prompts/interpolate.d.mts.map +1 -0
- package/dist/lib/prompts/interpolate.mjs +12 -0
- package/dist/lib/prompts/interpolate.mjs.map +1 -0
- package/dist/lib/prompts/parsers-registry.d.mts +7 -0
- package/dist/lib/prompts/parsers-registry.d.mts.map +1 -0
- package/dist/lib/prompts/parsers-registry.mjs +27 -0
- package/dist/lib/prompts/parsers-registry.mjs.map +1 -0
- package/dist/lib/prompts/parsers.d.mts +13 -0
- package/dist/lib/prompts/parsers.d.mts.map +1 -0
- package/dist/lib/prompts/parsers.mjs +29 -0
- package/dist/lib/prompts/parsers.mjs.map +1 -0
- package/dist/lib/prompts/prompts.schema.d.mts +92 -0
- package/dist/lib/prompts/prompts.schema.d.mts.map +1 -0
- package/dist/lib/prompts/prompts.schema.mjs +50 -0
- package/dist/lib/prompts/prompts.schema.mjs.map +1 -0
- package/dist/lib/prompts/registry.d.mts +14 -0
- package/dist/lib/prompts/registry.d.mts.map +1 -0
- package/dist/lib/prompts/registry.mjs +100 -0
- package/dist/lib/prompts/registry.mjs.map +1 -0
- package/dist/lib/response-formatter.d.mts +115 -0
- package/dist/lib/response-formatter.d.mts.map +1 -0
- package/dist/lib/response-formatter.mjs +591 -0
- package/dist/lib/response-formatter.mjs.map +1 -0
- package/dist/lib/tool-config/loader.d.mts +8 -0
- package/dist/lib/tool-config/loader.d.mts.map +1 -0
- package/dist/lib/tool-config/loader.mjs +63 -0
- package/dist/lib/tool-config/loader.mjs.map +1 -0
- package/dist/lib/tool-config/tool-config.schema.d.mts +19 -0
- package/dist/lib/tool-config/tool-config.schema.d.mts.map +1 -0
- package/dist/lib/tool-config/tool-config.schema.mjs +32 -0
- package/dist/lib/tool-config/tool-config.schema.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/index.d.mts +8 -0
- package/dist/lib/vendor/cli-owm/index.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/index.mjs +20 -0
- package/dist/lib/vendor/cli-owm/index.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/BaseStrategyRunner.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/BaseStrategyRunner.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/BaseStrategyRunner.mjs +44 -0
- package/dist/lib/vendor/cli-owm/parser/BaseStrategyRunner.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/Converter.d.mts +10 -0
- package/dist/lib/vendor/cli-owm/parser/Converter.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/Converter.mjs +98 -0
- package/dist/lib/vendor/cli-owm/parser/Converter.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/ParseError.d.mts +5 -0
- package/dist/lib/vendor/cli-owm/parser/ParseError.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/ParseError.mjs +9 -0
- package/dist/lib/vendor/cli-owm/parser/ParseError.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/PipelineStrategyRunner.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/PipelineStrategyRunner.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/PipelineStrategyRunner.mjs +94 -0
- package/dist/lib/vendor/cli-owm/parser/PipelineStrategyRunner.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/UnifiedConverter.d.mts +21 -0
- package/dist/lib/vendor/cli-owm/parser/UnifiedConverter.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/UnifiedConverter.mjs +137 -0
- package/dist/lib/vendor/cli-owm/parser/UnifiedConverter.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/defaults.d.mts +11 -0
- package/dist/lib/vendor/cli-owm/parser/defaults.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/defaults.mjs +7 -0
- package/dist/lib/vendor/cli-owm/parser/defaults.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/extractionFunctions.d.mts +114 -0
- package/dist/lib/vendor/cli-owm/parser/extractionFunctions.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/extractionFunctions.mjs +286 -0
- package/dist/lib/vendor/cli-owm/parser/extractionFunctions.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AcceleratorExtractionStrategy.d.mts +13 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AcceleratorExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AcceleratorExtractionStrategy.mjs +26 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AcceleratorExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnchorExtractionStrategy.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnchorExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnchorExtractionStrategy.mjs +23 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnchorExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnnotationExtractionStrategy.d.mts +14 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnnotationExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnnotationExtractionStrategy.mjs +27 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AnnotationExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AttitudeExtractionStrategy.d.mts +13 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AttitudeExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AttitudeExtractionStrategy.mjs +26 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/AttitudeExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ComponentExtractionStrategy.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ComponentExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ComponentExtractionStrategy.mjs +43 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ComponentExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/EvolveExtractionStrategy.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/EvolveExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/EvolveExtractionStrategy.mjs +24 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/EvolveExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ExtendableComponentExtractionStrategy.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ExtendableComponentExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ExtendableComponentExtractionStrategy.mjs +29 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/ExtendableComponentExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/LinksExtractionStrategy.d.mts +29 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/LinksExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/LinksExtractionStrategy.mjs +122 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/LinksExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/NoteExtractionStrategy.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/NoteExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/NoteExtractionStrategy.mjs +22 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/NoteExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PipelineExtractionStrategy.d.mts +10 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PipelineExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PipelineExtractionStrategy.mjs +32 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PipelineExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PresentationExtractionStrategy.d.mts +10 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PresentationExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PresentationExtractionStrategy.mjs +36 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/PresentationExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/SubMapExtractionStrategy.d.mts +15 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/SubMapExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/SubMapExtractionStrategy.mjs +19 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/SubMapExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/TitleExtractionStrategy.d.mts +10 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/TitleExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/TitleExtractionStrategy.mjs +19 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/TitleExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/UrlExtractionStrategy.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/UrlExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/UrlExtractionStrategy.mjs +22 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/UrlExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/XAxisLabelsExtractionStrategy.d.mts +17 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/XAxisLabelsExtractionStrategy.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/XAxisLabelsExtractionStrategy.mjs +40 -0
- package/dist/lib/vendor/cli-owm/parser/strategies/XAxisLabelsExtractionStrategy.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/base.d.mts +191 -0
- package/dist/lib/vendor/cli-owm/parser/types/base.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/base.mjs +2 -0
- package/dist/lib/vendor/cli-owm/parser/types/base.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/components.d.mts +88 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/components.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/components.mjs +60 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/components.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/index.d.mts +7 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/index.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/index.mjs +4 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/index.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/links.d.mts +33 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/links.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/links.mjs +24 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/links.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/map.d.mts +34 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/map.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/map.mjs +35 -0
- package/dist/lib/vendor/cli-owm/parser/types/unified/map.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/render.d.mts +24 -0
- package/dist/lib/vendor/cli-owm/render.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/render.mjs +453 -0
- package/dist/lib/vendor/cli-owm/render.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/themes.d.mts +113 -0
- package/dist/lib/vendor/cli-owm/themes.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/themes.mjs +226 -0
- package/dist/lib/vendor/cli-owm/themes.mjs.map +1 -0
- package/dist/lib/vendor/cli-owm/version.d.mts +2 -0
- package/dist/lib/vendor/cli-owm/version.d.mts.map +1 -0
- package/dist/lib/vendor/cli-owm/version.mjs +2 -0
- package/dist/lib/vendor/cli-owm/version.mjs.map +1 -0
- package/dist/lib/zod/validate-or-throw.d.mts +15 -0
- package/dist/lib/zod/validate-or-throw.d.mts.map +1 -0
- package/dist/lib/zod/validate-or-throw.mjs +30 -0
- package/dist/lib/zod/validate-or-throw.mjs.map +1 -0
- package/dist/mcp/boot-health-checks.d.mts +7 -0
- package/dist/mcp/boot-health-checks.d.mts.map +1 -0
- package/dist/mcp/boot-health-checks.mjs +114 -0
- package/dist/mcp/boot-health-checks.mjs.map +1 -0
- package/dist/mcp/estimate-anchor-evolution.tool.d.mts +4 -0
- package/dist/mcp/estimate-anchor-evolution.tool.d.mts.map +1 -0
- package/dist/mcp/estimate-anchor-evolution.tool.mjs +22 -0
- package/dist/mcp/estimate-anchor-evolution.tool.mjs.map +1 -0
- package/dist/mcp/estimate-evolution-via-recipe.d.mts +14 -0
- package/dist/mcp/estimate-evolution-via-recipe.d.mts.map +1 -0
- package/dist/mcp/estimate-evolution-via-recipe.mjs +67 -0
- package/dist/mcp/estimate-evolution-via-recipe.mjs.map +1 -0
- package/dist/mcp/estimate-evolution.tool.d.mts +3 -0
- package/dist/mcp/estimate-evolution.tool.d.mts.map +1 -0
- package/dist/mcp/estimate-evolution.tool.mjs +27 -0
- package/dist/mcp/estimate-evolution.tool.mjs.map +1 -0
- package/dist/mcp/evaluate-map.tool.d.mts +4 -0
- package/dist/mcp/evaluate-map.tool.d.mts.map +1 -0
- package/dist/mcp/evaluate-map.tool.mjs +22 -0
- package/dist/mcp/evaluate-map.tool.mjs.map +1 -0
- package/dist/mcp/generate-value-chain.tool.d.mts +10 -0
- package/dist/mcp/generate-value-chain.tool.d.mts.map +1 -0
- package/dist/mcp/generate-value-chain.tool.mjs +33 -0
- package/dist/mcp/generate-value-chain.tool.mjs.map +1 -0
- package/dist/mcp/identify-capability.tool.d.mts +4 -0
- package/dist/mcp/identify-capability.tool.d.mts.map +1 -0
- package/dist/mcp/identify-capability.tool.mjs +31 -0
- package/dist/mcp/identify-capability.tool.mjs.map +1 -0
- package/dist/mcp/mcp-server.d.mts +29 -0
- package/dist/mcp/mcp-server.d.mts.map +1 -0
- package/dist/mcp/mcp-server.mjs +282 -0
- package/dist/mcp/mcp-server.mjs.map +1 -0
- package/dist/mcp/mcp-tool.d.mts +36 -0
- package/dist/mcp/mcp-tool.d.mts.map +1 -0
- package/dist/mcp/mcp-tool.mjs +144 -0
- package/dist/mcp/mcp-tool.mjs.map +1 -0
- package/dist/mcp/resolve-context.d.mts +3 -0
- package/dist/mcp/resolve-context.d.mts.map +1 -0
- package/dist/mcp/resolve-context.mjs +28 -0
- package/dist/mcp/resolve-context.mjs.map +1 -0
- package/dist/mcp/run-command.tool.d.mts +3 -0
- package/dist/mcp/run-command.tool.d.mts.map +1 -0
- package/dist/mcp/run-command.tool.mjs +70 -0
- package/dist/mcp/run-command.tool.mjs.map +1 -0
- package/dist/mcp/run-recipe.tool.d.mts +13 -0
- package/dist/mcp/run-recipe.tool.d.mts.map +1 -0
- package/dist/mcp/run-recipe.tool.mjs +79 -0
- package/dist/mcp/run-recipe.tool.mjs.map +1 -0
- package/dist/mcp/shipped-root.d.mts +2 -0
- package/dist/mcp/shipped-root.d.mts.map +1 -0
- package/dist/mcp/shipped-root.mjs +16 -0
- package/dist/mcp/shipped-root.mjs.map +1 -0
- package/dist/schemas/command.schema.d.mts +95 -0
- package/dist/schemas/command.schema.d.mts.map +1 -0
- package/dist/schemas/command.schema.mjs +84 -0
- package/dist/schemas/command.schema.mjs.map +1 -0
- package/dist/schemas/domain.schema.d.mts +63 -0
- package/dist/schemas/domain.schema.d.mts.map +1 -0
- package/dist/schemas/domain.schema.mjs +53 -0
- package/dist/schemas/domain.schema.mjs.map +1 -0
- package/dist/schemas/estimate-anchor-evolution.schema.d.mts +8 -0
- package/dist/schemas/estimate-anchor-evolution.schema.d.mts.map +1 -0
- package/dist/schemas/estimate-anchor-evolution.schema.mjs +9 -0
- package/dist/schemas/estimate-anchor-evolution.schema.mjs.map +1 -0
- package/dist/schemas/estimate-evolution.schema.d.mts +30 -0
- package/dist/schemas/estimate-evolution.schema.d.mts.map +1 -0
- package/dist/schemas/estimate-evolution.schema.mjs +41 -0
- package/dist/schemas/estimate-evolution.schema.mjs.map +1 -0
- package/dist/schemas/evaluate-map.schema.d.mts +8 -0
- package/dist/schemas/evaluate-map.schema.d.mts.map +1 -0
- package/dist/schemas/evaluate-map.schema.mjs +10 -0
- package/dist/schemas/evaluate-map.schema.mjs.map +1 -0
- package/dist/schemas/generate-value-chain.schema.d.mts +30 -0
- package/dist/schemas/generate-value-chain.schema.d.mts.map +1 -0
- package/dist/schemas/generate-value-chain.schema.mjs +19 -0
- package/dist/schemas/generate-value-chain.schema.mjs.map +1 -0
- package/dist/schemas/identify-capability.schema.d.mts +15 -0
- package/dist/schemas/identify-capability.schema.d.mts.map +1 -0
- package/dist/schemas/identify-capability.schema.mjs +9 -0
- package/dist/schemas/identify-capability.schema.mjs.map +1 -0
- package/dist/schemas/inputs.schema.d.mts +150 -0
- package/dist/schemas/inputs.schema.d.mts.map +1 -0
- package/dist/schemas/inputs.schema.mjs +107 -0
- package/dist/schemas/inputs.schema.mjs.map +1 -0
- package/dist/schemas/json-labre.schema.d.mts +3591 -0
- package/dist/schemas/json-labre.schema.d.mts.map +1 -0
- package/dist/schemas/json-labre.schema.mjs +30 -0
- package/dist/schemas/json-labre.schema.mjs.map +1 -0
- package/dist/schemas/parsed-llm.schema.d.mts +33 -0
- package/dist/schemas/parsed-llm.schema.d.mts.map +1 -0
- package/dist/schemas/parsed-llm.schema.mjs +29 -0
- package/dist/schemas/parsed-llm.schema.mjs.map +1 -0
- package/dist/schemas/patent.schema.d.mts +79 -0
- package/dist/schemas/patent.schema.d.mts.map +1 -0
- package/dist/schemas/patent.schema.mjs +50 -0
- package/dist/schemas/patent.schema.mjs.map +1 -0
- package/dist/schemas/render-config-passthrough.d.mts +5 -0
- package/dist/schemas/render-config-passthrough.d.mts.map +1 -0
- package/dist/schemas/render-config-passthrough.mjs +25 -0
- package/dist/schemas/render-config-passthrough.mjs.map +1 -0
- package/dist/schemas/results.schema.d.mts +57 -0
- package/dist/schemas/results.schema.d.mts.map +1 -0
- package/dist/schemas/results.schema.mjs +36 -0
- package/dist/schemas/results.schema.mjs.map +1 -0
- package/dist/schemas/run-recipe.schema.d.mts +7 -0
- package/dist/schemas/run-recipe.schema.d.mts.map +1 -0
- package/dist/schemas/run-recipe.schema.mjs +19 -0
- package/dist/schemas/run-recipe.schema.mjs.map +1 -0
- package/dist/schemas/value-chain.schema.d.mts +112 -0
- package/dist/schemas/value-chain.schema.d.mts.map +1 -0
- package/dist/schemas/value-chain.schema.mjs +50 -0
- package/dist/schemas/value-chain.schema.mjs.map +1 -0
- package/dist/schemas/wardley-map.schema.d.mts +2 -0
- package/dist/schemas/wardley-map.schema.d.mts.map +1 -0
- package/dist/schemas/wardley-map.schema.mjs +11 -0
- package/dist/schemas/wardley-map.schema.mjs.map +1 -0
- package/dist/session/conversation-session.d.mts +147 -0
- package/dist/session/conversation-session.d.mts.map +1 -0
- package/dist/session/conversation-session.mjs +685 -0
- package/dist/session/conversation-session.mjs.map +1 -0
- package/dist/types/classification.d.mts +14 -0
- package/dist/types/classification.d.mts.map +1 -0
- package/dist/types/classification.mjs +6 -0
- package/dist/types/classification.mjs.map +1 -0
- package/dist/types/evolution.d.mts +3 -0
- package/dist/types/evolution.d.mts.map +1 -0
- package/dist/types/evolution.mjs +7 -0
- package/dist/types/evolution.mjs.map +1 -0
- package/dist/types/index.d.mts +7 -0
- package/dist/types/index.d.mts.map +1 -0
- package/dist/types/index.mjs +10 -0
- package/dist/types/index.mjs.map +1 -0
- package/dist/types/llm.d.mts +58 -0
- package/dist/types/llm.d.mts.map +1 -0
- package/dist/types/llm.mjs +9 -0
- package/dist/types/llm.mjs.map +1 -0
- package/dist/types/mcp.d.mts +70 -0
- package/dist/types/mcp.d.mts.map +1 -0
- package/dist/types/mcp.mjs +6 -0
- package/dist/types/mcp.mjs.map +1 -0
- package/dist/types/patent.d.mts +55 -0
- package/dist/types/patent.d.mts.map +1 -0
- package/dist/types/patent.mjs +7 -0
- package/dist/types/patent.mjs.map +1 -0
- package/dist/types/pipeline.d.mts +65 -0
- package/dist/types/pipeline.d.mts.map +1 -0
- package/dist/types/pipeline.mjs +6 -0
- package/dist/types/pipeline.mjs.map +1 -0
- package/dist/types/routing.d.mts +113 -0
- package/dist/types/routing.d.mts.map +1 -0
- package/dist/types/routing.mjs +7 -0
- package/dist/types/routing.mjs.map +1 -0
- package/dist/types/session.d.mts +41 -0
- package/dist/types/session.d.mts.map +1 -0
- package/dist/types/session.mjs +6 -0
- package/dist/types/session.mjs.map +1 -0
- package/dist/types/solution.d.mts +3 -0
- package/dist/types/solution.d.mts.map +1 -0
- package/dist/types/solution.mjs +6 -0
- package/dist/types/solution.mjs.map +1 -0
- package/dist/types/value-chain.d.mts +53 -0
- package/dist/types/value-chain.d.mts.map +1 -0
- package/dist/types/value-chain.mjs +12 -0
- package/dist/types/value-chain.mjs.map +1 -0
- package/dist/types/wm-map.d.mts +83 -0
- package/dist/types/wm-map.d.mts.map +1 -0
- package/dist/types/wm-map.mjs +5 -0
- package/dist/types/wm-map.mjs.map +1 -0
- package/dist/work-on-evolution/estimate-evolution.d.mts +58 -0
- package/dist/work-on-evolution/estimate-evolution.d.mts.map +1 -0
- package/dist/work-on-evolution/estimate-evolution.mjs +621 -0
- package/dist/work-on-evolution/estimate-evolution.mjs.map +1 -0
- package/dist/work-on-evolution/evaluate-map/evaluate-map.d.mts +56 -0
- package/dist/work-on-evolution/evaluate-map/evaluate-map.d.mts.map +1 -0
- package/dist/work-on-evolution/evaluate-map/evaluate-map.mjs +391 -0
- package/dist/work-on-evolution/evaluate-map/evaluate-map.mjs.map +1 -0
- package/dist/work-on-evolution/lib/evolution-input-validation.d.mts +37 -0
- package/dist/work-on-evolution/lib/evolution-input-validation.d.mts.map +1 -0
- package/dist/work-on-evolution/lib/evolution-input-validation.mjs +51 -0
- package/dist/work-on-evolution/lib/evolution-input-validation.mjs.map +1 -0
- package/dist/work-on-evolution/patent/cpc-mapper.d.mts +128 -0
- package/dist/work-on-evolution/patent/cpc-mapper.d.mts.map +1 -0
- package/dist/work-on-evolution/patent/cpc-mapper.mjs +285 -0
- package/dist/work-on-evolution/patent/cpc-mapper.mjs.map +1 -0
- package/dist/work-on-evolution/patent/cpc-taxonomy-cache.d.mts +91 -0
- package/dist/work-on-evolution/patent/cpc-taxonomy-cache.d.mts.map +1 -0
- package/dist/work-on-evolution/patent/cpc-taxonomy-cache.mjs +319 -0
- package/dist/work-on-evolution/patent/cpc-taxonomy-cache.mjs.map +1 -0
- package/dist/work-on-evolution/pipeline/concurrent-verification.d.mts +81 -0
- package/dist/work-on-evolution/pipeline/concurrent-verification.d.mts.map +1 -0
- package/dist/work-on-evolution/pipeline/concurrent-verification.mjs +317 -0
- package/dist/work-on-evolution/pipeline/concurrent-verification.mjs.map +1 -0
- package/dist/work-on-evolution/pipeline/dual-verification-orchestrator.d.mts +99 -0
- package/dist/work-on-evolution/pipeline/dual-verification-orchestrator.d.mts.map +1 -0
- package/dist/work-on-evolution/pipeline/dual-verification-orchestrator.mjs +288 -0
- package/dist/work-on-evolution/pipeline/dual-verification-orchestrator.mjs.map +1 -0
- package/dist/work-on-evolution/pipeline/pipeline-capability-inference.d.mts +45 -0
- package/dist/work-on-evolution/pipeline/pipeline-capability-inference.d.mts.map +1 -0
- package/dist/work-on-evolution/pipeline/pipeline-capability-inference.mjs +206 -0
- package/dist/work-on-evolution/pipeline/pipeline-capability-inference.mjs.map +1 -0
- package/dist/work-on-evolution/pipeline/pipeline-enriched.d.mts +175 -0
- package/dist/work-on-evolution/pipeline/pipeline-enriched.d.mts.map +1 -0
- package/dist/work-on-evolution/pipeline/pipeline-enriched.mjs +549 -0
- package/dist/work-on-evolution/pipeline/pipeline-enriched.mjs.map +1 -0
- package/dist/work-on-evolution/pipeline/signal-combiner.d.mts +131 -0
- package/dist/work-on-evolution/pipeline/signal-combiner.d.mts.map +1 -0
- package/dist/work-on-evolution/pipeline/signal-combiner.mjs +435 -0
- package/dist/work-on-evolution/pipeline/signal-combiner.mjs.map +1 -0
- package/dist/work-on-evolution/pipeline/verification-reconciliation.d.mts +60 -0
- package/dist/work-on-evolution/pipeline/verification-reconciliation.d.mts.map +1 -0
- package/dist/work-on-evolution/pipeline/verification-reconciliation.mjs +182 -0
- package/dist/work-on-evolution/pipeline/verification-reconciliation.mjs.map +1 -0
- package/dist/work-on-evolution/pipeline/verification-signals.d.mts +62 -0
- package/dist/work-on-evolution/pipeline/verification-signals.d.mts.map +1 -0
- package/dist/work-on-evolution/pipeline/verification-signals.mjs +123 -0
- package/dist/work-on-evolution/pipeline/verification-signals.mjs.map +1 -0
- package/dist/work-on-evolution/read/base-strategy.d.mts +22 -0
- package/dist/work-on-evolution/read/base-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/read/base-strategy.mjs +36 -0
- package/dist/work-on-evolution/read/base-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/read/registry.d.mts +17 -0
- package/dist/work-on-evolution/read/registry.d.mts.map +1 -0
- package/dist/work-on-evolution/read/registry.mjs +83 -0
- package/dist/work-on-evolution/read/registry.mjs.map +1 -0
- package/dist/work-on-evolution/routing/classification-gate.d.mts +19 -0
- package/dist/work-on-evolution/routing/classification-gate.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/classification-gate.mjs +192 -0
- package/dist/work-on-evolution/routing/classification-gate.mjs.map +1 -0
- package/dist/work-on-evolution/routing/detect-solution.d.mts +104 -0
- package/dist/work-on-evolution/routing/detect-solution.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/detect-solution.mjs +452 -0
- package/dist/work-on-evolution/routing/detect-solution.mjs.map +1 -0
- package/dist/work-on-evolution/routing/eval-mode-dispatcher.d.mts +105 -0
- package/dist/work-on-evolution/routing/eval-mode-dispatcher.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/eval-mode-dispatcher.mjs +287 -0
- package/dist/work-on-evolution/routing/eval-mode-dispatcher.mjs.map +1 -0
- package/dist/work-on-evolution/routing/mode-router.d.mts +49 -0
- package/dist/work-on-evolution/routing/mode-router.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/mode-router.mjs +351 -0
- package/dist/work-on-evolution/routing/mode-router.mjs.map +1 -0
- package/dist/work-on-evolution/routing/solution-capability-router.d.mts +4 -0
- package/dist/work-on-evolution/routing/solution-capability-router.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/solution-capability-router.mjs +36 -0
- package/dist/work-on-evolution/routing/solution-capability-router.mjs.map +1 -0
- package/dist/work-on-evolution/routing/solution-dispatch.d.mts +91 -0
- package/dist/work-on-evolution/routing/solution-dispatch.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/solution-dispatch.mjs +230 -0
- package/dist/work-on-evolution/routing/solution-dispatch.mjs.map +1 -0
- package/dist/work-on-evolution/routing/wardley-type-classification.d.mts +37 -0
- package/dist/work-on-evolution/routing/wardley-type-classification.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/wardley-type-classification.mjs +154 -0
- package/dist/work-on-evolution/routing/wardley-type-classification.mjs.map +1 -0
- package/dist/work-on-evolution/routing/web-search-verification.d.mts +94 -0
- package/dist/work-on-evolution/routing/web-search-verification.d.mts.map +1 -0
- package/dist/work-on-evolution/routing/web-search-verification.mjs +457 -0
- package/dist/work-on-evolution/routing/web-search-verification.mjs.map +1 -0
- package/dist/work-on-evolution/s-curve/s-curve-transform.d.ts +3 -0
- package/dist/work-on-evolution/s-curve/s-curve-transform.d.ts.map +1 -0
- package/dist/work-on-evolution/s-curve/s-curve-transform.js +96 -0
- package/dist/work-on-evolution/s-curve/s-curve-transform.js.map +1 -0
- package/dist/work-on-evolution/s-curve/s-curve.d.mts +37 -0
- package/dist/work-on-evolution/s-curve/s-curve.d.mts.map +1 -0
- package/dist/work-on-evolution/s-curve/s-curve.mjs +93 -0
- package/dist/work-on-evolution/s-curve/s-curve.mjs.map +1 -0
- package/dist/work-on-evolution/skill-handler.d.mts +99 -0
- package/dist/work-on-evolution/skill-handler.d.mts.map +1 -0
- package/dist/work-on-evolution/skill-handler.mjs +608 -0
- package/dist/work-on-evolution/skill-handler.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/anchor/estimate-anchor-evolution.d.mts +10 -0
- package/dist/work-on-evolution/strategies/anchor/estimate-anchor-evolution.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/anchor/estimate-anchor-evolution.mjs +101 -0
- package/dist/work-on-evolution/strategies/anchor/estimate-anchor-evolution.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/base-strategy.d.mts +72 -0
- package/dist/work-on-evolution/strategies/capacity/base-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/base-strategy.mjs +98 -0
- package/dist/work-on-evolution/strategies/capacity/base-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/cpc-evolution-strategy.d.mts +313 -0
- package/dist/work-on-evolution/strategies/capacity/cpc-evolution-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/cpc-evolution-strategy.mjs +721 -0
- package/dist/work-on-evolution/strategies/capacity/cpc-evolution-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/llm-direct-strategy.d.mts +25 -0
- package/dist/work-on-evolution/strategies/capacity/llm-direct-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/llm-direct-strategy.mjs +87 -0
- package/dist/work-on-evolution/strategies/capacity/llm-direct-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/logprob-distribution-strategy.d.mts +31 -0
- package/dist/work-on-evolution/strategies/capacity/logprob-distribution-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/logprob-distribution-strategy.mjs +125 -0
- package/dist/work-on-evolution/strategies/capacity/logprob-distribution-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/publication-analysis-strategy.d.mts +20 -0
- package/dist/work-on-evolution/strategies/capacity/publication-analysis-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/publication-analysis-strategy.mjs +91 -0
- package/dist/work-on-evolution/strategies/capacity/publication-analysis-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/registry.d.mts +28 -0
- package/dist/work-on-evolution/strategies/capacity/registry.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/registry.mjs +102 -0
- package/dist/work-on-evolution/strategies/capacity/registry.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/s-curve-strategy.d.mts +11 -0
- package/dist/work-on-evolution/strategies/capacity/s-curve-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/s-curve-strategy.mjs +44 -0
- package/dist/work-on-evolution/strategies/capacity/s-curve-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/timeline-benchmark-strategy.d.mts +52 -0
- package/dist/work-on-evolution/strategies/capacity/timeline-benchmark-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/capacity/timeline-benchmark-strategy.mjs +226 -0
- package/dist/work-on-evolution/strategies/capacity/timeline-benchmark-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/solution/aggregate-properties.d.mts +197 -0
- package/dist/work-on-evolution/strategies/solution/aggregate-properties.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/solution/aggregate-properties.mjs +416 -0
- package/dist/work-on-evolution/strategies/solution/aggregate-properties.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/solution/assemble-result.d.mts +91 -0
- package/dist/work-on-evolution/strategies/solution/assemble-result.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/solution/assemble-result.mjs +236 -0
- package/dist/work-on-evolution/strategies/solution/assemble-result.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/solution/phase-classifier.d.mts +211 -0
- package/dist/work-on-evolution/strategies/solution/phase-classifier.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/solution/phase-classifier.mjs +453 -0
- package/dist/work-on-evolution/strategies/solution/phase-classifier.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/solution/properties-strategy.d.mts +100 -0
- package/dist/work-on-evolution/strategies/solution/properties-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/solution/properties-strategy.mjs +496 -0
- package/dist/work-on-evolution/strategies/solution/properties-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/solution/registry.d.mts +18 -0
- package/dist/work-on-evolution/strategies/solution/registry.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/solution/registry.mjs +73 -0
- package/dist/work-on-evolution/strategies/solution/registry.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/solution/solution-base-strategy.d.mts +163 -0
- package/dist/work-on-evolution/strategies/solution/solution-base-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/solution/solution-base-strategy.mjs +228 -0
- package/dist/work-on-evolution/strategies/solution/solution-base-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/strategies/solution/solution-evolution-result.d.mts +361 -0
- package/dist/work-on-evolution/strategies/solution/solution-evolution-result.d.mts.map +1 -0
- package/dist/work-on-evolution/strategies/solution/solution-evolution-result.mjs +604 -0
- package/dist/work-on-evolution/strategies/solution/solution-evolution-result.mjs.map +1 -0
- package/dist/work-on-evolution/write/estimate-evolution.d.mts +78 -0
- package/dist/work-on-evolution/write/estimate-evolution.d.mts.map +1 -0
- package/dist/work-on-evolution/write/estimate-evolution.mjs +654 -0
- package/dist/work-on-evolution/write/estimate-evolution.mjs.map +1 -0
- package/dist/work-on-evolution/write/evaluate-map/evaluate-map.d.mts +56 -0
- package/dist/work-on-evolution/write/evaluate-map/evaluate-map.d.mts.map +1 -0
- package/dist/work-on-evolution/write/evaluate-map/evaluate-map.mjs +449 -0
- package/dist/work-on-evolution/write/evaluate-map/evaluate-map.mjs.map +1 -0
- package/dist/work-on-evolution/write/lib/evolution-input-validation.d.mts +37 -0
- package/dist/work-on-evolution/write/lib/evolution-input-validation.d.mts.map +1 -0
- package/dist/work-on-evolution/write/lib/evolution-input-validation.mjs +51 -0
- package/dist/work-on-evolution/write/lib/evolution-input-validation.mjs.map +1 -0
- package/dist/work-on-evolution/write/patent/cpc-mapper.d.mts +128 -0
- package/dist/work-on-evolution/write/patent/cpc-mapper.d.mts.map +1 -0
- package/dist/work-on-evolution/write/patent/cpc-mapper.mjs +298 -0
- package/dist/work-on-evolution/write/patent/cpc-mapper.mjs.map +1 -0
- package/dist/work-on-evolution/write/patent/cpc-taxonomy-cache.d.mts +91 -0
- package/dist/work-on-evolution/write/patent/cpc-taxonomy-cache.d.mts.map +1 -0
- package/dist/work-on-evolution/write/patent/cpc-taxonomy-cache.mjs +319 -0
- package/dist/work-on-evolution/write/patent/cpc-taxonomy-cache.mjs.map +1 -0
- package/dist/work-on-evolution/write/pipeline/pipeline-enriched.d.mts +175 -0
- package/dist/work-on-evolution/write/pipeline/pipeline-enriched.d.mts.map +1 -0
- package/dist/work-on-evolution/write/pipeline/pipeline-enriched.mjs +549 -0
- package/dist/work-on-evolution/write/pipeline/pipeline-enriched.mjs.map +1 -0
- package/dist/work-on-evolution/write/routing/classification-gate.d.mts +19 -0
- package/dist/work-on-evolution/write/routing/classification-gate.d.mts.map +1 -0
- package/dist/work-on-evolution/write/routing/classification-gate.mjs +192 -0
- package/dist/work-on-evolution/write/routing/classification-gate.mjs.map +1 -0
- package/dist/work-on-evolution/write/routing/detect-solution.d.mts +104 -0
- package/dist/work-on-evolution/write/routing/detect-solution.d.mts.map +1 -0
- package/dist/work-on-evolution/write/routing/detect-solution.mjs +452 -0
- package/dist/work-on-evolution/write/routing/detect-solution.mjs.map +1 -0
- package/dist/work-on-evolution/write/routing/mode-router.d.mts +49 -0
- package/dist/work-on-evolution/write/routing/mode-router.d.mts.map +1 -0
- package/dist/work-on-evolution/write/routing/mode-router.mjs +351 -0
- package/dist/work-on-evolution/write/routing/mode-router.mjs.map +1 -0
- package/dist/work-on-evolution/write/routing/solution-capability-router.d.mts +4 -0
- package/dist/work-on-evolution/write/routing/solution-capability-router.d.mts.map +1 -0
- package/dist/work-on-evolution/write/routing/solution-capability-router.mjs +36 -0
- package/dist/work-on-evolution/write/routing/solution-capability-router.mjs.map +1 -0
- package/dist/work-on-evolution/write/routing/solution-dispatch.d.mts +91 -0
- package/dist/work-on-evolution/write/routing/solution-dispatch.d.mts.map +1 -0
- package/dist/work-on-evolution/write/routing/solution-dispatch.mjs +242 -0
- package/dist/work-on-evolution/write/routing/solution-dispatch.mjs.map +1 -0
- package/dist/work-on-evolution/write/s-curve/s-curve-transform.d.ts +3 -0
- package/dist/work-on-evolution/write/s-curve/s-curve-transform.d.ts.map +1 -0
- package/dist/work-on-evolution/write/s-curve/s-curve-transform.js +96 -0
- package/dist/work-on-evolution/write/s-curve/s-curve-transform.js.map +1 -0
- package/dist/work-on-evolution/write/s-curve/s-curve.d.mts +37 -0
- package/dist/work-on-evolution/write/s-curve/s-curve.d.mts.map +1 -0
- package/dist/work-on-evolution/write/s-curve/s-curve.mjs +93 -0
- package/dist/work-on-evolution/write/s-curve/s-curve.mjs.map +1 -0
- package/dist/work-on-evolution/write/skill-handler.d.mts +99 -0
- package/dist/work-on-evolution/write/skill-handler.d.mts.map +1 -0
- package/dist/work-on-evolution/write/skill-handler.mjs +608 -0
- package/dist/work-on-evolution/write/skill-handler.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/anchor/estimate-anchor-evolution.d.mts +10 -0
- package/dist/work-on-evolution/write/strategies/anchor/estimate-anchor-evolution.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/anchor/estimate-anchor-evolution.mjs +125 -0
- package/dist/work-on-evolution/write/strategies/anchor/estimate-anchor-evolution.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/base-strategy.d.mts +72 -0
- package/dist/work-on-evolution/write/strategies/capacity/base-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/base-strategy.mjs +98 -0
- package/dist/work-on-evolution/write/strategies/capacity/base-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/cpc-evolution-strategy.d.mts +313 -0
- package/dist/work-on-evolution/write/strategies/capacity/cpc-evolution-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/cpc-evolution-strategy.mjs +731 -0
- package/dist/work-on-evolution/write/strategies/capacity/cpc-evolution-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/llm-direct-strategy.d.mts +25 -0
- package/dist/work-on-evolution/write/strategies/capacity/llm-direct-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/llm-direct-strategy.mjs +87 -0
- package/dist/work-on-evolution/write/strategies/capacity/llm-direct-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/logprob-distribution-strategy.d.mts +28 -0
- package/dist/work-on-evolution/write/strategies/capacity/logprob-distribution-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/logprob-distribution-strategy.mjs +125 -0
- package/dist/work-on-evolution/write/strategies/capacity/logprob-distribution-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/publication-analysis-strategy.d.mts +21 -0
- package/dist/work-on-evolution/write/strategies/capacity/publication-analysis-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/publication-analysis-strategy.mjs +91 -0
- package/dist/work-on-evolution/write/strategies/capacity/publication-analysis-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/registry.d.mts +28 -0
- package/dist/work-on-evolution/write/strategies/capacity/registry.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/registry.mjs +102 -0
- package/dist/work-on-evolution/write/strategies/capacity/registry.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/s-curve-strategy.d.mts +11 -0
- package/dist/work-on-evolution/write/strategies/capacity/s-curve-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/s-curve-strategy.mjs +44 -0
- package/dist/work-on-evolution/write/strategies/capacity/s-curve-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/timeline-benchmark-strategy.d.mts +52 -0
- package/dist/work-on-evolution/write/strategies/capacity/timeline-benchmark-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/capacity/timeline-benchmark-strategy.mjs +226 -0
- package/dist/work-on-evolution/write/strategies/capacity/timeline-benchmark-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/aggregate-properties.d.mts +197 -0
- package/dist/work-on-evolution/write/strategies/solution/aggregate-properties.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/aggregate-properties.mjs +416 -0
- package/dist/work-on-evolution/write/strategies/solution/aggregate-properties.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/assemble-result.d.mts +91 -0
- package/dist/work-on-evolution/write/strategies/solution/assemble-result.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/assemble-result.mjs +236 -0
- package/dist/work-on-evolution/write/strategies/solution/assemble-result.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/phase-classifier.d.mts +211 -0
- package/dist/work-on-evolution/write/strategies/solution/phase-classifier.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/phase-classifier.mjs +453 -0
- package/dist/work-on-evolution/write/strategies/solution/phase-classifier.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/properties-strategy.d.mts +100 -0
- package/dist/work-on-evolution/write/strategies/solution/properties-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/properties-strategy.mjs +496 -0
- package/dist/work-on-evolution/write/strategies/solution/properties-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/registry.d.mts +18 -0
- package/dist/work-on-evolution/write/strategies/solution/registry.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/registry.mjs +73 -0
- package/dist/work-on-evolution/write/strategies/solution/registry.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-base-strategy.d.mts +163 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-base-strategy.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-base-strategy.mjs +228 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-base-strategy.mjs.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-evolution-result.d.mts +361 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-evolution-result.d.mts.map +1 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-evolution-result.mjs +604 -0
- package/dist/work-on-evolution/write/strategies/solution/solution-evolution-result.mjs.map +1 -0
- package/dist/work-on-value-chain/generate-value-chain.d.mts +24 -0
- package/dist/work-on-value-chain/generate-value-chain.d.mts.map +1 -0
- package/dist/work-on-value-chain/generate-value-chain.mjs +257 -0
- package/dist/work-on-value-chain/generate-value-chain.mjs.map +1 -0
- package/dist/work-on-value-chain/identify-capability.d.mts +28 -0
- package/dist/work-on-value-chain/identify-capability.d.mts.map +1 -0
- package/dist/work-on-value-chain/identify-capability.mjs +118 -0
- package/dist/work-on-value-chain/identify-capability.mjs.map +1 -0
- package/dist/work-on-value-chain/read/anchor/base-strategy.d.mts +22 -0
- package/dist/work-on-value-chain/read/anchor/base-strategy.d.mts.map +1 -0
- package/dist/work-on-value-chain/read/anchor/base-strategy.mjs +34 -0
- package/dist/work-on-value-chain/read/anchor/base-strategy.mjs.map +1 -0
- package/dist/work-on-value-chain/read/anchor/registry.d.mts +17 -0
- package/dist/work-on-value-chain/read/anchor/registry.d.mts.map +1 -0
- package/dist/work-on-value-chain/read/anchor/registry.mjs +83 -0
- package/dist/work-on-value-chain/read/anchor/registry.mjs.map +1 -0
- package/dist/work-on-value-chain/read/chain/base-strategy.d.mts +22 -0
- package/dist/work-on-value-chain/read/chain/base-strategy.d.mts.map +1 -0
- package/dist/work-on-value-chain/read/chain/base-strategy.mjs +34 -0
- package/dist/work-on-value-chain/read/chain/base-strategy.mjs.map +1 -0
- package/dist/work-on-value-chain/read/chain/registry.d.mts +17 -0
- package/dist/work-on-value-chain/read/chain/registry.d.mts.map +1 -0
- package/dist/work-on-value-chain/read/chain/registry.mjs +83 -0
- package/dist/work-on-value-chain/read/chain/registry.mjs.map +1 -0
- package/dist/work-on-value-chain/read/component/base-strategy.d.mts +22 -0
- package/dist/work-on-value-chain/read/component/base-strategy.d.mts.map +1 -0
- package/dist/work-on-value-chain/read/component/base-strategy.mjs +34 -0
- package/dist/work-on-value-chain/read/component/base-strategy.mjs.map +1 -0
- package/dist/work-on-value-chain/read/component/registry.d.mts +17 -0
- package/dist/work-on-value-chain/read/component/registry.d.mts.map +1 -0
- package/dist/work-on-value-chain/read/component/registry.mjs +83 -0
- package/dist/work-on-value-chain/read/component/registry.mjs.map +1 -0
- package/dist/work-on-value-chain/write/anchor/base-strategy.d.mts +22 -0
- package/dist/work-on-value-chain/write/anchor/base-strategy.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/anchor/base-strategy.mjs +33 -0
- package/dist/work-on-value-chain/write/anchor/base-strategy.mjs.map +1 -0
- package/dist/work-on-value-chain/write/anchor/registry.d.mts +17 -0
- package/dist/work-on-value-chain/write/anchor/registry.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/anchor/registry.mjs +86 -0
- package/dist/work-on-value-chain/write/anchor/registry.mjs.map +1 -0
- package/dist/work-on-value-chain/write/chain/base-strategy.d.mts +22 -0
- package/dist/work-on-value-chain/write/chain/base-strategy.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/chain/base-strategy.mjs +33 -0
- package/dist/work-on-value-chain/write/chain/base-strategy.mjs.map +1 -0
- package/dist/work-on-value-chain/write/chain/registry.d.mts +17 -0
- package/dist/work-on-value-chain/write/chain/registry.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/chain/registry.mjs +83 -0
- package/dist/work-on-value-chain/write/chain/registry.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/base-strategy.d.mts +22 -0
- package/dist/work-on-value-chain/write/component/base-strategy.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/base-strategy.mjs +33 -0
- package/dist/work-on-value-chain/write/component/base-strategy.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/concurrent-verification.d.mts +81 -0
- package/dist/work-on-value-chain/write/component/concurrent-verification.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/concurrent-verification.mjs +317 -0
- package/dist/work-on-value-chain/write/component/concurrent-verification.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/dual-verification-orchestrator.d.mts +99 -0
- package/dist/work-on-value-chain/write/component/dual-verification-orchestrator.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/dual-verification-orchestrator.mjs +288 -0
- package/dist/work-on-value-chain/write/component/dual-verification-orchestrator.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/identify-capability.d.mts +28 -0
- package/dist/work-on-value-chain/write/component/identify-capability.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/identify-capability.mjs +123 -0
- package/dist/work-on-value-chain/write/component/identify-capability.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/infer-capability-from-solution.d.mts +45 -0
- package/dist/work-on-value-chain/write/component/infer-capability-from-solution.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/infer-capability-from-solution.mjs +206 -0
- package/dist/work-on-value-chain/write/component/infer-capability-from-solution.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/registry.d.mts +17 -0
- package/dist/work-on-value-chain/write/component/registry.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/registry.mjs +83 -0
- package/dist/work-on-value-chain/write/component/registry.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/signal-combiner.d.mts +131 -0
- package/dist/work-on-value-chain/write/component/signal-combiner.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/signal-combiner.mjs +435 -0
- package/dist/work-on-value-chain/write/component/signal-combiner.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/verification-reconciliation.d.mts +60 -0
- package/dist/work-on-value-chain/write/component/verification-reconciliation.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/verification-reconciliation.mjs +182 -0
- package/dist/work-on-value-chain/write/component/verification-reconciliation.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/verification-signals.d.mts +62 -0
- package/dist/work-on-value-chain/write/component/verification-signals.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/verification-signals.mjs +123 -0
- package/dist/work-on-value-chain/write/component/verification-signals.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/wardley-type-classification.d.mts +37 -0
- package/dist/work-on-value-chain/write/component/wardley-type-classification.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/wardley-type-classification.mjs +154 -0
- package/dist/work-on-value-chain/write/component/wardley-type-classification.mjs.map +1 -0
- package/dist/work-on-value-chain/write/component/web-search-verification.d.mts +93 -0
- package/dist/work-on-value-chain/write/component/web-search-verification.d.mts.map +1 -0
- package/dist/work-on-value-chain/write/component/web-search-verification.mjs +464 -0
- package/dist/work-on-value-chain/write/component/web-search-verification.mjs.map +1 -0
- package/llm.config.example.json +29 -0
- package/package.json +90 -0
- package/prompts/anchor-evolution.system.md +25 -0
- package/prompts/anchor-evolution.user.md +2 -0
- package/prompts/cpc-evolution.sot-extraction.system.md +7 -0
- package/prompts/cpc-evolution.sot-extraction.user.md +5 -0
- package/prompts/cpc-mapper.fallback.system.md +3 -0
- package/prompts/cpc-mapper.fallback.user.md +1 -0
- package/prompts/cpc-mapper.pick-class.system.md +21 -0
- package/prompts/cpc-mapper.pick-class.user.md +1 -0
- package/prompts/cpc-mapper.pick-from-list.system.md +3 -0
- package/prompts/cpc-mapper.pick-from-list.user.md +4 -0
- package/prompts/historical-evolution.with-capability.system.md +14 -0
- package/prompts/historical-evolution.with-capability.user.md +4 -0
- package/prompts/historical-evolution.without-capability.system.md +15 -0
- package/prompts/historical-evolution.without-capability.user.md +4 -0
- package/prompts/identify-capability.system.md +40 -0
- package/prompts/identify-capability.user.md +3 -0
- package/prompts/logprob-fallback.system.md +11 -0
- package/prompts/logprob-fallback.user.md +3 -0
- package/prompts/pipeline-enrichment.solution-discovery.system.md +22 -0
- package/prompts/pipeline-enrichment.solution-discovery.user.md +3 -0
- package/prompts/properties-strategy.auto.system.md +17 -0
- package/prompts/properties-strategy.auto.user.md +8 -0
- package/prompts/properties-strategy.single.system.md +14 -0
- package/prompts/properties-strategy.single.user.md +9 -0
- package/prompts/publication-analysis.system.md +24 -0
- package/prompts/publication-analysis.user.md +3 -0
- package/prompts/solution-classification.system.md +28 -0
- package/prompts/solution-classification.user.md +2 -0
- package/prompts/timeline-benchmark.system.md +14 -0
- package/prompts/timeline-benchmark.user.md +9 -0
- package/prompts/web-search-verification.system.md +32 -0
- package/prompts/web-search-verification.user.md +2 -0
- package/prompts/write-chain.extract-metadata.system.md +44 -0
- package/prompts/write-chain.extract-metadata.user.md +1 -0
- package/prompts/write-chain.top-down.system.md +70 -0
- package/prompts/write-chain.top-down.user.md +2 -0
- package/prompts.config.json +190 -0
- package/recipes/wardley/map/draw-value-chain.recipe.json +43 -0
- package/recipes/wardley/map/estimate-chain-components.recipe.json +22 -0
- package/recipes/wardley/map/estimate-component-evolution.recipe.json +24 -0
- package/recipes/wardley/map/evaluate-map.recipe.json +28 -0
- package/recipes/wardley/map/generate.recipe.json +34 -0
|
@@ -0,0 +1,591 @@
|
|
|
1
|
+
// Response formatter: transforms raw evaluation API results into
|
|
2
|
+
// user-friendly conversational output with evolution stage, confidence,
|
|
3
|
+
// and reasoning.
|
|
4
|
+
//
|
|
5
|
+
// Handles three output scenarios:
|
|
6
|
+
// 1. Economic component evaluated → stage name, confidence bar, reasoning per strategy
|
|
7
|
+
// 2. Non-economic component (social/common good) → re-questioning prompts
|
|
8
|
+
// 3. Error / partial results → graceful degradation with actionable guidance
|
|
9
|
+
//
|
|
10
|
+
// Evolution stage mapping follows the Wardley Map x-axis:
|
|
11
|
+
// 0.00–0.17 Genesis (novel, uncertain)
|
|
12
|
+
// 0.17–0.40 Custom-Built (emerging, divergent)
|
|
13
|
+
// 0.40–0.70 Product (+rental)(converging, feature-rich)
|
|
14
|
+
// 0.70–1.00 Commodity (+utility) (standardised, invisible)
|
|
15
|
+
// (evolution is always in [0, 1] via geometric projection)
|
|
16
|
+
/**
|
|
17
|
+
* @typedef {Object} EvolutionStage
|
|
18
|
+
* @property {string} name - Stage label (e.g. "Product (+rental)")
|
|
19
|
+
* @property {string} shortName - Short label (e.g. "Product")
|
|
20
|
+
* @property {string} descriptor - Human-readable trait (e.g. "converging, feature-differentiated")
|
|
21
|
+
* @property {number} rangeMin - Lower bound (inclusive)
|
|
22
|
+
* @property {number} rangeMax - Upper bound (exclusive, except last)
|
|
23
|
+
*/
|
|
24
|
+
const EVOLUTION_STAGES = [
|
|
25
|
+
{
|
|
26
|
+
name: 'Genesis',
|
|
27
|
+
shortName: 'Genesis',
|
|
28
|
+
descriptor: 'novel, poorly understood, high uncertainty',
|
|
29
|
+
rangeMin: 0.00,
|
|
30
|
+
rangeMax: 0.17,
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
name: 'Custom-Built',
|
|
34
|
+
shortName: 'Custom',
|
|
35
|
+
descriptor: 'emerging, divergent implementations, requires expertise',
|
|
36
|
+
rangeMin: 0.17,
|
|
37
|
+
rangeMax: 0.40,
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
name: 'Product (+rental)',
|
|
41
|
+
shortName: 'Product',
|
|
42
|
+
descriptor: 'converging, feature-differentiated, increasing competition',
|
|
43
|
+
rangeMin: 0.40,
|
|
44
|
+
rangeMax: 0.70,
|
|
45
|
+
},
|
|
46
|
+
{
|
|
47
|
+
name: 'Commodity (+utility)',
|
|
48
|
+
shortName: 'Commodity',
|
|
49
|
+
descriptor: 'standardised, well-defined, utility-like, volume operations',
|
|
50
|
+
rangeMin: 0.70,
|
|
51
|
+
rangeMax: 1.00,
|
|
52
|
+
},
|
|
53
|
+
];
|
|
54
|
+
/**
|
|
55
|
+
* Map an evolution value (0–1) to its Wardley stage.
|
|
56
|
+
*
|
|
57
|
+
* @param {number} evolution - Evolution value
|
|
58
|
+
* @returns {EvolutionStage & { position: string }}
|
|
59
|
+
*/
|
|
60
|
+
export function evolutionToStage(evolution) {
|
|
61
|
+
for (const stage of EVOLUTION_STAGES) {
|
|
62
|
+
if (evolution >= stage.rangeMin && evolution < stage.rangeMax) {
|
|
63
|
+
return { ...stage, position: evolution.toFixed(3) };
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
// Edge case: exactly 1.0
|
|
67
|
+
return { ...EVOLUTION_STAGES[3], position: evolution.toFixed(3) };
|
|
68
|
+
}
|
|
69
|
+
// ─── Confidence Formatting ──────────────────────────────────────────────────
|
|
70
|
+
/**
|
|
71
|
+
* Format a confidence value as a descriptive label + visual bar.
|
|
72
|
+
*
|
|
73
|
+
* @param {number} confidence - Confidence 0–1
|
|
74
|
+
* @returns {{ label: string, bar: string, percentage: string }}
|
|
75
|
+
*/
|
|
76
|
+
export function formatConfidence(confidence) {
|
|
77
|
+
const pct = Math.round(confidence * 100);
|
|
78
|
+
const filledBlocks = Math.round(confidence * 10);
|
|
79
|
+
const bar = '█'.repeat(filledBlocks) + '░'.repeat(10 - filledBlocks);
|
|
80
|
+
let label;
|
|
81
|
+
if (confidence >= 0.85)
|
|
82
|
+
label = 'Very high';
|
|
83
|
+
else if (confidence >= 0.70)
|
|
84
|
+
label = 'High';
|
|
85
|
+
else if (confidence >= 0.50)
|
|
86
|
+
label = 'Moderate';
|
|
87
|
+
else if (confidence >= 0.30)
|
|
88
|
+
label = 'Low';
|
|
89
|
+
else
|
|
90
|
+
label = 'Very low';
|
|
91
|
+
return { label, bar, percentage: `${pct}%` };
|
|
92
|
+
}
|
|
93
|
+
// ─── Strategy Reasoning ─────────────────────────────────────────────────────
|
|
94
|
+
/**
|
|
95
|
+
* Generate a human-readable reasoning sentence for a strategy result.
|
|
96
|
+
*
|
|
97
|
+
* @param {string} method - Strategy method identifier
|
|
98
|
+
* @param {Object} result - EvolutionResult { evolution, confidence, method }
|
|
99
|
+
* @param {Object} [component] - Original component input (for context)
|
|
100
|
+
* @returns {string} Reasoning sentence
|
|
101
|
+
*/
|
|
102
|
+
// any: result/component shapes vary across strategies (capability vs solution vs anchor)
|
|
103
|
+
export function strategyReasoning(method, result, component = {}) {
|
|
104
|
+
const stage = evolutionToStage(result.evolution ?? 0);
|
|
105
|
+
const reasoningMap = {
|
|
106
|
+
'write:capacity:s-curve': () => {
|
|
107
|
+
const cert = component.certitude != null ? component.certitude.toFixed(2) : '?';
|
|
108
|
+
const ubi = component.ubiquity != null ? component.ubiquity.toFixed(2) : '?';
|
|
109
|
+
return (`The dual sigmoid model projects certitude (${cert}) × ubiquity (${ubi}) ` +
|
|
110
|
+
`onto the S-curve center line, placing this component in the **${stage.name}** stage. ` +
|
|
111
|
+
`This mathematical model works best when both inputs are well-calibrated.`);
|
|
112
|
+
},
|
|
113
|
+
'write:capacity:publication-analysis': () => {
|
|
114
|
+
const bins = component.phaseDistribution?.bins;
|
|
115
|
+
const distribution = bins && bins.length > 0
|
|
116
|
+
? bins
|
|
117
|
+
.map((b, i) => `phase${i + 1}=${b.probability.toFixed(2)}`)
|
|
118
|
+
.join(', ')
|
|
119
|
+
: 'provided distribution';
|
|
120
|
+
return (`Publication-phase analysis (${distribution}) indicates the dominant discourse ` +
|
|
121
|
+
`is consistent with the **${stage.name}** stage — ${stage.descriptor}.`);
|
|
122
|
+
},
|
|
123
|
+
'write:capacity:timeline-benchmark': () => `Historical benchmark comparison places "${component.name || 'this component'}" ` +
|
|
124
|
+
`at the **${stage.name}** stage based on known evolution timelines of similar components.`,
|
|
125
|
+
'write:capacity:llm-direct': () => `Direct LLM assessment positions this component in the **${stage.name}** stage ` +
|
|
126
|
+
`based on semantic understanding of its description and market context.`,
|
|
127
|
+
'write:capacity:logprob-distribution': () => `Log-probability distribution analysis of stage tokens suggests ` +
|
|
128
|
+
`the **${stage.name}** stage with the highest probability mass.`,
|
|
129
|
+
'write:capacity:cpc-evolution': () => `Patent CPC classification analysis positions this component in the **${stage.name}** stage ` +
|
|
130
|
+
`based on patent filing patterns and technology classification codes.`,
|
|
131
|
+
'properties': () => buildSolutionPropertiesReasoning(result, stage),
|
|
132
|
+
'write:solution:properties': () => buildSolutionPropertiesReasoning(result, stage),
|
|
133
|
+
};
|
|
134
|
+
const generator = reasoningMap[method];
|
|
135
|
+
if (generator)
|
|
136
|
+
return generator();
|
|
137
|
+
// Handle solution: prefixed methods (parallel mode key collision resolution)
|
|
138
|
+
if (method.startsWith('solution:')) {
|
|
139
|
+
const baseMethod = method.replace(/^solution:/, '');
|
|
140
|
+
const baseGenerator = reasoningMap[baseMethod];
|
|
141
|
+
if (baseGenerator)
|
|
142
|
+
return baseGenerator();
|
|
143
|
+
}
|
|
144
|
+
// Fallback for unknown/new strategies (including dynamically added solution strategies)
|
|
145
|
+
// If the result has properties, it's likely a solution strategy
|
|
146
|
+
if (result.properties && Array.isArray(result.properties) && result.properties.length > 0) {
|
|
147
|
+
return buildSolutionPropertiesReasoning(result, stage);
|
|
148
|
+
}
|
|
149
|
+
return `Strategy "${method}" estimates the component at the **${stage.name}** stage (${stage.descriptor}).`;
|
|
150
|
+
}
|
|
151
|
+
// ─── Solution Properties Reasoning ─────────────────────────────────────────
|
|
152
|
+
/**
|
|
153
|
+
* Build reasoning text for solution property-based evaluation.
|
|
154
|
+
*
|
|
155
|
+
* @param {Object} result - Evaluation result with optional properties, phaseDistribution, meanPhase
|
|
156
|
+
* @param {Object} stage - Wardley stage from evolutionToStage()
|
|
157
|
+
* @returns {string} Reasoning sentence
|
|
158
|
+
*/
|
|
159
|
+
// any: result is a SolutionEvolutionResult-like bag with optional dist/dominant fields
|
|
160
|
+
function buildSolutionPropertiesReasoning(result, stage) {
|
|
161
|
+
const propCount = result.properties?.length || 12;
|
|
162
|
+
const parts = [
|
|
163
|
+
`12-property Wardley evolution evaluation across ${propCount} characteristics ` +
|
|
164
|
+
`(Market, Knowledge, Perception, etc.) places this solution in the **${stage.name}** stage — ` +
|
|
165
|
+
`${stage.descriptor}.`,
|
|
166
|
+
];
|
|
167
|
+
// Add phase distribution insight if available (from assembler enrichment)
|
|
168
|
+
if (result.phaseDistribution) {
|
|
169
|
+
const dist = result.phaseDistribution;
|
|
170
|
+
const phaseLabels = { 1: 'Genesis', 2: 'Custom', 3: 'Product', 4: 'Commodity' };
|
|
171
|
+
const nonZero = Object.entries(dist)
|
|
172
|
+
.filter(([, count]) => count > 0)
|
|
173
|
+
.map(([phase, count]) => `${count}× ${phaseLabels[phase]}`)
|
|
174
|
+
.join(', ');
|
|
175
|
+
if (nonZero) {
|
|
176
|
+
parts.push(`Phase distribution: ${nonZero}.`);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
// Add dominant phase if available
|
|
180
|
+
if (result.dominantPhase && result.dominantPhase.count > 0) {
|
|
181
|
+
const ratio = Math.round((result.dominantPhase.count / propCount) * 100);
|
|
182
|
+
if (ratio >= 50) {
|
|
183
|
+
parts.push(`Dominant phase: ${result.dominantPhase.label} (${ratio}% of properties).`);
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
return parts.join(' ');
|
|
187
|
+
}
|
|
188
|
+
// ─── Single Strategy Result Block ───────────────────────────────────────────
|
|
189
|
+
/**
|
|
190
|
+
* Format a single strategy evaluation result into a markdown block.
|
|
191
|
+
*
|
|
192
|
+
* @param {string} method - Strategy method identifier
|
|
193
|
+
* @param {Object} evalResult - { evolution, confidence, method } or { error }
|
|
194
|
+
* @param {Object} [component] - Original component input
|
|
195
|
+
* @returns {string} Markdown block
|
|
196
|
+
*/
|
|
197
|
+
// any: evalResult is heterogeneous (EvolutionResult|SolutionEvolutionResult|{error}); component is loose
|
|
198
|
+
export function formatStrategyResult(method, evalResult, component = {}) {
|
|
199
|
+
if (evalResult.error) {
|
|
200
|
+
return `**${method}**: ⚠️ ${evalResult.error}`;
|
|
201
|
+
}
|
|
202
|
+
const stage = evolutionToStage(evalResult.evolution ?? 0);
|
|
203
|
+
const conf = formatConfidence(evalResult.confidence ?? 0);
|
|
204
|
+
const reasoning = strategyReasoning(method, evalResult, component);
|
|
205
|
+
const lines = [
|
|
206
|
+
`**${method}**`,
|
|
207
|
+
` Evolution: **${stage.position}** → **${stage.name}**`,
|
|
208
|
+
` Confidence: ${conf.bar} ${conf.percentage} (${conf.label})`,
|
|
209
|
+
` ${reasoning}`,
|
|
210
|
+
];
|
|
211
|
+
// Solution strategy: show per-property phase breakdown if available
|
|
212
|
+
if (evalResult.properties && Array.isArray(evalResult.properties) && evalResult.properties.length > 0) {
|
|
213
|
+
lines.push('');
|
|
214
|
+
lines.push(' Property breakdown:');
|
|
215
|
+
const phaseLabels = { 1: 'Genesis', 2: 'Custom', 3: 'Product', 4: 'Commodity' };
|
|
216
|
+
for (const prop of evalResult.properties) {
|
|
217
|
+
const label = prop.label || phaseLabels[prop.phase] || `Phase ${prop.phase}`;
|
|
218
|
+
const reasonSuffix = prop.reason ? ` — ${prop.reason}` : '';
|
|
219
|
+
lines.push(` - ${prop.property}: **${label}** (phase ${prop.phase})${reasonSuffix}`);
|
|
220
|
+
}
|
|
221
|
+
// Show summary statistics if available (from assembler enrichment)
|
|
222
|
+
if (evalResult.meanPhase != null || evalResult.stage) {
|
|
223
|
+
lines.push('');
|
|
224
|
+
const summaryParts = [];
|
|
225
|
+
if (evalResult.meanPhase != null) {
|
|
226
|
+
summaryParts.push(`Mean phase: ${evalResult.meanPhase}`);
|
|
227
|
+
}
|
|
228
|
+
if (evalResult.stage) {
|
|
229
|
+
summaryParts.push(`Overall stage: ${evalResult.stage}`);
|
|
230
|
+
}
|
|
231
|
+
const coverage = evalResult.confidenceMetadata?.coverage;
|
|
232
|
+
if (coverage != null) {
|
|
233
|
+
const coveragePct = Math.round(coverage * 100);
|
|
234
|
+
summaryParts.push(`Coverage: ${coveragePct}%`);
|
|
235
|
+
}
|
|
236
|
+
if (summaryParts.length > 0) {
|
|
237
|
+
lines.push(` *${summaryParts.join(' | ')}*`);
|
|
238
|
+
}
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
return lines.join('\n');
|
|
242
|
+
}
|
|
243
|
+
// ─── Full Response Formatter ────────────────────────────────────────────────
|
|
244
|
+
/**
|
|
245
|
+
* Format a complete evaluation API response into conversational markdown.
|
|
246
|
+
*
|
|
247
|
+
* Accepts the result from:
|
|
248
|
+
* - handleEstimateEvolution() (MCP tool)
|
|
249
|
+
* - estimateEvolutionOneShot() (one-shot API)
|
|
250
|
+
* - estimateEvolutionConversational() (conversational API)
|
|
251
|
+
* - handleSkillInvocation() (skill handler, which adds parsedInput/availableStrategies)
|
|
252
|
+
*
|
|
253
|
+
* @param {Object} result - API response object
|
|
254
|
+
* @param {Object} [options] - Formatting options
|
|
255
|
+
* @param {Object} [options.component] - Original component input for richer reasoning
|
|
256
|
+
* @param {boolean} [options.compact] - If true, use shorter format
|
|
257
|
+
* @returns {string} Markdown-formatted conversational output
|
|
258
|
+
*/
|
|
259
|
+
// any: result is a RoutedResponse-like bag; options carry compact/locale tunables
|
|
260
|
+
export function formatResponse(result, options = {}) {
|
|
261
|
+
const component = options.component || result.parsedInput || {};
|
|
262
|
+
const compact = options.compact || false;
|
|
263
|
+
const name = component.name || result.classification?.space || 'Unknown';
|
|
264
|
+
const lines = [];
|
|
265
|
+
// ── Header ──
|
|
266
|
+
lines.push(`## Evolution Estimation: ${name}`);
|
|
267
|
+
lines.push('');
|
|
268
|
+
// ── Classification ──
|
|
269
|
+
const cls = result.classification;
|
|
270
|
+
if (cls) {
|
|
271
|
+
lines.push(`**Classification:** ${formatSpaceName(cls.space)}`);
|
|
272
|
+
if (cls.reason && !compact) {
|
|
273
|
+
lines.push(`> ${cls.reason}`);
|
|
274
|
+
}
|
|
275
|
+
lines.push('');
|
|
276
|
+
}
|
|
277
|
+
// ── Routing metadata (solution vs capability detection) ──
|
|
278
|
+
if (result.routing && !compact) {
|
|
279
|
+
lines.push(formatRoutingBlock(result.routing));
|
|
280
|
+
lines.push('');
|
|
281
|
+
}
|
|
282
|
+
// ── Wardley component type metadata (activity/practice/data/knowledge) ──
|
|
283
|
+
if (result.wardleyType && !compact) {
|
|
284
|
+
lines.push(formatWardleyTypeBlock(result.wardleyType));
|
|
285
|
+
lines.push('');
|
|
286
|
+
}
|
|
287
|
+
// ── Non-economic: re-questioning ──
|
|
288
|
+
if (result.reQuestions && result.reQuestions.length > 0) {
|
|
289
|
+
lines.push(formatReQuestioningBlock(result.reQuestions, name, cls));
|
|
290
|
+
return lines.join('\n');
|
|
291
|
+
}
|
|
292
|
+
// ── Economic: evaluation results ──
|
|
293
|
+
if (result.evaluations) {
|
|
294
|
+
const entries = Object.entries(result.evaluations);
|
|
295
|
+
const successful = entries.filter(([, ev]) => !ev.error);
|
|
296
|
+
const errors = entries.filter(([, ev]) => ev.error);
|
|
297
|
+
if (successful.length === 0 && errors.length > 0) {
|
|
298
|
+
// All strategies errored
|
|
299
|
+
lines.push('### ⚠️ No Successful Evaluations');
|
|
300
|
+
lines.push('');
|
|
301
|
+
lines.push('All strategies encountered errors:');
|
|
302
|
+
lines.push('');
|
|
303
|
+
for (const [method, ev] of errors) {
|
|
304
|
+
lines.push(`- **${method}**: ${ev.error}`);
|
|
305
|
+
}
|
|
306
|
+
lines.push('');
|
|
307
|
+
lines.push('*Try providing more parameters (certitude, ubiquity, publication proportions) or use a specific strategy.*');
|
|
308
|
+
}
|
|
309
|
+
else {
|
|
310
|
+
// At least one success
|
|
311
|
+
if (compact) {
|
|
312
|
+
lines.push(formatCompactResults(successful, errors, component));
|
|
313
|
+
}
|
|
314
|
+
else {
|
|
315
|
+
lines.push(formatDetailedResults(successful, errors, component));
|
|
316
|
+
}
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
// ── Conversational mode metadata ──
|
|
320
|
+
if (result.mode === 'conversational' && result.phase !== 'complete') {
|
|
321
|
+
lines.push('');
|
|
322
|
+
lines.push(formatConversationalGuidance(result));
|
|
323
|
+
}
|
|
324
|
+
// ── Available strategies footer ──
|
|
325
|
+
if (result.availableStrategies && !compact) {
|
|
326
|
+
lines.push('');
|
|
327
|
+
lines.push(`*Available strategies: ${result.availableStrategies.join(', ')}*`);
|
|
328
|
+
}
|
|
329
|
+
return lines.join('\n');
|
|
330
|
+
}
|
|
331
|
+
// ─── Internal Formatting Helpers ────────────────────────────────────────────
|
|
332
|
+
/**
|
|
333
|
+
* Format a space name for display.
|
|
334
|
+
* @param {string} space
|
|
335
|
+
* @returns {string}
|
|
336
|
+
*/
|
|
337
|
+
function formatSpaceName(space) {
|
|
338
|
+
const names = {
|
|
339
|
+
economic: 'Economic Space (market-driven)',
|
|
340
|
+
social_good: 'Social Good (naturally available)',
|
|
341
|
+
common_good: 'Common Good (collectively managed)',
|
|
342
|
+
};
|
|
343
|
+
return names[space] || space;
|
|
344
|
+
}
|
|
345
|
+
/**
|
|
346
|
+
* Format the re-questioning block for non-economic components.
|
|
347
|
+
*
|
|
348
|
+
* @param {string[]} reQuestions
|
|
349
|
+
* @param {string} name
|
|
350
|
+
* @param {Object} classification
|
|
351
|
+
* @returns {string}
|
|
352
|
+
*/
|
|
353
|
+
function formatReQuestioningBlock(reQuestions, name, classification) {
|
|
354
|
+
const spaceLabel = classification?.space === 'social_good' ? 'social good' : 'common good';
|
|
355
|
+
const lines = [
|
|
356
|
+
`### ⚠️ Component Outside Economic Space`,
|
|
357
|
+
'',
|
|
358
|
+
`**"${name}"** has been classified as a **${spaceLabel}** — it falls outside the ` +
|
|
359
|
+
`standard Wardley Map evolution axis (Genesis → Commodity).`,
|
|
360
|
+
'',
|
|
361
|
+
`Evolution evaluation is **not applicable** for this type of component. ` +
|
|
362
|
+
`Instead, please consider the following questions to reframe your analysis:`,
|
|
363
|
+
'',
|
|
364
|
+
];
|
|
365
|
+
for (let i = 0; i < reQuestions.length; i++) {
|
|
366
|
+
lines.push(`${i + 1}. ${reQuestions[i]}`);
|
|
367
|
+
}
|
|
368
|
+
lines.push('');
|
|
369
|
+
lines.push(`💡 *Tip: If you meant a commodified or market version of this concept ` +
|
|
370
|
+
`(e.g., "bottled oxygen" instead of "air"), re-specify the component with its economic context.*`);
|
|
371
|
+
return lines.join('\n');
|
|
372
|
+
}
|
|
373
|
+
/**
|
|
374
|
+
* Format Wardley component type metadata into a markdown line.
|
|
375
|
+
*
|
|
376
|
+
* The 4 Wardley component types are:
|
|
377
|
+
* - Activity: things you do (manage, process, deliver…)
|
|
378
|
+
* - Practice: how you do things (methodologies, standards…)
|
|
379
|
+
* - Data: information, metrics, records, signals
|
|
380
|
+
* - Knowledge: expertise, skills, understanding, models
|
|
381
|
+
*
|
|
382
|
+
* @param {{ type: string, confidence: number, reason: string }} wardleyType
|
|
383
|
+
* @returns {string} Markdown line
|
|
384
|
+
*/
|
|
385
|
+
// any: wardleyType is the heterogeneous output of classifyWardleyType
|
|
386
|
+
function formatWardleyTypeBlock(wardleyType) {
|
|
387
|
+
const typeLabels = {
|
|
388
|
+
activity: 'Activity (what you do)',
|
|
389
|
+
practice: 'Practice (how you do it)',
|
|
390
|
+
data: 'Data (information/records)',
|
|
391
|
+
knowledge: 'Knowledge (expertise/understanding)',
|
|
392
|
+
};
|
|
393
|
+
const label = typeLabels[wardleyType.type] || wardleyType.type;
|
|
394
|
+
const conf = formatConfidence(wardleyType.confidence);
|
|
395
|
+
return `**Wardley Component Type:** ${label} — ${conf.percentage} confidence (${wardleyType.reason})`;
|
|
396
|
+
}
|
|
397
|
+
/**
|
|
398
|
+
* Format routing metadata (solution vs capability detection) into a markdown block.
|
|
399
|
+
*
|
|
400
|
+
* Shows the component type detection result, confidence, method used,
|
|
401
|
+
* and which strategy pipeline(s) were dispatched.
|
|
402
|
+
*
|
|
403
|
+
* @param {Object} routing - Routing metadata from estimate-evolution.mjs
|
|
404
|
+
* @param {string} routing.type - 'solution' or 'capability'
|
|
405
|
+
* @param {number} routing.confidence - Detection confidence (0–1)
|
|
406
|
+
* @param {string} routing.method - Detection method ('known-solution', 'known-capability', 'heuristic', 'naming+llm', etc.)
|
|
407
|
+
* @param {string} routing.evalMode - 'exclusive' or 'parallel'
|
|
408
|
+
* @param {boolean} routing.usedSolutionStrategies - Whether solution strategies ran
|
|
409
|
+
* @param {boolean} routing.usedCapabilityStrategies - Whether capability strategies ran
|
|
410
|
+
* @param {boolean} [routing.verified] - Whether dual-verification confirmed the classification
|
|
411
|
+
* @param {string[]} [routing.tiersUsed] - Verification tiers invoked (e.g. ['naming', 'llm'])
|
|
412
|
+
* @returns {string} Markdown block
|
|
413
|
+
*/
|
|
414
|
+
// any: routing carries diverse fields from RoutingMetadata + dispatch extensions
|
|
415
|
+
function formatRoutingBlock(routing) {
|
|
416
|
+
const typeLabel = routing.type === 'solution'
|
|
417
|
+
? 'Named Solution (product/platform)'
|
|
418
|
+
: 'Abstract Capability (activity/practice)';
|
|
419
|
+
const conf = formatConfidence(routing.confidence);
|
|
420
|
+
const methodLabels = {
|
|
421
|
+
'known-solution': 'dictionary match (known solution)',
|
|
422
|
+
'known-capability': 'dictionary match (known capability)',
|
|
423
|
+
'heuristic': 'naming convention heuristics',
|
|
424
|
+
'naming': 'naming convention',
|
|
425
|
+
'naming+llm': 'naming + LLM semantic classification',
|
|
426
|
+
'naming+web-search': 'naming + web search evidence',
|
|
427
|
+
'naming+llm+web-search': 'naming + LLM + web search (full pipeline)',
|
|
428
|
+
};
|
|
429
|
+
const methodLabel = methodLabels[routing.method] || routing.method;
|
|
430
|
+
const lines = [
|
|
431
|
+
`**Component Type:** ${typeLabel}`,
|
|
432
|
+
` Detection: ${conf.bar} ${conf.percentage} confidence via ${methodLabel}`,
|
|
433
|
+
];
|
|
434
|
+
// Show which strategy pipelines were dispatched
|
|
435
|
+
const pipelines = [];
|
|
436
|
+
if (routing.usedSolutionStrategies)
|
|
437
|
+
pipelines.push('solution (12-property evaluation)');
|
|
438
|
+
if (routing.usedCapabilityStrategies)
|
|
439
|
+
pipelines.push('capability (s-curve, publication, LLM, etc.)');
|
|
440
|
+
if (pipelines.length > 0) {
|
|
441
|
+
const modeLabel = routing.evalMode === 'parallel' ? 'parallel' : 'exclusive';
|
|
442
|
+
lines.push(` Evaluation: ${pipelines.join(' + ')} [${modeLabel} mode]`);
|
|
443
|
+
}
|
|
444
|
+
// Show verification status if dual-verification was used
|
|
445
|
+
if (routing.verified != null) {
|
|
446
|
+
const verifiedLabel = routing.verified ? 'confirmed' : 'unverified (low agreement)';
|
|
447
|
+
const tiers = routing.tiersUsed?.join(' → ') || 'unknown';
|
|
448
|
+
lines.push(` Verification: ${verifiedLabel} (tiers: ${tiers})`);
|
|
449
|
+
}
|
|
450
|
+
return lines.join('\n');
|
|
451
|
+
}
|
|
452
|
+
/**
|
|
453
|
+
* Format detailed results with reasoning for each strategy.
|
|
454
|
+
*
|
|
455
|
+
* @param {Array} successful - [[method, result], ...]
|
|
456
|
+
* @param {Array} errors - [[method, result], ...]
|
|
457
|
+
* @param {Object} component
|
|
458
|
+
* @returns {string}
|
|
459
|
+
*/
|
|
460
|
+
// any: successful/errors arrays mix strategy result entries; component is loose
|
|
461
|
+
function formatDetailedResults(successful, errors, component) {
|
|
462
|
+
const lines = [];
|
|
463
|
+
// Consensus summary (if multiple strategies)
|
|
464
|
+
if (successful.length > 1) {
|
|
465
|
+
lines.push(formatConsensus(successful));
|
|
466
|
+
lines.push('');
|
|
467
|
+
}
|
|
468
|
+
lines.push('### Strategy Results');
|
|
469
|
+
lines.push('');
|
|
470
|
+
for (const [method, ev] of successful) {
|
|
471
|
+
lines.push(formatStrategyResult(method, ev, component));
|
|
472
|
+
lines.push('');
|
|
473
|
+
}
|
|
474
|
+
if (errors.length > 0) {
|
|
475
|
+
lines.push('### Strategies with Errors');
|
|
476
|
+
lines.push('');
|
|
477
|
+
for (const [method, ev] of errors) {
|
|
478
|
+
lines.push(formatStrategyResult(method, ev, component));
|
|
479
|
+
}
|
|
480
|
+
lines.push('');
|
|
481
|
+
}
|
|
482
|
+
return lines.join('\n');
|
|
483
|
+
}
|
|
484
|
+
/**
|
|
485
|
+
* Format compact results as a table.
|
|
486
|
+
*
|
|
487
|
+
* @param {Array} successful
|
|
488
|
+
* @param {Array} errors
|
|
489
|
+
* @param {Object} component
|
|
490
|
+
* @returns {string}
|
|
491
|
+
*/
|
|
492
|
+
// any: same shapes as formatDetailedResults — compact variant
|
|
493
|
+
function formatCompactResults(successful, errors, component) {
|
|
494
|
+
const lines = [];
|
|
495
|
+
lines.push('| Strategy | Evolution | Stage | Confidence |');
|
|
496
|
+
lines.push('|----------|-----------|-------|------------|');
|
|
497
|
+
for (const [method, ev] of successful) {
|
|
498
|
+
const stage = evolutionToStage(ev.evolution ?? 0);
|
|
499
|
+
const conf = formatConfidence(ev.confidence ?? 0);
|
|
500
|
+
lines.push(`| ${method} | ${stage.position} | ${stage.shortName} | ${conf.percentage} |`);
|
|
501
|
+
}
|
|
502
|
+
for (const [method, ev] of errors) {
|
|
503
|
+
lines.push(`| ${method} | — | — | ⚠️ ${ev.error} |`);
|
|
504
|
+
}
|
|
505
|
+
// One-line consensus
|
|
506
|
+
if (successful.length > 1) {
|
|
507
|
+
const evolutions = successful.map(([, ev]) => ev.evolution ?? 0);
|
|
508
|
+
const avg = evolutions.reduce((a, b) => a + b, 0) / evolutions.length;
|
|
509
|
+
const avgStage = evolutionToStage(avg);
|
|
510
|
+
lines.push('');
|
|
511
|
+
lines.push(`**Consensus:** ~${avg.toFixed(3)} (${avgStage.name})`);
|
|
512
|
+
}
|
|
513
|
+
return lines.join('\n');
|
|
514
|
+
}
|
|
515
|
+
/**
|
|
516
|
+
* Format a consensus summary across multiple strategies.
|
|
517
|
+
*
|
|
518
|
+
* @param {Array} successful - [[method, result], ...]
|
|
519
|
+
* @returns {string}
|
|
520
|
+
*/
|
|
521
|
+
// any: successful is a list of strategy result entries
|
|
522
|
+
function formatConsensus(successful) {
|
|
523
|
+
// Guarded: successful only contains entries that already have evolution/confidence
|
|
524
|
+
const evolutions = successful.map(([, ev]) => ev.evolution ?? 0);
|
|
525
|
+
const confidences = successful.map(([, ev]) => ev.confidence ?? 0);
|
|
526
|
+
const avg = evolutions.reduce((a, b) => a + b, 0) / evolutions.length;
|
|
527
|
+
const min = Math.min(...evolutions);
|
|
528
|
+
const max = Math.max(...evolutions);
|
|
529
|
+
const spread = max - min;
|
|
530
|
+
const avgConf = confidences.reduce((a, b) => a + b, 0) / confidences.length;
|
|
531
|
+
const avgStage = evolutionToStage(avg);
|
|
532
|
+
const minStage = evolutionToStage(min);
|
|
533
|
+
const maxStage = evolutionToStage(max);
|
|
534
|
+
const lines = [
|
|
535
|
+
`### 📊 Consensus Overview`,
|
|
536
|
+
'',
|
|
537
|
+
`**${successful.length} strategies** evaluated — average evolution: **${avg.toFixed(3)}** (${avgStage.name})`,
|
|
538
|
+
'',
|
|
539
|
+
`| Metric | Value |`,
|
|
540
|
+
`|--------|-------|`,
|
|
541
|
+
`| Range | ${min.toFixed(3)} (${minStage.shortName}) – ${max.toFixed(3)} (${maxStage.shortName}) |`,
|
|
542
|
+
`| Spread | ${spread.toFixed(3)} |`,
|
|
543
|
+
`| Average confidence | ${formatConfidence(avgConf).percentage} |`,
|
|
544
|
+
];
|
|
545
|
+
// Agreement assessment
|
|
546
|
+
if (spread < 0.10) {
|
|
547
|
+
lines.push('');
|
|
548
|
+
lines.push('✅ **Strong agreement** — strategies converge on a narrow range.');
|
|
549
|
+
}
|
|
550
|
+
else if (spread < 0.25) {
|
|
551
|
+
lines.push('');
|
|
552
|
+
lines.push('🔶 **Moderate agreement** — strategies broadly agree but show some variation.');
|
|
553
|
+
}
|
|
554
|
+
else {
|
|
555
|
+
lines.push('');
|
|
556
|
+
lines.push('🔴 **Low agreement** — strategies diverge significantly. Consider providing more parameters to reduce uncertainty.');
|
|
557
|
+
}
|
|
558
|
+
return lines.join('\n');
|
|
559
|
+
}
|
|
560
|
+
/**
|
|
561
|
+
* Format guidance for conversational mode (mid-conversation).
|
|
562
|
+
*
|
|
563
|
+
* @param {Object} result - Conversational result with phase, nextQuestion, summary
|
|
564
|
+
* @returns {string}
|
|
565
|
+
*/
|
|
566
|
+
// any: result is a guided-turn shape (nextQuestion, phase, gathered, ...)
|
|
567
|
+
function formatConversationalGuidance(result) {
|
|
568
|
+
const lines = [];
|
|
569
|
+
if (result.nextQuestion) {
|
|
570
|
+
lines.push(`### Next: ${result.nextQuestion.prompt}`);
|
|
571
|
+
lines.push('');
|
|
572
|
+
if (result.nextQuestion.hints && result.nextQuestion.hints.length > 0) {
|
|
573
|
+
for (const hint of result.nextQuestion.hints) {
|
|
574
|
+
lines.push(`- ${hint}`);
|
|
575
|
+
}
|
|
576
|
+
lines.push('');
|
|
577
|
+
}
|
|
578
|
+
}
|
|
579
|
+
if (result.summary) {
|
|
580
|
+
const { gathered, missing, exchangeCount } = result.summary;
|
|
581
|
+
const gatheredKeys = Object.keys(gathered);
|
|
582
|
+
if (gatheredKeys.length > 0) {
|
|
583
|
+
lines.push(`*Gathered so far (${exchangeCount} exchange(s)):* ${gatheredKeys.join(', ')}`);
|
|
584
|
+
}
|
|
585
|
+
if (missing && missing.length > 0) {
|
|
586
|
+
lines.push(`*Still available to provide:* ${missing.join(', ')}`);
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
return lines.join('\n');
|
|
590
|
+
}
|
|
591
|
+
//# sourceMappingURL=response-formatter.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"response-formatter.mjs","sourceRoot":"","sources":["../../src/lib/response-formatter.mts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { type ToolConfig, type StrategyTypeKey } from './tool-config.schema.mjs';
|
|
2
|
+
export declare function loadToolConfig(): ToolConfig;
|
|
3
|
+
export declare function resolveStrategyForType(mode: 'auto', type: StrategyTypeKey): string;
|
|
4
|
+
export declare function resolveStrategyForType(mode: 'report', type: StrategyTypeKey): readonly string[];
|
|
5
|
+
export declare function getLoadedToolConfigPath(): string | undefined;
|
|
6
|
+
/** Test-only: clear the memoized config so the next call re-reads from disk. */
|
|
7
|
+
export declare function resetToolConfigCache(): void;
|
|
8
|
+
//# sourceMappingURL=loader.d.mts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"loader.d.mts","sourceRoot":"","sources":["../../../src/lib/tool-config/loader.mts"],"names":[],"mappings":"AAUA,OAAO,EAEL,KAAK,UAAU,EACf,KAAK,eAAe,EAErB,MAAM,0BAA0B,CAAC;AAalC,wBAAgB,cAAc,IAAI,UAAU,CA6B3C;AAED,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,eAAe,GAAG,MAAM,CAAC;AACpF,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,eAAe,GAAG,SAAS,MAAM,EAAE,CAAC;AAUjG,wBAAgB,uBAAuB,IAAI,MAAM,GAAG,SAAS,CAE5D;AAED,gFAAgF;AAChF,wBAAgB,oBAAoB,IAAI,IAAI,CAG3C"}
|