@dataparade/cli 0.0.1
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/LICENSE +674 -0
- package/README.md +592 -0
- package/dist/bin/cli.d.ts +2 -0
- package/dist/bin/cli.js +7 -0
- package/dist/bin/load-env.d.ts +2 -0
- package/dist/bin/load-env.js +4 -0
- package/dist/src/ai-enrichment/agent-orchestrator.d.ts +28 -0
- package/dist/src/ai-enrichment/agent-orchestrator.js +476 -0
- package/dist/src/ai-enrichment/agents/index.d.ts +4 -0
- package/dist/src/ai-enrichment/agents/index.js +50 -0
- package/dist/src/ai-enrichment/candidate-selector.d.ts +10 -0
- package/dist/src/ai-enrichment/candidate-selector.js +158 -0
- package/dist/src/ai-enrichment/fallbacks.d.ts +6 -0
- package/dist/src/ai-enrichment/fallbacks.js +762 -0
- package/dist/src/ai-enrichment/index.d.ts +15 -0
- package/dist/src/ai-enrichment/index.js +31 -0
- package/dist/src/ai-enrichment/merge-rules.d.ts +12 -0
- package/dist/src/ai-enrichment/merge-rules.js +321 -0
- package/dist/src/ai-enrichment/non-pii-signal-rules.d.ts +10 -0
- package/dist/src/ai-enrichment/non-pii-signal-rules.js +72 -0
- package/dist/src/ai-enrichment/openai-proposals-response.schema.d.ts +94 -0
- package/dist/src/ai-enrichment/openai-proposals-response.schema.js +82 -0
- package/dist/src/ai-enrichment/pii-signal-rules.d.ts +8 -0
- package/dist/src/ai-enrichment/pii-signal-rules.js +68 -0
- package/dist/src/ai-enrichment/pipeline.d.ts +2 -0
- package/dist/src/ai-enrichment/pipeline.js +48 -0
- package/dist/src/ai-enrichment/planner.d.ts +2 -0
- package/dist/src/ai-enrichment/planner.js +60 -0
- package/dist/src/ai-enrichment/prompts/provider-enrichment-prompts.d.ts +12 -0
- package/dist/src/ai-enrichment/prompts/provider-enrichment-prompts.js +45 -0
- package/dist/src/ai-enrichment/provider-prompt.d.ts +32 -0
- package/dist/src/ai-enrichment/provider-prompt.js +222 -0
- package/dist/src/ai-enrichment/provider-topology-rules.d.ts +52 -0
- package/dist/src/ai-enrichment/provider-topology-rules.js +190 -0
- package/dist/src/ai-enrichment/provider-topology-shared.d.ts +48 -0
- package/dist/src/ai-enrichment/provider-topology-shared.js +329 -0
- package/dist/src/ai-enrichment/providers/endpoint-resolution.d.ts +13 -0
- package/dist/src/ai-enrichment/providers/endpoint-resolution.js +41 -0
- package/dist/src/ai-enrichment/providers/families/chat-completions-family.d.ts +13 -0
- package/dist/src/ai-enrichment/providers/families/chat-completions-family.js +181 -0
- package/dist/src/ai-enrichment/providers/families/generate-content-family.d.ts +10 -0
- package/dist/src/ai-enrichment/providers/families/generate-content-family.js +93 -0
- package/dist/src/ai-enrichment/providers/families/messages-family.d.ts +10 -0
- package/dist/src/ai-enrichment/providers/families/messages-family.js +86 -0
- package/dist/src/ai-enrichment/providers/families/ollama-generate-family.d.ts +10 -0
- package/dist/src/ai-enrichment/providers/families/ollama-generate-family.js +69 -0
- package/dist/src/ai-enrichment/providers/fetch-with-timeout.d.ts +2 -0
- package/dist/src/ai-enrichment/providers/fetch-with-timeout.js +22 -0
- package/dist/src/ai-enrichment/providers/index.d.ts +16 -0
- package/dist/src/ai-enrichment/providers/index.js +40 -0
- package/dist/src/ai-enrichment/providers/mock.d.ts +5 -0
- package/dist/src/ai-enrichment/providers/mock.js +12 -0
- package/dist/src/ai-enrichment/providers/platform-proxy-provider.d.ts +20 -0
- package/dist/src/ai-enrichment/providers/platform-proxy-provider.js +116 -0
- package/dist/src/ai-enrichment/providers/presets.d.ts +14 -0
- package/dist/src/ai-enrichment/providers/presets.js +50 -0
- package/dist/src/ai-enrichment/providers/provider-contract.d.ts +20 -0
- package/dist/src/ai-enrichment/providers/provider-contract.js +703 -0
- package/dist/src/ai-enrichment/providers/provider-json-parse.d.ts +23 -0
- package/dist/src/ai-enrichment/providers/provider-json-parse.js +96 -0
- package/dist/src/ai-enrichment/providers/provider-output-token-budget.d.ts +5 -0
- package/dist/src/ai-enrichment/providers/provider-output-token-budget.js +11 -0
- package/dist/src/ai-enrichment/providers/provider-pricing.d.ts +7 -0
- package/dist/src/ai-enrichment/providers/provider-pricing.js +32 -0
- package/dist/src/ai-enrichment/providers/provider-runtime.d.ts +9 -0
- package/dist/src/ai-enrichment/providers/provider-runtime.js +54 -0
- package/dist/src/ai-enrichment/providers/resolve-provider.d.ts +27 -0
- package/dist/src/ai-enrichment/providers/resolve-provider.js +41 -0
- package/dist/src/ai-enrichment/providers/types.d.ts +24 -0
- package/dist/src/ai-enrichment/providers/types.js +2 -0
- package/dist/src/ai-enrichment/scan-paths.d.ts +9 -0
- package/dist/src/ai-enrichment/scan-paths.js +28 -0
- package/dist/src/ai-enrichment/sensitive-paths.d.ts +5 -0
- package/dist/src/ai-enrichment/sensitive-paths.js +10 -0
- package/dist/src/ai-enrichment/third-party-data-flow.d.ts +27 -0
- package/dist/src/ai-enrichment/third-party-data-flow.js +518 -0
- package/dist/src/ai-enrichment/third-party-evidence.d.ts +14 -0
- package/dist/src/ai-enrichment/third-party-evidence.js +426 -0
- package/dist/src/ai-enrichment/third-party-property-matrix.d.ts +14 -0
- package/dist/src/ai-enrichment/third-party-property-matrix.js +52 -0
- package/dist/src/ai-enrichment/third-party-subtype.d.ts +14 -0
- package/dist/src/ai-enrichment/third-party-subtype.js +166 -0
- package/dist/src/ai-enrichment/tools/index.d.ts +39 -0
- package/dist/src/ai-enrichment/tools/index.js +121 -0
- package/dist/src/ai-enrichment/types.d.ts +170 -0
- package/dist/src/ai-enrichment/types.js +12 -0
- package/dist/src/analyzers/python/dependency-manifests.d.ts +8 -0
- package/dist/src/analyzers/python/dependency-manifests.js +131 -0
- package/dist/src/analyzers/python/detector.d.ts +3 -0
- package/dist/src/analyzers/python/detector.js +22 -0
- package/dist/src/analyzers/python/index.d.ts +2 -0
- package/dist/src/analyzers/python/index.js +11 -0
- package/dist/src/analyzers/python/manifest-parsers.d.ts +3 -0
- package/dist/src/analyzers/python/manifest-parsers.js +134 -0
- package/dist/src/analyzers/python/parser.d.ts +26 -0
- package/dist/src/analyzers/python/parser.js +187 -0
- package/dist/src/analyzers/python/patterns.d.ts +7 -0
- package/dist/src/analyzers/python/patterns.js +106 -0
- package/dist/src/analyzers/python/python-detection-config.d.ts +75 -0
- package/dist/src/analyzers/python/python-detection-config.js +148 -0
- package/dist/src/analyzers/registry.d.ts +13 -0
- package/dist/src/analyzers/registry.js +60 -0
- package/dist/src/analyzers/shared/manifest-budgets.d.ts +19 -0
- package/dist/src/analyzers/shared/manifest-budgets.js +21 -0
- package/dist/src/analyzers/shared/manifest-fs.d.ts +13 -0
- package/dist/src/analyzers/shared/manifest-fs.js +138 -0
- package/dist/src/analyzers/shared/property-inference.d.ts +8 -0
- package/dist/src/analyzers/shared/property-inference.js +165 -0
- package/dist/src/analyzers/terraform/detector.d.ts +10 -0
- package/dist/src/analyzers/terraform/detector.js +198 -0
- package/dist/src/analyzers/terraform/index.d.ts +2 -0
- package/dist/src/analyzers/terraform/index.js +13 -0
- package/dist/src/analyzers/terraform/parser.d.ts +29 -0
- package/dist/src/analyzers/terraform/parser.js +202 -0
- package/dist/src/analyzers/terraform/terraform-detection-config.d.ts +48 -0
- package/dist/src/analyzers/terraform/terraform-detection-config.js +218 -0
- package/dist/src/analyzers/terraform/terraform-exec.d.ts +11 -0
- package/dist/src/analyzers/terraform/terraform-exec.js +35 -0
- package/dist/src/analyzers/terraform/terraform-module-manifest.d.ts +19 -0
- package/dist/src/analyzers/terraform/terraform-module-manifest.js +75 -0
- package/dist/src/analyzers/terraform/terraform-show-json.d.ts +15 -0
- package/dist/src/analyzers/terraform/terraform-show-json.js +188 -0
- package/dist/src/analyzers/terraform/terraform-utility-resource.d.ts +12 -0
- package/dist/src/analyzers/terraform/terraform-utility-resource.js +30 -0
- package/dist/src/analyzers/types.d.ts +5 -0
- package/dist/src/analyzers/types.js +2 -0
- package/dist/src/analyzers/typescript/actor-detection.d.ts +4 -0
- package/dist/src/analyzers/typescript/actor-detection.js +15 -0
- package/dist/src/analyzers/typescript/dependency-manifests.d.ts +9 -0
- package/dist/src/analyzers/typescript/dependency-manifests.js +131 -0
- package/dist/src/analyzers/typescript/detector.d.ts +3 -0
- package/dist/src/analyzers/typescript/detector.js +23 -0
- package/dist/src/analyzers/typescript/index.d.ts +2 -0
- package/dist/src/analyzers/typescript/index.js +11 -0
- package/dist/src/analyzers/typescript/manifest-parsers.d.ts +1 -0
- package/dist/src/analyzers/typescript/manifest-parsers.js +30 -0
- package/dist/src/analyzers/typescript/parser.d.ts +44 -0
- package/dist/src/analyzers/typescript/parser.js +287 -0
- package/dist/src/analyzers/typescript/third-party-detection.d.ts +4 -0
- package/dist/src/analyzers/typescript/third-party-detection.js +16 -0
- package/dist/src/analyzers/typescript/typescript-detection-config.d.ts +68 -0
- package/dist/src/analyzers/typescript/typescript-detection-config.js +171 -0
- package/dist/src/analyzers/typescript/typescript-detection.d.ts +10 -0
- package/dist/src/analyzers/typescript/typescript-detection.js +57 -0
- package/dist/src/classifier/application-injection.d.ts +12 -0
- package/dist/src/classifier/application-injection.js +335 -0
- package/dist/src/classifier/classify.d.ts +3 -0
- package/dist/src/classifier/classify.js +15 -0
- package/dist/src/classifier/component-factory.d.ts +3 -0
- package/dist/src/classifier/component-factory.js +488 -0
- package/dist/src/classifier/config.d.ts +38 -0
- package/dist/src/classifier/config.js +260 -0
- package/dist/src/classifier/enhance-defaults.d.ts +28 -0
- package/dist/src/classifier/enhance-defaults.js +369 -0
- package/dist/src/classifier/enhance.d.ts +13 -0
- package/dist/src/classifier/enhance.js +295 -0
- package/dist/src/classifier/external-url-third-party.d.ts +26 -0
- package/dist/src/classifier/external-url-third-party.js +195 -0
- package/dist/src/classifier/grouping.d.ts +1 -0
- package/dist/src/classifier/grouping.js +2 -0
- package/dist/src/classifier/main-application-selection.d.ts +41 -0
- package/dist/src/classifier/main-application-selection.js +222 -0
- package/dist/src/classifier/naming.d.ts +4 -0
- package/dist/src/classifier/naming.js +78 -0
- package/dist/src/classifier/postprocessing.d.ts +12 -0
- package/dist/src/classifier/postprocessing.js +510 -0
- package/dist/src/classifier/sectioning.d.ts +5 -0
- package/dist/src/classifier/sectioning.js +60 -0
- package/dist/src/classifier/terraform-provider-hub.d.ts +6 -0
- package/dist/src/classifier/terraform-provider-hub.js +38 -0
- package/dist/src/cli.d.ts +2 -0
- package/dist/src/cli.js +498 -0
- package/dist/src/config/actor-detection-config.d.ts +21 -0
- package/dist/src/config/actor-detection-config.js +97 -0
- package/dist/src/config/env.d.ts +2 -0
- package/dist/src/config/env.js +75 -0
- package/dist/src/config/file.d.ts +6 -0
- package/dist/src/config/file.js +74 -0
- package/dist/src/config/inference-scope.d.ts +2 -0
- package/dist/src/config/inference-scope.js +15 -0
- package/dist/src/config/load-cli-env.d.ts +1 -0
- package/dist/src/config/load-cli-env.js +54 -0
- package/dist/src/config/normalize-ai-provider.d.ts +5 -0
- package/dist/src/config/normalize-ai-provider.js +18 -0
- package/dist/src/config/property-detection-config.d.ts +27 -0
- package/dist/src/config/property-detection-config.js +355 -0
- package/dist/src/config/redact.d.ts +3 -0
- package/dist/src/config/redact.js +14 -0
- package/dist/src/config/resolve.d.ts +15 -0
- package/dist/src/config/resolve.js +361 -0
- package/dist/src/config/scan-env.d.ts +7 -0
- package/dist/src/config/scan-env.js +38 -0
- package/dist/src/config/third-party-detection-config.d.ts +25 -0
- package/dist/src/config/third-party-detection-config.js +97 -0
- package/dist/src/config/types.d.ts +106 -0
- package/dist/src/config/types.js +2 -0
- package/dist/src/config/validate-scan-ai.d.ts +3 -0
- package/dist/src/config/validate-scan-ai.js +33 -0
- package/dist/src/core/pipeline/ai-orchestrator-options.d.ts +6 -0
- package/dist/src/core/pipeline/ai-orchestrator-options.js +46 -0
- package/dist/src/core/pipeline/classifier-phase.d.ts +7 -0
- package/dist/src/core/pipeline/classifier-phase.js +78 -0
- package/dist/src/core/pipeline/dataflow-phase.d.ts +7 -0
- package/dist/src/core/pipeline/dataflow-phase.js +10 -0
- package/dist/src/core/pipeline/diagram-layout/app-section-layout.d.ts +7 -0
- package/dist/src/core/pipeline/diagram-layout/app-section-layout.js +74 -0
- package/dist/src/core/pipeline/diagram-layout/constants.d.ts +11 -0
- package/dist/src/core/pipeline/diagram-layout/constants.js +14 -0
- package/dist/src/core/pipeline/diagram-layout/edge-handles.d.ts +3 -0
- package/dist/src/core/pipeline/diagram-layout/edge-handles.js +26 -0
- package/dist/src/core/pipeline/diagram-layout/managed-provider-layout.d.ts +3 -0
- package/dist/src/core/pipeline/diagram-layout/managed-provider-layout.js +40 -0
- package/dist/src/core/pipeline/diagram-layout/minimal-terraform-layout.d.ts +6 -0
- package/dist/src/core/pipeline/diagram-layout/minimal-terraform-layout.js +53 -0
- package/dist/src/core/pipeline/diagram-layout/section-helpers.d.ts +30 -0
- package/dist/src/core/pipeline/diagram-layout/section-helpers.js +62 -0
- package/dist/src/core/pipeline/diagram-layout/terraform-lane-layout.d.ts +3 -0
- package/dist/src/core/pipeline/diagram-layout/terraform-lane-layout.js +109 -0
- package/dist/src/core/pipeline/diagram-layout/types.d.ts +2 -0
- package/dist/src/core/pipeline/diagram-layout/types.js +2 -0
- package/dist/src/core/pipeline/graph-mapping.d.ts +6 -0
- package/dist/src/core/pipeline/graph-mapping.js +308 -0
- package/dist/src/core/pipeline/mixed-app-terraform-scan.d.ts +13 -0
- package/dist/src/core/pipeline/mixed-app-terraform-scan.js +81 -0
- package/dist/src/core/pipeline/orchestrator-result.d.ts +6 -0
- package/dist/src/core/pipeline/orchestrator-result.js +2 -0
- package/dist/src/core/pipeline/orchestrator.d.ts +26 -0
- package/dist/src/core/pipeline/orchestrator.js +79 -0
- package/dist/src/core/pipeline/resolve-path-under-scan-root.d.ts +7 -0
- package/dist/src/core/pipeline/resolve-path-under-scan-root.js +55 -0
- package/dist/src/core/pipeline/scan-pipeline.d.ts +6 -0
- package/dist/src/core/pipeline/scan-pipeline.js +364 -0
- package/dist/src/core/pipeline/sorting.d.ts +3 -0
- package/dist/src/core/pipeline/sorting.js +48 -0
- package/dist/src/core/pipeline/stable-component-ids.d.ts +15 -0
- package/dist/src/core/pipeline/stable-component-ids.js +68 -0
- package/dist/src/core/pipeline/structural-scan.d.ts +19 -0
- package/dist/src/core/pipeline/structural-scan.js +304 -0
- package/dist/src/core/pipeline/terraform-flow-utils.d.ts +6 -0
- package/dist/src/core/pipeline/terraform-flow-utils.js +32 -0
- package/dist/src/core/pipeline/terraform-minimal-services.d.ts +31 -0
- package/dist/src/core/pipeline/terraform-minimal-services.js +225 -0
- package/dist/src/core/schema/dataflow-wrapper.schema.d.ts +83 -0
- package/dist/src/core/schema/dataflow-wrapper.schema.js +40 -0
- package/dist/src/core/schema/diagram-graph.schema.d.ts +93 -0
- package/dist/src/core/schema/diagram-graph.schema.js +55 -0
- package/dist/src/core/schema/index.d.ts +4 -0
- package/dist/src/core/schema/index.js +20 -0
- package/dist/src/core/schema/scan-config.schema.d.ts +66 -0
- package/dist/src/core/schema/scan-config.schema.js +67 -0
- package/dist/src/core/schema/scan-result.schema.d.ts +450 -0
- package/dist/src/core/schema/scan-result.schema.js +236 -0
- package/dist/src/core/sectioning/discover-service-sections.d.ts +80 -0
- package/dist/src/core/sectioning/discover-service-sections.js +468 -0
- package/dist/src/core/sectioning/section-runtime.d.ts +21 -0
- package/dist/src/core/sectioning/section-runtime.js +148 -0
- package/dist/src/core/terraform/component-predicates.d.ts +13 -0
- package/dist/src/core/terraform/component-predicates.js +71 -0
- package/dist/src/core/types/component.d.ts +18 -0
- package/dist/src/core/types/component.js +2 -0
- package/dist/src/core/types/config.d.ts +57 -0
- package/dist/src/core/types/config.js +2 -0
- package/dist/src/core/types/data-flow.d.ts +24 -0
- package/dist/src/core/types/data-flow.js +2 -0
- package/dist/src/core/types/detection.d.ts +12 -0
- package/dist/src/core/types/detection.js +19 -0
- package/dist/src/core/types/file.d.ts +14 -0
- package/dist/src/core/types/file.js +2 -0
- package/dist/src/core/types/index.d.ts +7 -0
- package/dist/src/core/types/index.js +23 -0
- package/dist/src/core/types/progress.d.ts +9 -0
- package/dist/src/core/types/progress.js +2 -0
- package/dist/src/core/types/result.d.ts +140 -0
- package/dist/src/core/types/result.js +2 -0
- package/dist/src/data-flow/application-hub.d.ts +7 -0
- package/dist/src/data-flow/application-hub.js +88 -0
- package/dist/src/data-flow/dedupe.d.ts +7 -0
- package/dist/src/data-flow/dedupe.js +92 -0
- package/dist/src/data-flow/detect.d.ts +16 -0
- package/dist/src/data-flow/detect.js +203 -0
- package/dist/src/data-flow/detector.d.ts +15 -0
- package/dist/src/data-flow/detector.js +18 -0
- package/dist/src/data-flow/drop-cross-section-flows.d.ts +8 -0
- package/dist/src/data-flow/drop-cross-section-flows.js +32 -0
- package/dist/src/data-flow/ensure-actor-flow.d.ts +16 -0
- package/dist/src/data-flow/ensure-actor-flow.js +101 -0
- package/dist/src/data-flow/ensure-manifest-declared-flows.d.ts +14 -0
- package/dist/src/data-flow/ensure-manifest-declared-flows.js +76 -0
- package/dist/src/data-flow/ensure-section-api-flows.d.ts +6 -0
- package/dist/src/data-flow/ensure-section-api-flows.js +57 -0
- package/dist/src/data-flow/flow-builder.d.ts +5 -0
- package/dist/src/data-flow/flow-builder.js +80 -0
- package/dist/src/data-flow/import-graph.d.ts +10 -0
- package/dist/src/data-flow/import-graph.js +147 -0
- package/dist/src/data-flow/index.d.ts +8 -0
- package/dist/src/data-flow/index.js +20 -0
- package/dist/src/data-flow/internal-fetch.d.ts +8 -0
- package/dist/src/data-flow/internal-fetch.js +209 -0
- package/dist/src/data-flow/postprocess.d.ts +9 -0
- package/dist/src/data-flow/postprocess.js +63 -0
- package/dist/src/data-flow/rewire.d.ts +10 -0
- package/dist/src/data-flow/rewire.js +93 -0
- package/dist/src/data-flow/source-attribution.d.ts +8 -0
- package/dist/src/data-flow/source-attribution.js +131 -0
- package/dist/src/data-flow/source-resolution.d.ts +13 -0
- package/dist/src/data-flow/source-resolution.js +61 -0
- package/dist/src/data-flow/target-matching.d.ts +21 -0
- package/dist/src/data-flow/target-matching.js +253 -0
- package/dist/src/data-flow/terraform-flows.d.ts +32 -0
- package/dist/src/data-flow/terraform-flows.js +170 -0
- package/dist/src/evals/metrics.d.ts +18 -0
- package/dist/src/evals/metrics.js +58 -0
- package/dist/src/evals/run-model-matrix.d.ts +1 -0
- package/dist/src/evals/run-model-matrix.js +68 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.js +20 -0
- package/dist/src/ingest/file-system.d.ts +17 -0
- package/dist/src/ingest/file-system.js +239 -0
- package/dist/src/ingest/gitignore.d.ts +12 -0
- package/dist/src/ingest/gitignore.js +127 -0
- package/dist/src/ingest/sensitive-paths.d.ts +2 -0
- package/dist/src/ingest/sensitive-paths.js +8 -0
- package/dist/src/observability/scan-sentry.d.ts +20 -0
- package/dist/src/observability/scan-sentry.js +133 -0
- package/dist/src/output/json.d.ts +51 -0
- package/dist/src/output/json.js +59 -0
- package/dist/src/patterns/config.d.ts +22 -0
- package/dist/src/patterns/config.js +119 -0
- package/dist/src/patterns/detectors/helpers.d.ts +19 -0
- package/dist/src/patterns/detectors/helpers.js +68 -0
- package/dist/src/patterns/detectors/python.d.ts +8 -0
- package/dist/src/patterns/detectors/python.js +412 -0
- package/dist/src/patterns/detectors/typescript.d.ts +8 -0
- package/dist/src/patterns/detectors/typescript.js +328 -0
- package/dist/src/patterns/engine.d.ts +40 -0
- package/dist/src/patterns/engine.js +111 -0
- package/dist/src/patterns/flow-source-patterns.d.ts +6 -0
- package/dist/src/patterns/flow-source-patterns.js +39 -0
- package/dist/src/patterns/frontend-frameworks.d.ts +4 -0
- package/dist/src/patterns/frontend-frameworks.js +25 -0
- package/dist/src/patterns/scan-exclusions.d.ts +14 -0
- package/dist/src/patterns/scan-exclusions.js +76 -0
- package/dist/src/platform-api/dataparade-api-base-url.d.ts +8 -0
- package/dist/src/platform-api/dataparade-api-base-url.js +17 -0
- package/dist/src/platform-api/estimate-scan-footprint.d.ts +8 -0
- package/dist/src/platform-api/estimate-scan-footprint.js +120 -0
- package/dist/src/platform-api/scan-quota-client.d.ts +28 -0
- package/dist/src/platform-api/scan-quota-client.js +79 -0
- package/dist/src/tracing/langsmith-tracing.d.ts +37 -0
- package/dist/src/tracing/langsmith-tracing.js +171 -0
- package/dist/tests/cli/cli.spec.d.ts +1 -0
- package/dist/tests/cli/cli.spec.js +87 -0
- package/dist/tests/fixtures/e2e-ts-sample/db-client-import.d.ts +2 -0
- package/dist/tests/fixtures/e2e-ts-sample/db-client-import.js +8 -0
- package/dist/tests/fixtures/e2e-ts-sample/db.d.ts +3 -0
- package/dist/tests/fixtures/e2e-ts-sample/db.js +7 -0
- package/dist/tests/fixtures/e2e-ts-sample/external-api.d.ts +1 -0
- package/dist/tests/fixtures/e2e-ts-sample/external-api.js +18 -0
- package/dist/tests/fixtures/e2e-ts-sample/pg-client.d.ts +3 -0
- package/dist/tests/fixtures/e2e-ts-sample/pg-client.js +7 -0
- package/dist/tests/fixtures/e2e-ts-sample/server.d.ts +14 -0
- package/dist/tests/fixtures/e2e-ts-sample/server.js +4 -0
- package/dist/tests/fixtures/e2e-ts-sentry-route-env/server.d.ts +1 -0
- package/dist/tests/fixtures/e2e-ts-sentry-route-env/server.js +24 -0
- package/dist/tests/fixtures/ingest-basic/src/index.d.ts +1 -0
- package/dist/tests/fixtures/ingest-basic/src/index.js +6 -0
- package/dist/tests/fixtures/mixed-language-basic/api.d.ts +2 -0
- package/dist/tests/fixtures/mixed-language-basic/api.js +12 -0
- package/dist/tests/fixtures/monorepo-app-plus-terraform/packages/app/app/route.d.ts +1 -0
- package/dist/tests/fixtures/monorepo-app-plus-terraform/packages/app/app/route.js +6 -0
- package/dist/tests/fixtures/monorepo-front-back-sections/backend/app/route.d.ts +1 -0
- package/dist/tests/fixtures/monorepo-front-back-sections/backend/app/route.js +6 -0
- package/dist/tests/fixtures/monorepo-front-back-sections/frontend/app/route.d.ts +1 -0
- package/dist/tests/fixtures/monorepo-front-back-sections/frontend/app/route.js +7 -0
- package/dist/tests/fixtures/typescript-basic/app/route.d.ts +1 -0
- package/dist/tests/fixtures/typescript-basic/app/route.js +7 -0
- package/dist/tests/fixtures/typescript-basic/db-client-import.d.ts +2 -0
- package/dist/tests/fixtures/typescript-basic/db-client-import.js +8 -0
- package/dist/tests/fixtures/typescript-basic/db.d.ts +3 -0
- package/dist/tests/fixtures/typescript-basic/db.js +7 -0
- package/dist/tests/fixtures/typescript-basic/external-api.d.ts +1 -0
- package/dist/tests/fixtures/typescript-basic/external-api.js +18 -0
- package/dist/tests/fixtures/typescript-basic/pg-client.d.ts +3 -0
- package/dist/tests/fixtures/typescript-basic/pg-client.js +7 -0
- package/dist/tests/fixtures/typescript-basic/server.d.ts +14 -0
- package/dist/tests/fixtures/typescript-basic/server.js +4 -0
- package/dist/tests/fixtures/typescript-dependency-manifests-basic/src/index.d.ts +0 -0
- package/dist/tests/fixtures/typescript-dependency-manifests-basic/src/index.js +2 -0
- package/dist/tests/helpers/scan-result-builders.d.ts +2 -0
- package/dist/tests/helpers/scan-result-builders.js +15 -0
- package/dist/tests/schema/dataflow-wrapper.schema.spec.d.ts +1 -0
- package/dist/tests/schema/dataflow-wrapper.schema.spec.js +89 -0
- package/dist/tests/schema/diagram-graph.schema.spec.d.ts +1 -0
- package/dist/tests/schema/diagram-graph.schema.spec.js +48 -0
- package/dist/tests/schema/scan-config.schema.spec.d.ts +1 -0
- package/dist/tests/schema/scan-config.schema.spec.js +135 -0
- package/dist/tests/schema/scan-result.schema.spec.d.ts +1 -0
- package/dist/tests/schema/scan-result.schema.spec.js +177 -0
- package/dist/tests/unit/ai-enrichment/agent-orchestrator.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/agent-orchestrator.spec.js +483 -0
- package/dist/tests/unit/ai-enrichment/candidate-selector.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/candidate-selector.spec.js +106 -0
- package/dist/tests/unit/ai-enrichment/create-ai-provider.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/create-ai-provider.spec.js +32 -0
- package/dist/tests/unit/ai-enrichment/endpoint-resolution.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/endpoint-resolution.spec.js +47 -0
- package/dist/tests/unit/ai-enrichment/fallbacks.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/fallbacks.spec.js +1304 -0
- package/dist/tests/unit/ai-enrichment/families/chat-completions-family.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/families/chat-completions-family.spec.js +219 -0
- package/dist/tests/unit/ai-enrichment/families/generate-content-family.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/families/generate-content-family.spec.js +119 -0
- package/dist/tests/unit/ai-enrichment/families/messages-family.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/families/messages-family.spec.js +129 -0
- package/dist/tests/unit/ai-enrichment/families/ollama-generate-family.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/families/ollama-generate-family.spec.js +69 -0
- package/dist/tests/unit/ai-enrichment/merge-rules.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/merge-rules.spec.js +422 -0
- package/dist/tests/unit/ai-enrichment/openai-proposals-response.schema.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/openai-proposals-response.schema.spec.js +30 -0
- package/dist/tests/unit/ai-enrichment/pipeline.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/pipeline.spec.js +120 -0
- package/dist/tests/unit/ai-enrichment/planner.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/planner.spec.js +106 -0
- package/dist/tests/unit/ai-enrichment/platform-proxy-provider.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/platform-proxy-provider.spec.js +51 -0
- package/dist/tests/unit/ai-enrichment/provider-contract.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-contract.spec.js +244 -0
- package/dist/tests/unit/ai-enrichment/provider-json-parse.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-json-parse.spec.js +24 -0
- package/dist/tests/unit/ai-enrichment/provider-output-token-budget.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-output-token-budget.spec.js +15 -0
- package/dist/tests/unit/ai-enrichment/provider-prompt-env.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-prompt-env.spec.js +54 -0
- package/dist/tests/unit/ai-enrichment/provider-prompt.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-prompt.spec.js +206 -0
- package/dist/tests/unit/ai-enrichment/provider-topology-terraform-aws.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-topology-terraform-aws.spec.js +43 -0
- package/dist/tests/unit/ai-enrichment/provider-topology-terraform-kubernetes.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-topology-terraform-kubernetes.spec.js +40 -0
- package/dist/tests/unit/ai-enrichment/providers/fetch-with-timeout.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/providers/fetch-with-timeout.spec.js +22 -0
- package/dist/tests/unit/ai-enrichment/resolve-provider.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/resolve-provider.spec.js +67 -0
- package/dist/tests/unit/ai-enrichment/scan-paths-exact.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/scan-paths-exact.spec.js +35 -0
- package/dist/tests/unit/ai-enrichment/scan-paths.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/scan-paths.spec.js +21 -0
- package/dist/tests/unit/ai-enrichment/sensitive-paths.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/sensitive-paths.spec.js +20 -0
- package/dist/tests/unit/ai-enrichment/third-party-data-flow.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/third-party-data-flow.spec.js +963 -0
- package/dist/tests/unit/ai-enrichment/third-party-evidence.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/third-party-evidence.spec.js +117 -0
- package/dist/tests/unit/ai-enrichment/third-party-subtype.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/third-party-subtype.spec.js +45 -0
- package/dist/tests/unit/ai-enrichment/tools-validation.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/tools-validation.spec.js +66 -0
- package/dist/tests/unit/analyzers/python/parser.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/python/parser.spec.js +104 -0
- package/dist/tests/unit/analyzers/python/patterns.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/python/patterns.spec.js +289 -0
- package/dist/tests/unit/analyzers/registry.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/registry.spec.js +234 -0
- package/dist/tests/unit/analyzers/terraform/classifier-subtype-parity.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/classifier-subtype-parity.spec.js +87 -0
- package/dist/tests/unit/analyzers/terraform/detector.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/detector.spec.js +110 -0
- package/dist/tests/unit/analyzers/terraform/generated-provider-hints.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/generated-provider-hints.spec.js +53 -0
- package/dist/tests/unit/analyzers/terraform/parser.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/parser.spec.js +56 -0
- package/dist/tests/unit/analyzers/terraform/terraform-module-manifest.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/terraform-module-manifest.spec.js +63 -0
- package/dist/tests/unit/analyzers/terraform/terraform-utility-resource.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/terraform-utility-resource.spec.js +19 -0
- package/dist/tests/unit/analyzers/terraform-exec.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform-exec.spec.js +27 -0
- package/dist/tests/unit/analyzers/terraform-show-json.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform-show-json.spec.js +77 -0
- package/dist/tests/unit/analyzers/typescript/dependency-manifests.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/dependency-manifests.spec.js +61 -0
- package/dist/tests/unit/analyzers/typescript/detector.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/detector.spec.js +225 -0
- package/dist/tests/unit/analyzers/typescript/external-apis-auth0.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/external-apis-auth0.spec.js +49 -0
- package/dist/tests/unit/analyzers/typescript/external-apis-sentry.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/external-apis-sentry.spec.js +27 -0
- package/dist/tests/unit/analyzers/typescript/fixture-integration.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/fixture-integration.spec.js +64 -0
- package/dist/tests/unit/analyzers/typescript/parser.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/parser.spec.js +99 -0
- package/dist/tests/unit/analyzers/typescript/pattern-config.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/pattern-config.spec.js +24 -0
- package/dist/tests/unit/analyzers/typescript/property-detection.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/property-detection.spec.js +138 -0
- package/dist/tests/unit/classifier/classify.spec.d.ts +1 -0
- package/dist/tests/unit/classifier/classify.spec.js +1453 -0
- package/dist/tests/unit/classifier/enhance.spec.d.ts +1 -0
- package/dist/tests/unit/classifier/enhance.spec.js +400 -0
- package/dist/tests/unit/classifier/external-url-third-party.spec.d.ts +1 -0
- package/dist/tests/unit/classifier/external-url-third-party.spec.js +83 -0
- package/dist/tests/unit/classifier/frontend-framework-grouping.spec.d.ts +1 -0
- package/dist/tests/unit/classifier/frontend-framework-grouping.spec.js +44 -0
- package/dist/tests/unit/classifier/terraform-grouping.spec.d.ts +1 -0
- package/dist/tests/unit/classifier/terraform-grouping.spec.js +96 -0
- package/dist/tests/unit/cli/config-command.spec.d.ts +1 -0
- package/dist/tests/unit/cli/config-command.spec.js +51 -0
- package/dist/tests/unit/cli/scan-command-ai-flags.spec.d.ts +0 -0
- package/dist/tests/unit/cli/scan-command-ai-flags.spec.js +149 -0
- package/dist/tests/unit/cli/scan-command-diagram-graph.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-diagram-graph.spec.js +26 -0
- package/dist/tests/unit/cli/scan-command-e2e-monorepo-app-plus-terraform.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-monorepo-app-plus-terraform.spec.js +107 -0
- package/dist/tests/unit/cli/scan-command-e2e-monorepo-front-back-sections.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-monorepo-front-back-sections.spec.js +74 -0
- package/dist/tests/unit/cli/scan-command-e2e-python-basic.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-python-basic.spec.js +43 -0
- package/dist/tests/unit/cli/scan-command-e2e-terraform-basic.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-terraform-basic.spec.js +62 -0
- package/dist/tests/unit/cli/scan-command-e2e-ts-sample.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-ts-sample.spec.js +41 -0
- package/dist/tests/unit/cli/scan-command-e2e-ts-sentry-route-env.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-ts-sentry-route-env.spec.js +85 -0
- package/dist/tests/unit/cli/scan-command-exit-code.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-exit-code.spec.js +131 -0
- package/dist/tests/unit/cli/scan-quota-flow.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-quota-flow.spec.js +76 -0
- package/dist/tests/unit/config/property-detection-config.spec.d.ts +1 -0
- package/dist/tests/unit/config/property-detection-config.spec.js +38 -0
- package/dist/tests/unit/config/redact.spec.d.ts +1 -0
- package/dist/tests/unit/config/redact.spec.js +19 -0
- package/dist/tests/unit/config/resolve-config.spec.d.ts +1 -0
- package/dist/tests/unit/config/resolve-config.spec.js +172 -0
- package/dist/tests/unit/config/scan-env-debug.spec.d.ts +1 -0
- package/dist/tests/unit/config/scan-env-debug.spec.js +17 -0
- package/dist/tests/unit/config/validate-scan-ai.spec.d.ts +1 -0
- package/dist/tests/unit/config/validate-scan-ai.spec.js +53 -0
- package/dist/tests/unit/core/classifier-phase-regressions.spec.d.ts +1 -0
- package/dist/tests/unit/core/classifier-phase-regressions.spec.js +68 -0
- package/dist/tests/unit/core/dependency-manifest-performance-budgets.spec.d.ts +1 -0
- package/dist/tests/unit/core/dependency-manifest-performance-budgets.spec.js +66 -0
- package/dist/tests/unit/core/dependency-manifest-toggles-confidence.spec.d.ts +1 -0
- package/dist/tests/unit/core/dependency-manifest-toggles-confidence.spec.js +132 -0
- package/dist/tests/unit/core/discover-service-sections.spec.d.ts +1 -0
- package/dist/tests/unit/core/discover-service-sections.spec.js +204 -0
- package/dist/tests/unit/core/graph-mapping.spec.d.ts +1 -0
- package/dist/tests/unit/core/graph-mapping.spec.js +779 -0
- package/dist/tests/unit/core/invariant-tests-dedupe-determinism.spec.d.ts +1 -0
- package/dist/tests/unit/core/invariant-tests-dedupe-determinism.spec.js +64 -0
- package/dist/tests/unit/core/manifest-package-hub.spec.d.ts +1 -0
- package/dist/tests/unit/core/manifest-package-hub.spec.js +53 -0
- package/dist/tests/unit/core/monorepo-package-sections.spec.d.ts +1 -0
- package/dist/tests/unit/core/monorepo-package-sections.spec.js +121 -0
- package/dist/tests/unit/core/no-source-code-leakage.spec.d.ts +1 -0
- package/dist/tests/unit/core/no-source-code-leakage.spec.js +48 -0
- package/dist/tests/unit/core/orchestrator.spec.d.ts +1 -0
- package/dist/tests/unit/core/orchestrator.spec.js +252 -0
- package/dist/tests/unit/core/output-json.spec.d.ts +1 -0
- package/dist/tests/unit/core/output-json.spec.js +65 -0
- package/dist/tests/unit/core/parsing-error-handling-nonfatal.spec.d.ts +1 -0
- package/dist/tests/unit/core/parsing-error-handling-nonfatal.spec.js +42 -0
- package/dist/tests/unit/core/resolve-path-under-scan-root.spec.d.ts +1 -0
- package/dist/tests/unit/core/resolve-path-under-scan-root.spec.js +54 -0
- package/dist/tests/unit/core/scan-result-language-stats.spec.d.ts +1 -0
- package/dist/tests/unit/core/scan-result-language-stats.spec.js +15 -0
- package/dist/tests/unit/core/section-discovery-excludes.spec.d.ts +1 -0
- package/dist/tests/unit/core/section-discovery-excludes.spec.js +49 -0
- package/dist/tests/unit/core/section-runtime.spec.d.ts +1 -0
- package/dist/tests/unit/core/section-runtime.spec.js +166 -0
- package/dist/tests/unit/core/stable-component-ids.spec.d.ts +1 -0
- package/dist/tests/unit/core/stable-component-ids.spec.js +112 -0
- package/dist/tests/unit/core/structural-scan.spec.d.ts +1 -0
- package/dist/tests/unit/core/structural-scan.spec.js +83 -0
- package/dist/tests/unit/core/terraform-json-overlay.spec.d.ts +1 -0
- package/dist/tests/unit/core/terraform-json-overlay.spec.js +36 -0
- package/dist/tests/unit/core/terraform-minimal-services.spec.d.ts +1 -0
- package/dist/tests/unit/core/terraform-minimal-services.spec.js +378 -0
- package/dist/tests/unit/data-flow/application-hub.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/application-hub.spec.js +48 -0
- package/dist/tests/unit/data-flow/cross-section-terraform-bridge.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/cross-section-terraform-bridge.spec.js +95 -0
- package/dist/tests/unit/data-flow/dedupe.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/dedupe.spec.js +134 -0
- package/dist/tests/unit/data-flow/detector.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/detector.spec.js +1254 -0
- package/dist/tests/unit/data-flow/drop-cross-section-flows.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/drop-cross-section-flows.spec.js +132 -0
- package/dist/tests/unit/data-flow/ensure-actor-flow.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/ensure-actor-flow.spec.js +233 -0
- package/dist/tests/unit/data-flow/ensure-manifest-declared-flows.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/ensure-manifest-declared-flows.spec.js +125 -0
- package/dist/tests/unit/data-flow/ensure-section-api-flows.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/ensure-section-api-flows.spec.js +40 -0
- package/dist/tests/unit/data-flow/postprocess.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/postprocess.spec.js +78 -0
- package/dist/tests/unit/data-flow/rewire.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/rewire.spec.js +194 -0
- package/dist/tests/unit/data-flow/terraform-flows.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/terraform-flows.spec.js +199 -0
- package/dist/tests/unit/evals/metrics.spec.d.ts +1 -0
- package/dist/tests/unit/evals/metrics.spec.js +54 -0
- package/dist/tests/unit/ingest/env-exclusion.spec.d.ts +1 -0
- package/dist/tests/unit/ingest/env-exclusion.spec.js +43 -0
- package/dist/tests/unit/ingest/file-system.spec.d.ts +1 -0
- package/dist/tests/unit/ingest/file-system.spec.js +180 -0
- package/dist/tests/unit/ingest/gitignore.spec.d.ts +1 -0
- package/dist/tests/unit/ingest/gitignore.spec.js +30 -0
- package/dist/tests/unit/observability/scan-sentry.spec.d.ts +1 -0
- package/dist/tests/unit/observability/scan-sentry.spec.js +60 -0
- package/dist/tests/unit/patterns/scan-exclusions.spec.d.ts +1 -0
- package/dist/tests/unit/patterns/scan-exclusions.spec.js +58 -0
- package/dist/tests/unit/pipeline/ai-orchestrator-options.spec.d.ts +1 -0
- package/dist/tests/unit/pipeline/ai-orchestrator-options.spec.js +19 -0
- package/dist/tests/unit/platform-api/dataparade-api-base-url.spec.d.ts +1 -0
- package/dist/tests/unit/platform-api/dataparade-api-base-url.spec.js +19 -0
- package/dist/tests/unit/platform-api/estimate-scan-footprint.spec.d.ts +1 -0
- package/dist/tests/unit/platform-api/estimate-scan-footprint.spec.js +50 -0
- package/dist/tests/unit/tracing/langsmith-tracing.spec.d.ts +1 -0
- package/dist/tests/unit/tracing/langsmith-tracing.spec.js +118 -0
- package/package.json +84 -0
|
@@ -0,0 +1,476 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.generateAgenticProposals = generateAgenticProposals;
|
|
4
|
+
const agents_1 = require("./agents");
|
|
5
|
+
const provider_prompt_1 = require("./provider-prompt");
|
|
6
|
+
const providers_1 = require("./providers");
|
|
7
|
+
const tools_1 = require("./tools");
|
|
8
|
+
const langsmith_tracing_1 = require("../tracing/langsmith-tracing");
|
|
9
|
+
const third_party_evidence_1 = require("./third-party-evidence");
|
|
10
|
+
const provider_contract_1 = require("./providers/provider-contract");
|
|
11
|
+
const scan_paths_1 = require("./scan-paths");
|
|
12
|
+
const platform_proxy_provider_1 = require("./providers/platform-proxy-provider");
|
|
13
|
+
const PROPERTY_AGENT_SLICE_SIZE = 12;
|
|
14
|
+
const TP_AGENT_MAX_ROUNDS = 3;
|
|
15
|
+
const TP_AGENT_MAX_FILES = 8;
|
|
16
|
+
const TP_AGENT_SEARCH_LIMIT = 6;
|
|
17
|
+
const IMPORT_RE = /\bimport\s+(?:[^"']+from\s+)?["']([^"']+)["']|\brequire\(["']([^"']+)["']\)/g;
|
|
18
|
+
function chunkCandidates(queue, size) {
|
|
19
|
+
const n = Math.max(1, Math.floor(size));
|
|
20
|
+
const out = [];
|
|
21
|
+
for (let i = 0; i < queue.length; i += n) {
|
|
22
|
+
out.push(queue.slice(i, i + n));
|
|
23
|
+
}
|
|
24
|
+
return out;
|
|
25
|
+
}
|
|
26
|
+
function shouldCallProviderForAgent(agent) {
|
|
27
|
+
// Flow patches are now merge-gated to intra-section changes only, so provider
|
|
28
|
+
// calls can safely support both property and flow-oriented queues.
|
|
29
|
+
return (agent === "tpAgent" ||
|
|
30
|
+
agent === "propertyAgent" ||
|
|
31
|
+
agent === "directionAgent" ||
|
|
32
|
+
agent === "interactionAgent");
|
|
33
|
+
}
|
|
34
|
+
function estimateTokens(text) {
|
|
35
|
+
// Rough but stable approximation used only for budget gating.
|
|
36
|
+
return Math.max(1, Math.ceil(text.length / 4));
|
|
37
|
+
}
|
|
38
|
+
async function mapWithConcurrency(items, concurrency, mapper) {
|
|
39
|
+
if (items.length === 0)
|
|
40
|
+
return [];
|
|
41
|
+
const limit = Math.max(1, Math.floor(concurrency));
|
|
42
|
+
const out = new Array(items.length);
|
|
43
|
+
let next = 0;
|
|
44
|
+
const worker = async () => {
|
|
45
|
+
while (true) {
|
|
46
|
+
const index = next;
|
|
47
|
+
next += 1;
|
|
48
|
+
if (index >= items.length)
|
|
49
|
+
return;
|
|
50
|
+
out[index] = await mapper(items[index], index);
|
|
51
|
+
}
|
|
52
|
+
};
|
|
53
|
+
const workers = Array.from({ length: Math.min(limit, items.length) }, () => worker());
|
|
54
|
+
await Promise.all(workers);
|
|
55
|
+
return out;
|
|
56
|
+
}
|
|
57
|
+
function gatherSeedPathsForCandidate(candidate, components) {
|
|
58
|
+
const component = components.find((c) => c.id === candidate.componentId);
|
|
59
|
+
if (!component)
|
|
60
|
+
return [];
|
|
61
|
+
const out = new Set();
|
|
62
|
+
const sectionId = component.properties.section_id;
|
|
63
|
+
if (typeof sectionId === "string" && sectionId.trim())
|
|
64
|
+
out.add(sectionId.trim());
|
|
65
|
+
for (const loc of component.sourceLocations ?? []) {
|
|
66
|
+
if (loc.filePath?.trim())
|
|
67
|
+
out.add(loc.filePath.trim());
|
|
68
|
+
}
|
|
69
|
+
for (const ref of component.detectedFrom ?? []) {
|
|
70
|
+
const fp = ref.sourceLocation?.filePath;
|
|
71
|
+
if (fp?.trim())
|
|
72
|
+
out.add(fp.trim());
|
|
73
|
+
}
|
|
74
|
+
return [...out];
|
|
75
|
+
}
|
|
76
|
+
function gatherSearchTerms(componentName) {
|
|
77
|
+
const base = componentName.trim().toLowerCase();
|
|
78
|
+
const terms = new Set([base, "auth", "token", "api", "storage", "database"]);
|
|
79
|
+
if (base.includes("supabase")) {
|
|
80
|
+
terms.add("supabase");
|
|
81
|
+
terms.add("storage.from");
|
|
82
|
+
terms.add("create_client");
|
|
83
|
+
}
|
|
84
|
+
return [...terms].filter((t) => t.length >= 3);
|
|
85
|
+
}
|
|
86
|
+
function pickUniqueSearchMatches(matches, alreadyReviewed, limit) {
|
|
87
|
+
const max = Math.max(1, Math.floor(limit));
|
|
88
|
+
const preferred = [];
|
|
89
|
+
const fallback = [];
|
|
90
|
+
const seen = new Set();
|
|
91
|
+
for (const match of matches) {
|
|
92
|
+
const filePath = match.filePath?.trim();
|
|
93
|
+
if (!filePath || seen.has(filePath))
|
|
94
|
+
continue;
|
|
95
|
+
seen.add(filePath);
|
|
96
|
+
if (!alreadyReviewed.has(filePath))
|
|
97
|
+
preferred.push(match);
|
|
98
|
+
else
|
|
99
|
+
fallback.push(match);
|
|
100
|
+
}
|
|
101
|
+
return [...preferred, ...fallback].slice(0, max);
|
|
102
|
+
}
|
|
103
|
+
function resolveRelativeImportPath(fromFile, rawImport) {
|
|
104
|
+
if (!rawImport.startsWith("."))
|
|
105
|
+
return undefined;
|
|
106
|
+
const normalizedFrom = fromFile.replace(/\\/g, "/");
|
|
107
|
+
const parts = normalizedFrom.split("/");
|
|
108
|
+
parts.pop();
|
|
109
|
+
for (const piece of rawImport.split("/")) {
|
|
110
|
+
if (piece === "." || piece === "")
|
|
111
|
+
continue;
|
|
112
|
+
if (piece === "..")
|
|
113
|
+
parts.pop();
|
|
114
|
+
else
|
|
115
|
+
parts.push(piece);
|
|
116
|
+
}
|
|
117
|
+
const base = parts.join("/");
|
|
118
|
+
const candidates = [base, `${base}.ts`, `${base}.js`, `${base}.py`, `${base}/index.ts`, `${base}/index.js`];
|
|
119
|
+
return candidates[0];
|
|
120
|
+
}
|
|
121
|
+
function expandImportPaths(filePath, content) {
|
|
122
|
+
const out = [];
|
|
123
|
+
for (const match of content.matchAll(IMPORT_RE)) {
|
|
124
|
+
const rawImport = (match[1] ?? match[2] ?? "").trim();
|
|
125
|
+
if (!rawImport)
|
|
126
|
+
continue;
|
|
127
|
+
const rel = resolveRelativeImportPath(filePath, rawImport);
|
|
128
|
+
if (rel)
|
|
129
|
+
out.push(rel);
|
|
130
|
+
}
|
|
131
|
+
return out;
|
|
132
|
+
}
|
|
133
|
+
function appendTraceStep(list, step) {
|
|
134
|
+
list.push(step);
|
|
135
|
+
}
|
|
136
|
+
function logToolStep(candidateId, step) {
|
|
137
|
+
if (!(0, provider_contract_1.aiDebugEnabled)())
|
|
138
|
+
return;
|
|
139
|
+
const touched = step.filesTouched?.length ?? 0;
|
|
140
|
+
const stats = step.stats && Object.keys(step.stats).length > 0
|
|
141
|
+
? ` stats=${JSON.stringify(step.stats)}`
|
|
142
|
+
: "";
|
|
143
|
+
console.warn(`[dataparade-ai] tpAgent tool call candidate=${candidateId} round=${step.round} action=${step.action} files_touched=${touched} detail="${step.detail}"${stats}`);
|
|
144
|
+
}
|
|
145
|
+
async function generateAgenticProposals(input, plan, candidates, options) {
|
|
146
|
+
const scanContext = {
|
|
147
|
+
components: input.components,
|
|
148
|
+
dataFlows: input.dataFlows,
|
|
149
|
+
findings: input.findings ?? [],
|
|
150
|
+
files: input.files ?? [],
|
|
151
|
+
sections: input.sections ?? [],
|
|
152
|
+
};
|
|
153
|
+
const localProposals = [];
|
|
154
|
+
const tools = (0, tools_1.createAgentTooling)(scanContext, candidates, localProposals);
|
|
155
|
+
const llmEnabled = options.llmEnabled !== false;
|
|
156
|
+
const skipStructural = options.skipStructuralHeuristics === true;
|
|
157
|
+
const provider = options.platformProxy
|
|
158
|
+
? new platform_proxy_provider_1.PlatformProxyProvider(options.platformProxy)
|
|
159
|
+
: (0, providers_1.createAiProvider)(options.provider, {
|
|
160
|
+
endpoint: options.endpoint,
|
|
161
|
+
model: options.model,
|
|
162
|
+
apiKey: options.apiKey,
|
|
163
|
+
});
|
|
164
|
+
const generated = [];
|
|
165
|
+
const agenticTrace = [];
|
|
166
|
+
const aggregateUsage = {
|
|
167
|
+
providerCalls: 0,
|
|
168
|
+
inputTokens: 0,
|
|
169
|
+
outputTokens: 0,
|
|
170
|
+
totalTokens: 0,
|
|
171
|
+
estimatedCostUsd: 0,
|
|
172
|
+
};
|
|
173
|
+
let sequence = 0;
|
|
174
|
+
for (const queue of plan.queues) {
|
|
175
|
+
if (!skipStructural && queue.agent === "tpAgent") {
|
|
176
|
+
for (const candidate of queue.queue) {
|
|
177
|
+
if (!candidate.componentId)
|
|
178
|
+
continue;
|
|
179
|
+
const component = input.components.find((item) => item.id === candidate.componentId);
|
|
180
|
+
if (!component || component.type !== "third_party")
|
|
181
|
+
continue;
|
|
182
|
+
const patch = (0, third_party_evidence_1.buildThirdPartyHeuristicProposal)({
|
|
183
|
+
candidate,
|
|
184
|
+
component,
|
|
185
|
+
files: input.files ?? [],
|
|
186
|
+
});
|
|
187
|
+
if (!patch)
|
|
188
|
+
continue;
|
|
189
|
+
const verification = (0, third_party_evidence_1.verifyThirdPartyProposal)(patch);
|
|
190
|
+
if (!verification.ok)
|
|
191
|
+
continue;
|
|
192
|
+
sequence += 1;
|
|
193
|
+
generated.push({ id: `heuristic_${sequence}`, proposal: patch });
|
|
194
|
+
}
|
|
195
|
+
}
|
|
196
|
+
if (!skipStructural) {
|
|
197
|
+
const heuristic = await (0, agents_1.runAgentQueue)(queue, tools);
|
|
198
|
+
for (const proposal of heuristic) {
|
|
199
|
+
sequence += 1;
|
|
200
|
+
generated.push({ id: `heuristic_${sequence}`, proposal });
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
if (!llmEnabled || !shouldCallProviderForAgent(queue.agent)) {
|
|
204
|
+
continue;
|
|
205
|
+
}
|
|
206
|
+
if (queue.agent === "tpAgent") {
|
|
207
|
+
const maxCalls = Math.max(0, Math.floor(queue.maxModelCalls));
|
|
208
|
+
const maxCandidates = maxCalls === 0 ? 0 : Math.min(queue.queue.length, maxCalls);
|
|
209
|
+
const tpCandidates = queue.queue.slice(0, maxCandidates);
|
|
210
|
+
const maxRounds = Math.max(1, options.toolLoopMaxRounds ?? TP_AGENT_MAX_ROUNDS);
|
|
211
|
+
const maxFiles = Math.max(1, options.toolLoopMaxFiles ?? TP_AGENT_MAX_FILES);
|
|
212
|
+
const maxSearches = Math.max(1, options.toolLoopMaxSearches ?? TP_AGENT_SEARCH_LIMIT);
|
|
213
|
+
const queueBudget = Math.max(0, Math.floor(queue.budgetTokens));
|
|
214
|
+
let queueBudgetSpent = 0;
|
|
215
|
+
for (const candidate of tpCandidates) {
|
|
216
|
+
const component = input.components.find((c) => c.id === candidate.componentId);
|
|
217
|
+
if (!component)
|
|
218
|
+
continue;
|
|
219
|
+
const traceSteps = [];
|
|
220
|
+
const reviewed = new Set();
|
|
221
|
+
const seed = gatherSeedPathsForCandidate(candidate, input.components);
|
|
222
|
+
for (const p of seed)
|
|
223
|
+
reviewed.add(p);
|
|
224
|
+
appendTraceStep(traceSteps, {
|
|
225
|
+
round: 0,
|
|
226
|
+
action: "seed_files",
|
|
227
|
+
detail: "Seed files from detectedFrom/sourceLocations/section_id",
|
|
228
|
+
filesTouched: [...reviewed],
|
|
229
|
+
stats: { seedCount: reviewed.size },
|
|
230
|
+
});
|
|
231
|
+
logToolStep(candidate.id, traceSteps[traceSteps.length - 1]);
|
|
232
|
+
const searchTerms = gatherSearchTerms(component.name);
|
|
233
|
+
for (const term of searchTerms.slice(0, maxSearches)) {
|
|
234
|
+
const rawMatches = tools.searchInFiles(term, seed.length > 0 ? seed : undefined);
|
|
235
|
+
const matches = pickUniqueSearchMatches(rawMatches, reviewed, 8);
|
|
236
|
+
for (const match of matches)
|
|
237
|
+
reviewed.add(match.filePath);
|
|
238
|
+
appendTraceStep(traceSteps, {
|
|
239
|
+
round: 0,
|
|
240
|
+
action: "search_text",
|
|
241
|
+
detail: `Search term: ${term}`,
|
|
242
|
+
filesTouched: matches.map((m) => m.filePath),
|
|
243
|
+
stats: { hits: matches.length },
|
|
244
|
+
});
|
|
245
|
+
logToolStep(candidate.id, traceSteps[traceSteps.length - 1]);
|
|
246
|
+
}
|
|
247
|
+
let finalProposals = [];
|
|
248
|
+
let executedRounds = 0;
|
|
249
|
+
for (let round = 1; round <= maxRounds; round += 1) {
|
|
250
|
+
executedRounds = round;
|
|
251
|
+
const preferredPaths = [...reviewed].slice(0, maxFiles);
|
|
252
|
+
const prompt = JSON.stringify((0, provider_prompt_1.buildProviderPromptPayload)({
|
|
253
|
+
agent: queue.agent,
|
|
254
|
+
queue: [candidate],
|
|
255
|
+
components: input.components,
|
|
256
|
+
dataFlows: input.dataFlows,
|
|
257
|
+
sections: input.sections,
|
|
258
|
+
files: input.files,
|
|
259
|
+
preferredPaths,
|
|
260
|
+
}));
|
|
261
|
+
const estimatedTokens = estimateTokens(prompt) + Math.max(1, options.maxTokens ?? 8192);
|
|
262
|
+
if (queueBudget > 0 && queueBudgetSpent + estimatedTokens > queueBudget) {
|
|
263
|
+
appendTraceStep(traceSteps, {
|
|
264
|
+
round,
|
|
265
|
+
action: "provider_infer",
|
|
266
|
+
detail: "Skipped provider inference due to queue budget limit",
|
|
267
|
+
filesTouched: preferredPaths,
|
|
268
|
+
stats: { estimatedTokens, queueBudget, queueBudgetSpent },
|
|
269
|
+
});
|
|
270
|
+
logToolStep(candidate.id, traceSteps[traceSteps.length - 1]);
|
|
271
|
+
break;
|
|
272
|
+
}
|
|
273
|
+
const providerResult = await (0, langsmith_tracing_1.traceDataparadeProviderInfer)({
|
|
274
|
+
providerId: options.provider,
|
|
275
|
+
model: options.model,
|
|
276
|
+
run: () => provider.infer({
|
|
277
|
+
prompt,
|
|
278
|
+
model: options.model,
|
|
279
|
+
endpoint: options.endpoint,
|
|
280
|
+
apiKey: options.apiKey,
|
|
281
|
+
maxTokens: options.maxTokens,
|
|
282
|
+
temperature: options.temperature,
|
|
283
|
+
}),
|
|
284
|
+
});
|
|
285
|
+
if (queueBudget > 0)
|
|
286
|
+
queueBudgetSpent += estimatedTokens;
|
|
287
|
+
if (providerResult.usage) {
|
|
288
|
+
aggregateUsage.providerCalls += 1;
|
|
289
|
+
aggregateUsage.inputTokens += providerResult.usage.inputTokens;
|
|
290
|
+
aggregateUsage.outputTokens += providerResult.usage.outputTokens;
|
|
291
|
+
aggregateUsage.totalTokens += providerResult.usage.totalTokens;
|
|
292
|
+
if (typeof providerResult.usage.estimatedCostUsd === "number") {
|
|
293
|
+
aggregateUsage.estimatedCostUsd =
|
|
294
|
+
(aggregateUsage.estimatedCostUsd ?? 0) + providerResult.usage.estimatedCostUsd;
|
|
295
|
+
}
|
|
296
|
+
else {
|
|
297
|
+
aggregateUsage.estimatedCostUsd = undefined;
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
appendTraceStep(traceSteps, {
|
|
301
|
+
round,
|
|
302
|
+
action: "provider_infer",
|
|
303
|
+
detail: "Provider inference call for current reviewed file set",
|
|
304
|
+
filesTouched: preferredPaths,
|
|
305
|
+
stats: { reviewedCount: preferredPaths.length, proposals: providerResult.proposals.length },
|
|
306
|
+
});
|
|
307
|
+
logToolStep(candidate.id, traceSteps[traceSteps.length - 1]);
|
|
308
|
+
const acceptedThisRound = [];
|
|
309
|
+
for (const proposal of providerResult.proposals) {
|
|
310
|
+
const verification = (0, third_party_evidence_1.verifyThirdPartyProposal)(proposal);
|
|
311
|
+
if (!verification.ok) {
|
|
312
|
+
if ((0, provider_contract_1.aiDebugEnabled)()) {
|
|
313
|
+
console.warn(`[dataparade-ai] tpAgent proposal rejected by verifyThirdPartyProposal: ${verification.reason}`);
|
|
314
|
+
}
|
|
315
|
+
continue;
|
|
316
|
+
}
|
|
317
|
+
const validation = tools.validateProposal(proposal);
|
|
318
|
+
if (!validation.ok) {
|
|
319
|
+
if ((0, provider_contract_1.aiDebugEnabled)()) {
|
|
320
|
+
console.warn(`[dataparade-ai] provider proposal rejected by tooling validation: ${validation.reason}`);
|
|
321
|
+
}
|
|
322
|
+
continue;
|
|
323
|
+
}
|
|
324
|
+
acceptedThisRound.push(proposal);
|
|
325
|
+
}
|
|
326
|
+
if (acceptedThisRound.length > 0)
|
|
327
|
+
finalProposals = acceptedThisRound;
|
|
328
|
+
const beforeExpand = reviewed.size;
|
|
329
|
+
const filesForExpand = [...reviewed].slice(0, maxFiles);
|
|
330
|
+
for (const fp of filesForExpand) {
|
|
331
|
+
const fi = input.files ? (0, scan_paths_1.resolveScannedFileExact)(input.files, fp) : undefined;
|
|
332
|
+
if (!fi)
|
|
333
|
+
continue;
|
|
334
|
+
const imports = expandImportPaths(fi.path, fi.content);
|
|
335
|
+
for (const imp of imports) {
|
|
336
|
+
if (reviewed.size >= maxFiles)
|
|
337
|
+
break;
|
|
338
|
+
const resolved = input.files
|
|
339
|
+
? (0, scan_paths_1.resolveScannedFileExact)(input.files, imp)
|
|
340
|
+
: undefined;
|
|
341
|
+
if (resolved)
|
|
342
|
+
reviewed.add(resolved.path);
|
|
343
|
+
}
|
|
344
|
+
if (reviewed.size >= maxFiles)
|
|
345
|
+
break;
|
|
346
|
+
}
|
|
347
|
+
const added = reviewed.size - beforeExpand;
|
|
348
|
+
appendTraceStep(traceSteps, {
|
|
349
|
+
round,
|
|
350
|
+
action: "expand_imports",
|
|
351
|
+
detail: "Expand import graph from reviewed files",
|
|
352
|
+
filesTouched: [...reviewed],
|
|
353
|
+
stats: { addedFiles: added, totalReviewed: reviewed.size },
|
|
354
|
+
});
|
|
355
|
+
logToolStep(candidate.id, traceSteps[traceSteps.length - 1]);
|
|
356
|
+
if (added === 0 && finalProposals.length > 0)
|
|
357
|
+
break;
|
|
358
|
+
}
|
|
359
|
+
appendTraceStep(traceSteps, {
|
|
360
|
+
round: executedRounds,
|
|
361
|
+
action: "finalize",
|
|
362
|
+
detail: "Finalize accepted proposals for candidate",
|
|
363
|
+
filesTouched: [...reviewed],
|
|
364
|
+
stats: { finalProposalCount: finalProposals.length },
|
|
365
|
+
});
|
|
366
|
+
logToolStep(candidate.id, traceSteps[traceSteps.length - 1]);
|
|
367
|
+
for (const proposal of finalProposals) {
|
|
368
|
+
sequence += 1;
|
|
369
|
+
generated.push({ id: `provider_${sequence}`, proposal });
|
|
370
|
+
if ((0, provider_contract_1.aiDebugEnabled)()) {
|
|
371
|
+
console.warn(`[dataparade-ai] provider proposal accepted: kind=${proposal.kind} candidate=${proposal.candidateType} agent=${queue.agent}`);
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
agenticTrace.push({
|
|
375
|
+
candidateId: candidate.id,
|
|
376
|
+
componentId: candidate.componentId,
|
|
377
|
+
filesReviewed: [...reviewed],
|
|
378
|
+
rounds: executedRounds,
|
|
379
|
+
toolCalls: traceSteps,
|
|
380
|
+
finalProposalCount: finalProposals.length,
|
|
381
|
+
});
|
|
382
|
+
}
|
|
383
|
+
continue;
|
|
384
|
+
}
|
|
385
|
+
// Non-tp agents stay in bounded prompt batches.
|
|
386
|
+
const providerSlices = chunkCandidates(queue.queue, PROPERTY_AGENT_SLICE_SIZE);
|
|
387
|
+
const preparedProviderCalls = providerSlices.map((slice) => {
|
|
388
|
+
const prompt = JSON.stringify((0, provider_prompt_1.buildProviderPromptPayload)({
|
|
389
|
+
agent: queue.agent,
|
|
390
|
+
queue: slice,
|
|
391
|
+
components: input.components,
|
|
392
|
+
dataFlows: input.dataFlows,
|
|
393
|
+
sections: input.sections,
|
|
394
|
+
files: input.files,
|
|
395
|
+
}));
|
|
396
|
+
const estimatedTokens = estimateTokens(prompt) + Math.max(1, options.maxTokens ?? 8192);
|
|
397
|
+
return { prompt, estimatedTokens };
|
|
398
|
+
});
|
|
399
|
+
const maxCalls = Math.max(0, Math.floor(queue.maxModelCalls));
|
|
400
|
+
const callsWithinLimit = maxCalls === 0
|
|
401
|
+
? []
|
|
402
|
+
: preparedProviderCalls.slice(0, Math.min(maxCalls, preparedProviderCalls.length));
|
|
403
|
+
const budget = Math.max(0, Math.floor(queue.budgetTokens));
|
|
404
|
+
const budgetedCalls = [];
|
|
405
|
+
if (budget > 0) {
|
|
406
|
+
let spent = 0;
|
|
407
|
+
for (const call of callsWithinLimit) {
|
|
408
|
+
if (spent + call.estimatedTokens > budget)
|
|
409
|
+
break;
|
|
410
|
+
budgetedCalls.push(call);
|
|
411
|
+
spent += call.estimatedTokens;
|
|
412
|
+
}
|
|
413
|
+
// Avoid starving property enrichment when estimated tokens are conservative.
|
|
414
|
+
if (queue.agent === "propertyAgent" &&
|
|
415
|
+
budgetedCalls.length === 0 &&
|
|
416
|
+
callsWithinLimit.length > 0) {
|
|
417
|
+
budgetedCalls.push(callsWithinLimit[0]);
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
else {
|
|
421
|
+
// Zero/negative budget means no provider calls for this queue.
|
|
422
|
+
budgetedCalls.push(...[]);
|
|
423
|
+
}
|
|
424
|
+
const providerConcurrency = Math.max(1, Math.floor(options.providerConcurrency ?? 1));
|
|
425
|
+
const providerResults = await mapWithConcurrency(budgetedCalls, providerConcurrency, (call) => (0, langsmith_tracing_1.traceDataparadeProviderInfer)({
|
|
426
|
+
providerId: options.provider,
|
|
427
|
+
model: options.model,
|
|
428
|
+
run: () => provider.infer({
|
|
429
|
+
prompt: call.prompt,
|
|
430
|
+
model: options.model,
|
|
431
|
+
endpoint: options.endpoint,
|
|
432
|
+
apiKey: options.apiKey,
|
|
433
|
+
maxTokens: options.maxTokens,
|
|
434
|
+
temperature: options.temperature,
|
|
435
|
+
}),
|
|
436
|
+
}));
|
|
437
|
+
for (const providerResult of providerResults) {
|
|
438
|
+
if (providerResult.usage) {
|
|
439
|
+
aggregateUsage.providerCalls += 1;
|
|
440
|
+
aggregateUsage.inputTokens += providerResult.usage.inputTokens;
|
|
441
|
+
aggregateUsage.outputTokens += providerResult.usage.outputTokens;
|
|
442
|
+
aggregateUsage.totalTokens += providerResult.usage.totalTokens;
|
|
443
|
+
if (typeof providerResult.usage.estimatedCostUsd === "number") {
|
|
444
|
+
aggregateUsage.estimatedCostUsd =
|
|
445
|
+
(aggregateUsage.estimatedCostUsd ?? 0) + providerResult.usage.estimatedCostUsd;
|
|
446
|
+
}
|
|
447
|
+
else {
|
|
448
|
+
aggregateUsage.estimatedCostUsd = undefined;
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
for (const proposal of providerResult.proposals) {
|
|
452
|
+
const validation = tools.validateProposal(proposal);
|
|
453
|
+
if (!validation.ok) {
|
|
454
|
+
if ((0, provider_contract_1.aiDebugEnabled)()) {
|
|
455
|
+
console.warn(`[dataparade-ai] provider proposal rejected by tooling validation: ${validation.reason}`);
|
|
456
|
+
}
|
|
457
|
+
continue;
|
|
458
|
+
}
|
|
459
|
+
sequence += 1;
|
|
460
|
+
generated.push({ id: `provider_${sequence}`, proposal });
|
|
461
|
+
if ((0, provider_contract_1.aiDebugEnabled)()) {
|
|
462
|
+
console.warn(`[dataparade-ai] provider proposal accepted: kind=${proposal.kind} candidate=${proposal.candidateType} agent=${queue.agent}`);
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
const hasUsage = aggregateUsage.providerCalls > 0 ||
|
|
468
|
+
aggregateUsage.inputTokens > 0 ||
|
|
469
|
+
aggregateUsage.outputTokens > 0 ||
|
|
470
|
+
aggregateUsage.totalTokens > 0 ||
|
|
471
|
+
agenticTrace.length > 0;
|
|
472
|
+
return {
|
|
473
|
+
proposals: generated,
|
|
474
|
+
usageSummary: hasUsage ? { ...aggregateUsage, agenticTrace } : undefined,
|
|
475
|
+
};
|
|
476
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.runAgentQueue = runAgentQueue;
|
|
4
|
+
function defaultEvidence(reason) {
|
|
5
|
+
return [{ filePath: "unknown", startLine: 1, endLine: 1, reason }];
|
|
6
|
+
}
|
|
7
|
+
async function runAgentQueue(queuePlan, tools) {
|
|
8
|
+
const proposals = [];
|
|
9
|
+
for (const candidate of queuePlan.queue) {
|
|
10
|
+
if (queuePlan.agent === "tpAgent") {
|
|
11
|
+
continue;
|
|
12
|
+
}
|
|
13
|
+
if (queuePlan.agent === "directionAgent" && candidate.flowId) {
|
|
14
|
+
proposals.push({
|
|
15
|
+
kind: "flow_patch",
|
|
16
|
+
candidateType: candidate.candidateType,
|
|
17
|
+
targetFlowId: candidate.flowId,
|
|
18
|
+
setDirection: "reverse",
|
|
19
|
+
confidence: { score: 0.8, band: "medium" },
|
|
20
|
+
evidence: defaultEvidence(candidate.rationale),
|
|
21
|
+
provider: "mock",
|
|
22
|
+
model: "heuristic",
|
|
23
|
+
agent: "directionAgent",
|
|
24
|
+
});
|
|
25
|
+
continue;
|
|
26
|
+
}
|
|
27
|
+
if (queuePlan.agent === "interactionAgent" && candidate.hints.length >= 2) {
|
|
28
|
+
const context = tools.getScanContext();
|
|
29
|
+
const sourceComponent = context.components.find((component) => String(component.properties.section_id ?? "") === candidate.hints[0]);
|
|
30
|
+
const targetComponent = context.components.find((component) => String(component.properties.section_id ?? "") === candidate.hints[1]);
|
|
31
|
+
if (sourceComponent && targetComponent) {
|
|
32
|
+
proposals.push({
|
|
33
|
+
kind: "flow_patch",
|
|
34
|
+
candidateType: candidate.candidateType,
|
|
35
|
+
insertIfMissing: true,
|
|
36
|
+
sourceComponentId: sourceComponent.id,
|
|
37
|
+
targetComponentId: targetComponent.id,
|
|
38
|
+
setType: "api_call",
|
|
39
|
+
confidence: { score: 0.86, band: "high" },
|
|
40
|
+
evidence: defaultEvidence(candidate.rationale),
|
|
41
|
+
provider: "mock",
|
|
42
|
+
model: "heuristic",
|
|
43
|
+
agent: "interactionAgent",
|
|
44
|
+
});
|
|
45
|
+
}
|
|
46
|
+
continue;
|
|
47
|
+
}
|
|
48
|
+
}
|
|
49
|
+
return proposals;
|
|
50
|
+
}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import type { ServiceSection } from "../core/sectioning/discover-service-sections";
|
|
2
|
+
import type { DetectedComponent } from "../core/types/component";
|
|
3
|
+
import type { DetectedDataFlow } from "../core/types/data-flow";
|
|
4
|
+
import type { AiInferenceCandidate, AiInferenceScope } from "./types";
|
|
5
|
+
export declare function selectInferenceCandidates(input: {
|
|
6
|
+
components: DetectedComponent[];
|
|
7
|
+
dataFlows: DetectedDataFlow[];
|
|
8
|
+
sections?: ServiceSection[];
|
|
9
|
+
inferenceScope?: AiInferenceScope;
|
|
10
|
+
}): AiInferenceCandidate[];
|