@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.
Files changed (621) hide show
  1. package/LICENSE +674 -0
  2. package/README.md +592 -0
  3. package/dist/bin/cli.d.ts +2 -0
  4. package/dist/bin/cli.js +7 -0
  5. package/dist/bin/load-env.d.ts +2 -0
  6. package/dist/bin/load-env.js +4 -0
  7. package/dist/src/ai-enrichment/agent-orchestrator.d.ts +28 -0
  8. package/dist/src/ai-enrichment/agent-orchestrator.js +476 -0
  9. package/dist/src/ai-enrichment/agents/index.d.ts +4 -0
  10. package/dist/src/ai-enrichment/agents/index.js +50 -0
  11. package/dist/src/ai-enrichment/candidate-selector.d.ts +10 -0
  12. package/dist/src/ai-enrichment/candidate-selector.js +158 -0
  13. package/dist/src/ai-enrichment/fallbacks.d.ts +6 -0
  14. package/dist/src/ai-enrichment/fallbacks.js +762 -0
  15. package/dist/src/ai-enrichment/index.d.ts +15 -0
  16. package/dist/src/ai-enrichment/index.js +31 -0
  17. package/dist/src/ai-enrichment/merge-rules.d.ts +12 -0
  18. package/dist/src/ai-enrichment/merge-rules.js +321 -0
  19. package/dist/src/ai-enrichment/non-pii-signal-rules.d.ts +10 -0
  20. package/dist/src/ai-enrichment/non-pii-signal-rules.js +72 -0
  21. package/dist/src/ai-enrichment/openai-proposals-response.schema.d.ts +94 -0
  22. package/dist/src/ai-enrichment/openai-proposals-response.schema.js +82 -0
  23. package/dist/src/ai-enrichment/pii-signal-rules.d.ts +8 -0
  24. package/dist/src/ai-enrichment/pii-signal-rules.js +68 -0
  25. package/dist/src/ai-enrichment/pipeline.d.ts +2 -0
  26. package/dist/src/ai-enrichment/pipeline.js +48 -0
  27. package/dist/src/ai-enrichment/planner.d.ts +2 -0
  28. package/dist/src/ai-enrichment/planner.js +60 -0
  29. package/dist/src/ai-enrichment/prompts/provider-enrichment-prompts.d.ts +12 -0
  30. package/dist/src/ai-enrichment/prompts/provider-enrichment-prompts.js +45 -0
  31. package/dist/src/ai-enrichment/provider-prompt.d.ts +32 -0
  32. package/dist/src/ai-enrichment/provider-prompt.js +222 -0
  33. package/dist/src/ai-enrichment/provider-topology-rules.d.ts +52 -0
  34. package/dist/src/ai-enrichment/provider-topology-rules.js +190 -0
  35. package/dist/src/ai-enrichment/provider-topology-shared.d.ts +48 -0
  36. package/dist/src/ai-enrichment/provider-topology-shared.js +329 -0
  37. package/dist/src/ai-enrichment/providers/endpoint-resolution.d.ts +13 -0
  38. package/dist/src/ai-enrichment/providers/endpoint-resolution.js +41 -0
  39. package/dist/src/ai-enrichment/providers/families/chat-completions-family.d.ts +13 -0
  40. package/dist/src/ai-enrichment/providers/families/chat-completions-family.js +181 -0
  41. package/dist/src/ai-enrichment/providers/families/generate-content-family.d.ts +10 -0
  42. package/dist/src/ai-enrichment/providers/families/generate-content-family.js +93 -0
  43. package/dist/src/ai-enrichment/providers/families/messages-family.d.ts +10 -0
  44. package/dist/src/ai-enrichment/providers/families/messages-family.js +86 -0
  45. package/dist/src/ai-enrichment/providers/families/ollama-generate-family.d.ts +10 -0
  46. package/dist/src/ai-enrichment/providers/families/ollama-generate-family.js +69 -0
  47. package/dist/src/ai-enrichment/providers/fetch-with-timeout.d.ts +2 -0
  48. package/dist/src/ai-enrichment/providers/fetch-with-timeout.js +22 -0
  49. package/dist/src/ai-enrichment/providers/index.d.ts +16 -0
  50. package/dist/src/ai-enrichment/providers/index.js +40 -0
  51. package/dist/src/ai-enrichment/providers/mock.d.ts +5 -0
  52. package/dist/src/ai-enrichment/providers/mock.js +12 -0
  53. package/dist/src/ai-enrichment/providers/platform-proxy-provider.d.ts +20 -0
  54. package/dist/src/ai-enrichment/providers/platform-proxy-provider.js +116 -0
  55. package/dist/src/ai-enrichment/providers/presets.d.ts +14 -0
  56. package/dist/src/ai-enrichment/providers/presets.js +50 -0
  57. package/dist/src/ai-enrichment/providers/provider-contract.d.ts +20 -0
  58. package/dist/src/ai-enrichment/providers/provider-contract.js +703 -0
  59. package/dist/src/ai-enrichment/providers/provider-json-parse.d.ts +23 -0
  60. package/dist/src/ai-enrichment/providers/provider-json-parse.js +96 -0
  61. package/dist/src/ai-enrichment/providers/provider-output-token-budget.d.ts +5 -0
  62. package/dist/src/ai-enrichment/providers/provider-output-token-budget.js +11 -0
  63. package/dist/src/ai-enrichment/providers/provider-pricing.d.ts +7 -0
  64. package/dist/src/ai-enrichment/providers/provider-pricing.js +32 -0
  65. package/dist/src/ai-enrichment/providers/provider-runtime.d.ts +9 -0
  66. package/dist/src/ai-enrichment/providers/provider-runtime.js +54 -0
  67. package/dist/src/ai-enrichment/providers/resolve-provider.d.ts +27 -0
  68. package/dist/src/ai-enrichment/providers/resolve-provider.js +41 -0
  69. package/dist/src/ai-enrichment/providers/types.d.ts +24 -0
  70. package/dist/src/ai-enrichment/providers/types.js +2 -0
  71. package/dist/src/ai-enrichment/scan-paths.d.ts +9 -0
  72. package/dist/src/ai-enrichment/scan-paths.js +28 -0
  73. package/dist/src/ai-enrichment/sensitive-paths.d.ts +5 -0
  74. package/dist/src/ai-enrichment/sensitive-paths.js +10 -0
  75. package/dist/src/ai-enrichment/third-party-data-flow.d.ts +27 -0
  76. package/dist/src/ai-enrichment/third-party-data-flow.js +518 -0
  77. package/dist/src/ai-enrichment/third-party-evidence.d.ts +14 -0
  78. package/dist/src/ai-enrichment/third-party-evidence.js +426 -0
  79. package/dist/src/ai-enrichment/third-party-property-matrix.d.ts +14 -0
  80. package/dist/src/ai-enrichment/third-party-property-matrix.js +52 -0
  81. package/dist/src/ai-enrichment/third-party-subtype.d.ts +14 -0
  82. package/dist/src/ai-enrichment/third-party-subtype.js +166 -0
  83. package/dist/src/ai-enrichment/tools/index.d.ts +39 -0
  84. package/dist/src/ai-enrichment/tools/index.js +121 -0
  85. package/dist/src/ai-enrichment/types.d.ts +170 -0
  86. package/dist/src/ai-enrichment/types.js +12 -0
  87. package/dist/src/analyzers/python/dependency-manifests.d.ts +8 -0
  88. package/dist/src/analyzers/python/dependency-manifests.js +131 -0
  89. package/dist/src/analyzers/python/detector.d.ts +3 -0
  90. package/dist/src/analyzers/python/detector.js +22 -0
  91. package/dist/src/analyzers/python/index.d.ts +2 -0
  92. package/dist/src/analyzers/python/index.js +11 -0
  93. package/dist/src/analyzers/python/manifest-parsers.d.ts +3 -0
  94. package/dist/src/analyzers/python/manifest-parsers.js +134 -0
  95. package/dist/src/analyzers/python/parser.d.ts +26 -0
  96. package/dist/src/analyzers/python/parser.js +187 -0
  97. package/dist/src/analyzers/python/patterns.d.ts +7 -0
  98. package/dist/src/analyzers/python/patterns.js +106 -0
  99. package/dist/src/analyzers/python/python-detection-config.d.ts +75 -0
  100. package/dist/src/analyzers/python/python-detection-config.js +148 -0
  101. package/dist/src/analyzers/registry.d.ts +13 -0
  102. package/dist/src/analyzers/registry.js +60 -0
  103. package/dist/src/analyzers/shared/manifest-budgets.d.ts +19 -0
  104. package/dist/src/analyzers/shared/manifest-budgets.js +21 -0
  105. package/dist/src/analyzers/shared/manifest-fs.d.ts +13 -0
  106. package/dist/src/analyzers/shared/manifest-fs.js +138 -0
  107. package/dist/src/analyzers/shared/property-inference.d.ts +8 -0
  108. package/dist/src/analyzers/shared/property-inference.js +165 -0
  109. package/dist/src/analyzers/terraform/detector.d.ts +10 -0
  110. package/dist/src/analyzers/terraform/detector.js +198 -0
  111. package/dist/src/analyzers/terraform/index.d.ts +2 -0
  112. package/dist/src/analyzers/terraform/index.js +13 -0
  113. package/dist/src/analyzers/terraform/parser.d.ts +29 -0
  114. package/dist/src/analyzers/terraform/parser.js +202 -0
  115. package/dist/src/analyzers/terraform/terraform-detection-config.d.ts +48 -0
  116. package/dist/src/analyzers/terraform/terraform-detection-config.js +218 -0
  117. package/dist/src/analyzers/terraform/terraform-exec.d.ts +11 -0
  118. package/dist/src/analyzers/terraform/terraform-exec.js +35 -0
  119. package/dist/src/analyzers/terraform/terraform-module-manifest.d.ts +19 -0
  120. package/dist/src/analyzers/terraform/terraform-module-manifest.js +75 -0
  121. package/dist/src/analyzers/terraform/terraform-show-json.d.ts +15 -0
  122. package/dist/src/analyzers/terraform/terraform-show-json.js +188 -0
  123. package/dist/src/analyzers/terraform/terraform-utility-resource.d.ts +12 -0
  124. package/dist/src/analyzers/terraform/terraform-utility-resource.js +30 -0
  125. package/dist/src/analyzers/types.d.ts +5 -0
  126. package/dist/src/analyzers/types.js +2 -0
  127. package/dist/src/analyzers/typescript/actor-detection.d.ts +4 -0
  128. package/dist/src/analyzers/typescript/actor-detection.js +15 -0
  129. package/dist/src/analyzers/typescript/dependency-manifests.d.ts +9 -0
  130. package/dist/src/analyzers/typescript/dependency-manifests.js +131 -0
  131. package/dist/src/analyzers/typescript/detector.d.ts +3 -0
  132. package/dist/src/analyzers/typescript/detector.js +23 -0
  133. package/dist/src/analyzers/typescript/index.d.ts +2 -0
  134. package/dist/src/analyzers/typescript/index.js +11 -0
  135. package/dist/src/analyzers/typescript/manifest-parsers.d.ts +1 -0
  136. package/dist/src/analyzers/typescript/manifest-parsers.js +30 -0
  137. package/dist/src/analyzers/typescript/parser.d.ts +44 -0
  138. package/dist/src/analyzers/typescript/parser.js +287 -0
  139. package/dist/src/analyzers/typescript/third-party-detection.d.ts +4 -0
  140. package/dist/src/analyzers/typescript/third-party-detection.js +16 -0
  141. package/dist/src/analyzers/typescript/typescript-detection-config.d.ts +68 -0
  142. package/dist/src/analyzers/typescript/typescript-detection-config.js +171 -0
  143. package/dist/src/analyzers/typescript/typescript-detection.d.ts +10 -0
  144. package/dist/src/analyzers/typescript/typescript-detection.js +57 -0
  145. package/dist/src/classifier/application-injection.d.ts +12 -0
  146. package/dist/src/classifier/application-injection.js +335 -0
  147. package/dist/src/classifier/classify.d.ts +3 -0
  148. package/dist/src/classifier/classify.js +15 -0
  149. package/dist/src/classifier/component-factory.d.ts +3 -0
  150. package/dist/src/classifier/component-factory.js +488 -0
  151. package/dist/src/classifier/config.d.ts +38 -0
  152. package/dist/src/classifier/config.js +260 -0
  153. package/dist/src/classifier/enhance-defaults.d.ts +28 -0
  154. package/dist/src/classifier/enhance-defaults.js +369 -0
  155. package/dist/src/classifier/enhance.d.ts +13 -0
  156. package/dist/src/classifier/enhance.js +295 -0
  157. package/dist/src/classifier/external-url-third-party.d.ts +26 -0
  158. package/dist/src/classifier/external-url-third-party.js +195 -0
  159. package/dist/src/classifier/grouping.d.ts +1 -0
  160. package/dist/src/classifier/grouping.js +2 -0
  161. package/dist/src/classifier/main-application-selection.d.ts +41 -0
  162. package/dist/src/classifier/main-application-selection.js +222 -0
  163. package/dist/src/classifier/naming.d.ts +4 -0
  164. package/dist/src/classifier/naming.js +78 -0
  165. package/dist/src/classifier/postprocessing.d.ts +12 -0
  166. package/dist/src/classifier/postprocessing.js +510 -0
  167. package/dist/src/classifier/sectioning.d.ts +5 -0
  168. package/dist/src/classifier/sectioning.js +60 -0
  169. package/dist/src/classifier/terraform-provider-hub.d.ts +6 -0
  170. package/dist/src/classifier/terraform-provider-hub.js +38 -0
  171. package/dist/src/cli.d.ts +2 -0
  172. package/dist/src/cli.js +498 -0
  173. package/dist/src/config/actor-detection-config.d.ts +21 -0
  174. package/dist/src/config/actor-detection-config.js +97 -0
  175. package/dist/src/config/env.d.ts +2 -0
  176. package/dist/src/config/env.js +75 -0
  177. package/dist/src/config/file.d.ts +6 -0
  178. package/dist/src/config/file.js +74 -0
  179. package/dist/src/config/inference-scope.d.ts +2 -0
  180. package/dist/src/config/inference-scope.js +15 -0
  181. package/dist/src/config/load-cli-env.d.ts +1 -0
  182. package/dist/src/config/load-cli-env.js +54 -0
  183. package/dist/src/config/normalize-ai-provider.d.ts +5 -0
  184. package/dist/src/config/normalize-ai-provider.js +18 -0
  185. package/dist/src/config/property-detection-config.d.ts +27 -0
  186. package/dist/src/config/property-detection-config.js +355 -0
  187. package/dist/src/config/redact.d.ts +3 -0
  188. package/dist/src/config/redact.js +14 -0
  189. package/dist/src/config/resolve.d.ts +15 -0
  190. package/dist/src/config/resolve.js +361 -0
  191. package/dist/src/config/scan-env.d.ts +7 -0
  192. package/dist/src/config/scan-env.js +38 -0
  193. package/dist/src/config/third-party-detection-config.d.ts +25 -0
  194. package/dist/src/config/third-party-detection-config.js +97 -0
  195. package/dist/src/config/types.d.ts +106 -0
  196. package/dist/src/config/types.js +2 -0
  197. package/dist/src/config/validate-scan-ai.d.ts +3 -0
  198. package/dist/src/config/validate-scan-ai.js +33 -0
  199. package/dist/src/core/pipeline/ai-orchestrator-options.d.ts +6 -0
  200. package/dist/src/core/pipeline/ai-orchestrator-options.js +46 -0
  201. package/dist/src/core/pipeline/classifier-phase.d.ts +7 -0
  202. package/dist/src/core/pipeline/classifier-phase.js +78 -0
  203. package/dist/src/core/pipeline/dataflow-phase.d.ts +7 -0
  204. package/dist/src/core/pipeline/dataflow-phase.js +10 -0
  205. package/dist/src/core/pipeline/diagram-layout/app-section-layout.d.ts +7 -0
  206. package/dist/src/core/pipeline/diagram-layout/app-section-layout.js +74 -0
  207. package/dist/src/core/pipeline/diagram-layout/constants.d.ts +11 -0
  208. package/dist/src/core/pipeline/diagram-layout/constants.js +14 -0
  209. package/dist/src/core/pipeline/diagram-layout/edge-handles.d.ts +3 -0
  210. package/dist/src/core/pipeline/diagram-layout/edge-handles.js +26 -0
  211. package/dist/src/core/pipeline/diagram-layout/managed-provider-layout.d.ts +3 -0
  212. package/dist/src/core/pipeline/diagram-layout/managed-provider-layout.js +40 -0
  213. package/dist/src/core/pipeline/diagram-layout/minimal-terraform-layout.d.ts +6 -0
  214. package/dist/src/core/pipeline/diagram-layout/minimal-terraform-layout.js +53 -0
  215. package/dist/src/core/pipeline/diagram-layout/section-helpers.d.ts +30 -0
  216. package/dist/src/core/pipeline/diagram-layout/section-helpers.js +62 -0
  217. package/dist/src/core/pipeline/diagram-layout/terraform-lane-layout.d.ts +3 -0
  218. package/dist/src/core/pipeline/diagram-layout/terraform-lane-layout.js +109 -0
  219. package/dist/src/core/pipeline/diagram-layout/types.d.ts +2 -0
  220. package/dist/src/core/pipeline/diagram-layout/types.js +2 -0
  221. package/dist/src/core/pipeline/graph-mapping.d.ts +6 -0
  222. package/dist/src/core/pipeline/graph-mapping.js +308 -0
  223. package/dist/src/core/pipeline/mixed-app-terraform-scan.d.ts +13 -0
  224. package/dist/src/core/pipeline/mixed-app-terraform-scan.js +81 -0
  225. package/dist/src/core/pipeline/orchestrator-result.d.ts +6 -0
  226. package/dist/src/core/pipeline/orchestrator-result.js +2 -0
  227. package/dist/src/core/pipeline/orchestrator.d.ts +26 -0
  228. package/dist/src/core/pipeline/orchestrator.js +79 -0
  229. package/dist/src/core/pipeline/resolve-path-under-scan-root.d.ts +7 -0
  230. package/dist/src/core/pipeline/resolve-path-under-scan-root.js +55 -0
  231. package/dist/src/core/pipeline/scan-pipeline.d.ts +6 -0
  232. package/dist/src/core/pipeline/scan-pipeline.js +364 -0
  233. package/dist/src/core/pipeline/sorting.d.ts +3 -0
  234. package/dist/src/core/pipeline/sorting.js +48 -0
  235. package/dist/src/core/pipeline/stable-component-ids.d.ts +15 -0
  236. package/dist/src/core/pipeline/stable-component-ids.js +68 -0
  237. package/dist/src/core/pipeline/structural-scan.d.ts +19 -0
  238. package/dist/src/core/pipeline/structural-scan.js +304 -0
  239. package/dist/src/core/pipeline/terraform-flow-utils.d.ts +6 -0
  240. package/dist/src/core/pipeline/terraform-flow-utils.js +32 -0
  241. package/dist/src/core/pipeline/terraform-minimal-services.d.ts +31 -0
  242. package/dist/src/core/pipeline/terraform-minimal-services.js +225 -0
  243. package/dist/src/core/schema/dataflow-wrapper.schema.d.ts +83 -0
  244. package/dist/src/core/schema/dataflow-wrapper.schema.js +40 -0
  245. package/dist/src/core/schema/diagram-graph.schema.d.ts +93 -0
  246. package/dist/src/core/schema/diagram-graph.schema.js +55 -0
  247. package/dist/src/core/schema/index.d.ts +4 -0
  248. package/dist/src/core/schema/index.js +20 -0
  249. package/dist/src/core/schema/scan-config.schema.d.ts +66 -0
  250. package/dist/src/core/schema/scan-config.schema.js +67 -0
  251. package/dist/src/core/schema/scan-result.schema.d.ts +450 -0
  252. package/dist/src/core/schema/scan-result.schema.js +236 -0
  253. package/dist/src/core/sectioning/discover-service-sections.d.ts +80 -0
  254. package/dist/src/core/sectioning/discover-service-sections.js +468 -0
  255. package/dist/src/core/sectioning/section-runtime.d.ts +21 -0
  256. package/dist/src/core/sectioning/section-runtime.js +148 -0
  257. package/dist/src/core/terraform/component-predicates.d.ts +13 -0
  258. package/dist/src/core/terraform/component-predicates.js +71 -0
  259. package/dist/src/core/types/component.d.ts +18 -0
  260. package/dist/src/core/types/component.js +2 -0
  261. package/dist/src/core/types/config.d.ts +57 -0
  262. package/dist/src/core/types/config.js +2 -0
  263. package/dist/src/core/types/data-flow.d.ts +24 -0
  264. package/dist/src/core/types/data-flow.js +2 -0
  265. package/dist/src/core/types/detection.d.ts +12 -0
  266. package/dist/src/core/types/detection.js +19 -0
  267. package/dist/src/core/types/file.d.ts +14 -0
  268. package/dist/src/core/types/file.js +2 -0
  269. package/dist/src/core/types/index.d.ts +7 -0
  270. package/dist/src/core/types/index.js +23 -0
  271. package/dist/src/core/types/progress.d.ts +9 -0
  272. package/dist/src/core/types/progress.js +2 -0
  273. package/dist/src/core/types/result.d.ts +140 -0
  274. package/dist/src/core/types/result.js +2 -0
  275. package/dist/src/data-flow/application-hub.d.ts +7 -0
  276. package/dist/src/data-flow/application-hub.js +88 -0
  277. package/dist/src/data-flow/dedupe.d.ts +7 -0
  278. package/dist/src/data-flow/dedupe.js +92 -0
  279. package/dist/src/data-flow/detect.d.ts +16 -0
  280. package/dist/src/data-flow/detect.js +203 -0
  281. package/dist/src/data-flow/detector.d.ts +15 -0
  282. package/dist/src/data-flow/detector.js +18 -0
  283. package/dist/src/data-flow/drop-cross-section-flows.d.ts +8 -0
  284. package/dist/src/data-flow/drop-cross-section-flows.js +32 -0
  285. package/dist/src/data-flow/ensure-actor-flow.d.ts +16 -0
  286. package/dist/src/data-flow/ensure-actor-flow.js +101 -0
  287. package/dist/src/data-flow/ensure-manifest-declared-flows.d.ts +14 -0
  288. package/dist/src/data-flow/ensure-manifest-declared-flows.js +76 -0
  289. package/dist/src/data-flow/ensure-section-api-flows.d.ts +6 -0
  290. package/dist/src/data-flow/ensure-section-api-flows.js +57 -0
  291. package/dist/src/data-flow/flow-builder.d.ts +5 -0
  292. package/dist/src/data-flow/flow-builder.js +80 -0
  293. package/dist/src/data-flow/import-graph.d.ts +10 -0
  294. package/dist/src/data-flow/import-graph.js +147 -0
  295. package/dist/src/data-flow/index.d.ts +8 -0
  296. package/dist/src/data-flow/index.js +20 -0
  297. package/dist/src/data-flow/internal-fetch.d.ts +8 -0
  298. package/dist/src/data-flow/internal-fetch.js +209 -0
  299. package/dist/src/data-flow/postprocess.d.ts +9 -0
  300. package/dist/src/data-flow/postprocess.js +63 -0
  301. package/dist/src/data-flow/rewire.d.ts +10 -0
  302. package/dist/src/data-flow/rewire.js +93 -0
  303. package/dist/src/data-flow/source-attribution.d.ts +8 -0
  304. package/dist/src/data-flow/source-attribution.js +131 -0
  305. package/dist/src/data-flow/source-resolution.d.ts +13 -0
  306. package/dist/src/data-flow/source-resolution.js +61 -0
  307. package/dist/src/data-flow/target-matching.d.ts +21 -0
  308. package/dist/src/data-flow/target-matching.js +253 -0
  309. package/dist/src/data-flow/terraform-flows.d.ts +32 -0
  310. package/dist/src/data-flow/terraform-flows.js +170 -0
  311. package/dist/src/evals/metrics.d.ts +18 -0
  312. package/dist/src/evals/metrics.js +58 -0
  313. package/dist/src/evals/run-model-matrix.d.ts +1 -0
  314. package/dist/src/evals/run-model-matrix.js +68 -0
  315. package/dist/src/index.d.ts +2 -0
  316. package/dist/src/index.js +20 -0
  317. package/dist/src/ingest/file-system.d.ts +17 -0
  318. package/dist/src/ingest/file-system.js +239 -0
  319. package/dist/src/ingest/gitignore.d.ts +12 -0
  320. package/dist/src/ingest/gitignore.js +127 -0
  321. package/dist/src/ingest/sensitive-paths.d.ts +2 -0
  322. package/dist/src/ingest/sensitive-paths.js +8 -0
  323. package/dist/src/observability/scan-sentry.d.ts +20 -0
  324. package/dist/src/observability/scan-sentry.js +133 -0
  325. package/dist/src/output/json.d.ts +51 -0
  326. package/dist/src/output/json.js +59 -0
  327. package/dist/src/patterns/config.d.ts +22 -0
  328. package/dist/src/patterns/config.js +119 -0
  329. package/dist/src/patterns/detectors/helpers.d.ts +19 -0
  330. package/dist/src/patterns/detectors/helpers.js +68 -0
  331. package/dist/src/patterns/detectors/python.d.ts +8 -0
  332. package/dist/src/patterns/detectors/python.js +412 -0
  333. package/dist/src/patterns/detectors/typescript.d.ts +8 -0
  334. package/dist/src/patterns/detectors/typescript.js +328 -0
  335. package/dist/src/patterns/engine.d.ts +40 -0
  336. package/dist/src/patterns/engine.js +111 -0
  337. package/dist/src/patterns/flow-source-patterns.d.ts +6 -0
  338. package/dist/src/patterns/flow-source-patterns.js +39 -0
  339. package/dist/src/patterns/frontend-frameworks.d.ts +4 -0
  340. package/dist/src/patterns/frontend-frameworks.js +25 -0
  341. package/dist/src/patterns/scan-exclusions.d.ts +14 -0
  342. package/dist/src/patterns/scan-exclusions.js +76 -0
  343. package/dist/src/platform-api/dataparade-api-base-url.d.ts +8 -0
  344. package/dist/src/platform-api/dataparade-api-base-url.js +17 -0
  345. package/dist/src/platform-api/estimate-scan-footprint.d.ts +8 -0
  346. package/dist/src/platform-api/estimate-scan-footprint.js +120 -0
  347. package/dist/src/platform-api/scan-quota-client.d.ts +28 -0
  348. package/dist/src/platform-api/scan-quota-client.js +79 -0
  349. package/dist/src/tracing/langsmith-tracing.d.ts +37 -0
  350. package/dist/src/tracing/langsmith-tracing.js +171 -0
  351. package/dist/tests/cli/cli.spec.d.ts +1 -0
  352. package/dist/tests/cli/cli.spec.js +87 -0
  353. package/dist/tests/fixtures/e2e-ts-sample/db-client-import.d.ts +2 -0
  354. package/dist/tests/fixtures/e2e-ts-sample/db-client-import.js +8 -0
  355. package/dist/tests/fixtures/e2e-ts-sample/db.d.ts +3 -0
  356. package/dist/tests/fixtures/e2e-ts-sample/db.js +7 -0
  357. package/dist/tests/fixtures/e2e-ts-sample/external-api.d.ts +1 -0
  358. package/dist/tests/fixtures/e2e-ts-sample/external-api.js +18 -0
  359. package/dist/tests/fixtures/e2e-ts-sample/pg-client.d.ts +3 -0
  360. package/dist/tests/fixtures/e2e-ts-sample/pg-client.js +7 -0
  361. package/dist/tests/fixtures/e2e-ts-sample/server.d.ts +14 -0
  362. package/dist/tests/fixtures/e2e-ts-sample/server.js +4 -0
  363. package/dist/tests/fixtures/e2e-ts-sentry-route-env/server.d.ts +1 -0
  364. package/dist/tests/fixtures/e2e-ts-sentry-route-env/server.js +24 -0
  365. package/dist/tests/fixtures/ingest-basic/src/index.d.ts +1 -0
  366. package/dist/tests/fixtures/ingest-basic/src/index.js +6 -0
  367. package/dist/tests/fixtures/mixed-language-basic/api.d.ts +2 -0
  368. package/dist/tests/fixtures/mixed-language-basic/api.js +12 -0
  369. package/dist/tests/fixtures/monorepo-app-plus-terraform/packages/app/app/route.d.ts +1 -0
  370. package/dist/tests/fixtures/monorepo-app-plus-terraform/packages/app/app/route.js +6 -0
  371. package/dist/tests/fixtures/monorepo-front-back-sections/backend/app/route.d.ts +1 -0
  372. package/dist/tests/fixtures/monorepo-front-back-sections/backend/app/route.js +6 -0
  373. package/dist/tests/fixtures/monorepo-front-back-sections/frontend/app/route.d.ts +1 -0
  374. package/dist/tests/fixtures/monorepo-front-back-sections/frontend/app/route.js +7 -0
  375. package/dist/tests/fixtures/typescript-basic/app/route.d.ts +1 -0
  376. package/dist/tests/fixtures/typescript-basic/app/route.js +7 -0
  377. package/dist/tests/fixtures/typescript-basic/db-client-import.d.ts +2 -0
  378. package/dist/tests/fixtures/typescript-basic/db-client-import.js +8 -0
  379. package/dist/tests/fixtures/typescript-basic/db.d.ts +3 -0
  380. package/dist/tests/fixtures/typescript-basic/db.js +7 -0
  381. package/dist/tests/fixtures/typescript-basic/external-api.d.ts +1 -0
  382. package/dist/tests/fixtures/typescript-basic/external-api.js +18 -0
  383. package/dist/tests/fixtures/typescript-basic/pg-client.d.ts +3 -0
  384. package/dist/tests/fixtures/typescript-basic/pg-client.js +7 -0
  385. package/dist/tests/fixtures/typescript-basic/server.d.ts +14 -0
  386. package/dist/tests/fixtures/typescript-basic/server.js +4 -0
  387. package/dist/tests/fixtures/typescript-dependency-manifests-basic/src/index.d.ts +0 -0
  388. package/dist/tests/fixtures/typescript-dependency-manifests-basic/src/index.js +2 -0
  389. package/dist/tests/helpers/scan-result-builders.d.ts +2 -0
  390. package/dist/tests/helpers/scan-result-builders.js +15 -0
  391. package/dist/tests/schema/dataflow-wrapper.schema.spec.d.ts +1 -0
  392. package/dist/tests/schema/dataflow-wrapper.schema.spec.js +89 -0
  393. package/dist/tests/schema/diagram-graph.schema.spec.d.ts +1 -0
  394. package/dist/tests/schema/diagram-graph.schema.spec.js +48 -0
  395. package/dist/tests/schema/scan-config.schema.spec.d.ts +1 -0
  396. package/dist/tests/schema/scan-config.schema.spec.js +135 -0
  397. package/dist/tests/schema/scan-result.schema.spec.d.ts +1 -0
  398. package/dist/tests/schema/scan-result.schema.spec.js +177 -0
  399. package/dist/tests/unit/ai-enrichment/agent-orchestrator.spec.d.ts +1 -0
  400. package/dist/tests/unit/ai-enrichment/agent-orchestrator.spec.js +483 -0
  401. package/dist/tests/unit/ai-enrichment/candidate-selector.spec.d.ts +1 -0
  402. package/dist/tests/unit/ai-enrichment/candidate-selector.spec.js +106 -0
  403. package/dist/tests/unit/ai-enrichment/create-ai-provider.spec.d.ts +1 -0
  404. package/dist/tests/unit/ai-enrichment/create-ai-provider.spec.js +32 -0
  405. package/dist/tests/unit/ai-enrichment/endpoint-resolution.spec.d.ts +1 -0
  406. package/dist/tests/unit/ai-enrichment/endpoint-resolution.spec.js +47 -0
  407. package/dist/tests/unit/ai-enrichment/fallbacks.spec.d.ts +1 -0
  408. package/dist/tests/unit/ai-enrichment/fallbacks.spec.js +1304 -0
  409. package/dist/tests/unit/ai-enrichment/families/chat-completions-family.spec.d.ts +1 -0
  410. package/dist/tests/unit/ai-enrichment/families/chat-completions-family.spec.js +219 -0
  411. package/dist/tests/unit/ai-enrichment/families/generate-content-family.spec.d.ts +1 -0
  412. package/dist/tests/unit/ai-enrichment/families/generate-content-family.spec.js +119 -0
  413. package/dist/tests/unit/ai-enrichment/families/messages-family.spec.d.ts +1 -0
  414. package/dist/tests/unit/ai-enrichment/families/messages-family.spec.js +129 -0
  415. package/dist/tests/unit/ai-enrichment/families/ollama-generate-family.spec.d.ts +1 -0
  416. package/dist/tests/unit/ai-enrichment/families/ollama-generate-family.spec.js +69 -0
  417. package/dist/tests/unit/ai-enrichment/merge-rules.spec.d.ts +1 -0
  418. package/dist/tests/unit/ai-enrichment/merge-rules.spec.js +422 -0
  419. package/dist/tests/unit/ai-enrichment/openai-proposals-response.schema.spec.d.ts +1 -0
  420. package/dist/tests/unit/ai-enrichment/openai-proposals-response.schema.spec.js +30 -0
  421. package/dist/tests/unit/ai-enrichment/pipeline.spec.d.ts +1 -0
  422. package/dist/tests/unit/ai-enrichment/pipeline.spec.js +120 -0
  423. package/dist/tests/unit/ai-enrichment/planner.spec.d.ts +1 -0
  424. package/dist/tests/unit/ai-enrichment/planner.spec.js +106 -0
  425. package/dist/tests/unit/ai-enrichment/platform-proxy-provider.spec.d.ts +1 -0
  426. package/dist/tests/unit/ai-enrichment/platform-proxy-provider.spec.js +51 -0
  427. package/dist/tests/unit/ai-enrichment/provider-contract.spec.d.ts +1 -0
  428. package/dist/tests/unit/ai-enrichment/provider-contract.spec.js +244 -0
  429. package/dist/tests/unit/ai-enrichment/provider-json-parse.spec.d.ts +1 -0
  430. package/dist/tests/unit/ai-enrichment/provider-json-parse.spec.js +24 -0
  431. package/dist/tests/unit/ai-enrichment/provider-output-token-budget.spec.d.ts +1 -0
  432. package/dist/tests/unit/ai-enrichment/provider-output-token-budget.spec.js +15 -0
  433. package/dist/tests/unit/ai-enrichment/provider-prompt-env.spec.d.ts +1 -0
  434. package/dist/tests/unit/ai-enrichment/provider-prompt-env.spec.js +54 -0
  435. package/dist/tests/unit/ai-enrichment/provider-prompt.spec.d.ts +1 -0
  436. package/dist/tests/unit/ai-enrichment/provider-prompt.spec.js +206 -0
  437. package/dist/tests/unit/ai-enrichment/provider-topology-terraform-aws.spec.d.ts +1 -0
  438. package/dist/tests/unit/ai-enrichment/provider-topology-terraform-aws.spec.js +43 -0
  439. package/dist/tests/unit/ai-enrichment/provider-topology-terraform-kubernetes.spec.d.ts +1 -0
  440. package/dist/tests/unit/ai-enrichment/provider-topology-terraform-kubernetes.spec.js +40 -0
  441. package/dist/tests/unit/ai-enrichment/providers/fetch-with-timeout.spec.d.ts +1 -0
  442. package/dist/tests/unit/ai-enrichment/providers/fetch-with-timeout.spec.js +22 -0
  443. package/dist/tests/unit/ai-enrichment/resolve-provider.spec.d.ts +1 -0
  444. package/dist/tests/unit/ai-enrichment/resolve-provider.spec.js +67 -0
  445. package/dist/tests/unit/ai-enrichment/scan-paths-exact.spec.d.ts +1 -0
  446. package/dist/tests/unit/ai-enrichment/scan-paths-exact.spec.js +35 -0
  447. package/dist/tests/unit/ai-enrichment/scan-paths.spec.d.ts +1 -0
  448. package/dist/tests/unit/ai-enrichment/scan-paths.spec.js +21 -0
  449. package/dist/tests/unit/ai-enrichment/sensitive-paths.spec.d.ts +1 -0
  450. package/dist/tests/unit/ai-enrichment/sensitive-paths.spec.js +20 -0
  451. package/dist/tests/unit/ai-enrichment/third-party-data-flow.spec.d.ts +1 -0
  452. package/dist/tests/unit/ai-enrichment/third-party-data-flow.spec.js +963 -0
  453. package/dist/tests/unit/ai-enrichment/third-party-evidence.spec.d.ts +1 -0
  454. package/dist/tests/unit/ai-enrichment/third-party-evidence.spec.js +117 -0
  455. package/dist/tests/unit/ai-enrichment/third-party-subtype.spec.d.ts +1 -0
  456. package/dist/tests/unit/ai-enrichment/third-party-subtype.spec.js +45 -0
  457. package/dist/tests/unit/ai-enrichment/tools-validation.spec.d.ts +1 -0
  458. package/dist/tests/unit/ai-enrichment/tools-validation.spec.js +66 -0
  459. package/dist/tests/unit/analyzers/python/parser.spec.d.ts +1 -0
  460. package/dist/tests/unit/analyzers/python/parser.spec.js +104 -0
  461. package/dist/tests/unit/analyzers/python/patterns.spec.d.ts +1 -0
  462. package/dist/tests/unit/analyzers/python/patterns.spec.js +289 -0
  463. package/dist/tests/unit/analyzers/registry.spec.d.ts +1 -0
  464. package/dist/tests/unit/analyzers/registry.spec.js +234 -0
  465. package/dist/tests/unit/analyzers/terraform/classifier-subtype-parity.spec.d.ts +1 -0
  466. package/dist/tests/unit/analyzers/terraform/classifier-subtype-parity.spec.js +87 -0
  467. package/dist/tests/unit/analyzers/terraform/detector.spec.d.ts +1 -0
  468. package/dist/tests/unit/analyzers/terraform/detector.spec.js +110 -0
  469. package/dist/tests/unit/analyzers/terraform/generated-provider-hints.spec.d.ts +1 -0
  470. package/dist/tests/unit/analyzers/terraform/generated-provider-hints.spec.js +53 -0
  471. package/dist/tests/unit/analyzers/terraform/parser.spec.d.ts +1 -0
  472. package/dist/tests/unit/analyzers/terraform/parser.spec.js +56 -0
  473. package/dist/tests/unit/analyzers/terraform/terraform-module-manifest.spec.d.ts +1 -0
  474. package/dist/tests/unit/analyzers/terraform/terraform-module-manifest.spec.js +63 -0
  475. package/dist/tests/unit/analyzers/terraform/terraform-utility-resource.spec.d.ts +1 -0
  476. package/dist/tests/unit/analyzers/terraform/terraform-utility-resource.spec.js +19 -0
  477. package/dist/tests/unit/analyzers/terraform-exec.spec.d.ts +1 -0
  478. package/dist/tests/unit/analyzers/terraform-exec.spec.js +27 -0
  479. package/dist/tests/unit/analyzers/terraform-show-json.spec.d.ts +1 -0
  480. package/dist/tests/unit/analyzers/terraform-show-json.spec.js +77 -0
  481. package/dist/tests/unit/analyzers/typescript/dependency-manifests.spec.d.ts +1 -0
  482. package/dist/tests/unit/analyzers/typescript/dependency-manifests.spec.js +61 -0
  483. package/dist/tests/unit/analyzers/typescript/detector.spec.d.ts +1 -0
  484. package/dist/tests/unit/analyzers/typescript/detector.spec.js +225 -0
  485. package/dist/tests/unit/analyzers/typescript/external-apis-auth0.spec.d.ts +1 -0
  486. package/dist/tests/unit/analyzers/typescript/external-apis-auth0.spec.js +49 -0
  487. package/dist/tests/unit/analyzers/typescript/external-apis-sentry.spec.d.ts +1 -0
  488. package/dist/tests/unit/analyzers/typescript/external-apis-sentry.spec.js +27 -0
  489. package/dist/tests/unit/analyzers/typescript/fixture-integration.spec.d.ts +1 -0
  490. package/dist/tests/unit/analyzers/typescript/fixture-integration.spec.js +64 -0
  491. package/dist/tests/unit/analyzers/typescript/parser.spec.d.ts +1 -0
  492. package/dist/tests/unit/analyzers/typescript/parser.spec.js +99 -0
  493. package/dist/tests/unit/analyzers/typescript/pattern-config.spec.d.ts +1 -0
  494. package/dist/tests/unit/analyzers/typescript/pattern-config.spec.js +24 -0
  495. package/dist/tests/unit/analyzers/typescript/property-detection.spec.d.ts +1 -0
  496. package/dist/tests/unit/analyzers/typescript/property-detection.spec.js +138 -0
  497. package/dist/tests/unit/classifier/classify.spec.d.ts +1 -0
  498. package/dist/tests/unit/classifier/classify.spec.js +1453 -0
  499. package/dist/tests/unit/classifier/enhance.spec.d.ts +1 -0
  500. package/dist/tests/unit/classifier/enhance.spec.js +400 -0
  501. package/dist/tests/unit/classifier/external-url-third-party.spec.d.ts +1 -0
  502. package/dist/tests/unit/classifier/external-url-third-party.spec.js +83 -0
  503. package/dist/tests/unit/classifier/frontend-framework-grouping.spec.d.ts +1 -0
  504. package/dist/tests/unit/classifier/frontend-framework-grouping.spec.js +44 -0
  505. package/dist/tests/unit/classifier/terraform-grouping.spec.d.ts +1 -0
  506. package/dist/tests/unit/classifier/terraform-grouping.spec.js +96 -0
  507. package/dist/tests/unit/cli/config-command.spec.d.ts +1 -0
  508. package/dist/tests/unit/cli/config-command.spec.js +51 -0
  509. package/dist/tests/unit/cli/scan-command-ai-flags.spec.d.ts +0 -0
  510. package/dist/tests/unit/cli/scan-command-ai-flags.spec.js +149 -0
  511. package/dist/tests/unit/cli/scan-command-diagram-graph.spec.d.ts +1 -0
  512. package/dist/tests/unit/cli/scan-command-diagram-graph.spec.js +26 -0
  513. package/dist/tests/unit/cli/scan-command-e2e-monorepo-app-plus-terraform.spec.d.ts +1 -0
  514. package/dist/tests/unit/cli/scan-command-e2e-monorepo-app-plus-terraform.spec.js +107 -0
  515. package/dist/tests/unit/cli/scan-command-e2e-monorepo-front-back-sections.spec.d.ts +1 -0
  516. package/dist/tests/unit/cli/scan-command-e2e-monorepo-front-back-sections.spec.js +74 -0
  517. package/dist/tests/unit/cli/scan-command-e2e-python-basic.spec.d.ts +1 -0
  518. package/dist/tests/unit/cli/scan-command-e2e-python-basic.spec.js +43 -0
  519. package/dist/tests/unit/cli/scan-command-e2e-terraform-basic.spec.d.ts +1 -0
  520. package/dist/tests/unit/cli/scan-command-e2e-terraform-basic.spec.js +62 -0
  521. package/dist/tests/unit/cli/scan-command-e2e-ts-sample.spec.d.ts +1 -0
  522. package/dist/tests/unit/cli/scan-command-e2e-ts-sample.spec.js +41 -0
  523. package/dist/tests/unit/cli/scan-command-e2e-ts-sentry-route-env.spec.d.ts +1 -0
  524. package/dist/tests/unit/cli/scan-command-e2e-ts-sentry-route-env.spec.js +85 -0
  525. package/dist/tests/unit/cli/scan-command-exit-code.spec.d.ts +1 -0
  526. package/dist/tests/unit/cli/scan-command-exit-code.spec.js +131 -0
  527. package/dist/tests/unit/cli/scan-quota-flow.spec.d.ts +1 -0
  528. package/dist/tests/unit/cli/scan-quota-flow.spec.js +76 -0
  529. package/dist/tests/unit/config/property-detection-config.spec.d.ts +1 -0
  530. package/dist/tests/unit/config/property-detection-config.spec.js +38 -0
  531. package/dist/tests/unit/config/redact.spec.d.ts +1 -0
  532. package/dist/tests/unit/config/redact.spec.js +19 -0
  533. package/dist/tests/unit/config/resolve-config.spec.d.ts +1 -0
  534. package/dist/tests/unit/config/resolve-config.spec.js +172 -0
  535. package/dist/tests/unit/config/scan-env-debug.spec.d.ts +1 -0
  536. package/dist/tests/unit/config/scan-env-debug.spec.js +17 -0
  537. package/dist/tests/unit/config/validate-scan-ai.spec.d.ts +1 -0
  538. package/dist/tests/unit/config/validate-scan-ai.spec.js +53 -0
  539. package/dist/tests/unit/core/classifier-phase-regressions.spec.d.ts +1 -0
  540. package/dist/tests/unit/core/classifier-phase-regressions.spec.js +68 -0
  541. package/dist/tests/unit/core/dependency-manifest-performance-budgets.spec.d.ts +1 -0
  542. package/dist/tests/unit/core/dependency-manifest-performance-budgets.spec.js +66 -0
  543. package/dist/tests/unit/core/dependency-manifest-toggles-confidence.spec.d.ts +1 -0
  544. package/dist/tests/unit/core/dependency-manifest-toggles-confidence.spec.js +132 -0
  545. package/dist/tests/unit/core/discover-service-sections.spec.d.ts +1 -0
  546. package/dist/tests/unit/core/discover-service-sections.spec.js +204 -0
  547. package/dist/tests/unit/core/graph-mapping.spec.d.ts +1 -0
  548. package/dist/tests/unit/core/graph-mapping.spec.js +779 -0
  549. package/dist/tests/unit/core/invariant-tests-dedupe-determinism.spec.d.ts +1 -0
  550. package/dist/tests/unit/core/invariant-tests-dedupe-determinism.spec.js +64 -0
  551. package/dist/tests/unit/core/manifest-package-hub.spec.d.ts +1 -0
  552. package/dist/tests/unit/core/manifest-package-hub.spec.js +53 -0
  553. package/dist/tests/unit/core/monorepo-package-sections.spec.d.ts +1 -0
  554. package/dist/tests/unit/core/monorepo-package-sections.spec.js +121 -0
  555. package/dist/tests/unit/core/no-source-code-leakage.spec.d.ts +1 -0
  556. package/dist/tests/unit/core/no-source-code-leakage.spec.js +48 -0
  557. package/dist/tests/unit/core/orchestrator.spec.d.ts +1 -0
  558. package/dist/tests/unit/core/orchestrator.spec.js +252 -0
  559. package/dist/tests/unit/core/output-json.spec.d.ts +1 -0
  560. package/dist/tests/unit/core/output-json.spec.js +65 -0
  561. package/dist/tests/unit/core/parsing-error-handling-nonfatal.spec.d.ts +1 -0
  562. package/dist/tests/unit/core/parsing-error-handling-nonfatal.spec.js +42 -0
  563. package/dist/tests/unit/core/resolve-path-under-scan-root.spec.d.ts +1 -0
  564. package/dist/tests/unit/core/resolve-path-under-scan-root.spec.js +54 -0
  565. package/dist/tests/unit/core/scan-result-language-stats.spec.d.ts +1 -0
  566. package/dist/tests/unit/core/scan-result-language-stats.spec.js +15 -0
  567. package/dist/tests/unit/core/section-discovery-excludes.spec.d.ts +1 -0
  568. package/dist/tests/unit/core/section-discovery-excludes.spec.js +49 -0
  569. package/dist/tests/unit/core/section-runtime.spec.d.ts +1 -0
  570. package/dist/tests/unit/core/section-runtime.spec.js +166 -0
  571. package/dist/tests/unit/core/stable-component-ids.spec.d.ts +1 -0
  572. package/dist/tests/unit/core/stable-component-ids.spec.js +112 -0
  573. package/dist/tests/unit/core/structural-scan.spec.d.ts +1 -0
  574. package/dist/tests/unit/core/structural-scan.spec.js +83 -0
  575. package/dist/tests/unit/core/terraform-json-overlay.spec.d.ts +1 -0
  576. package/dist/tests/unit/core/terraform-json-overlay.spec.js +36 -0
  577. package/dist/tests/unit/core/terraform-minimal-services.spec.d.ts +1 -0
  578. package/dist/tests/unit/core/terraform-minimal-services.spec.js +378 -0
  579. package/dist/tests/unit/data-flow/application-hub.spec.d.ts +1 -0
  580. package/dist/tests/unit/data-flow/application-hub.spec.js +48 -0
  581. package/dist/tests/unit/data-flow/cross-section-terraform-bridge.spec.d.ts +1 -0
  582. package/dist/tests/unit/data-flow/cross-section-terraform-bridge.spec.js +95 -0
  583. package/dist/tests/unit/data-flow/dedupe.spec.d.ts +1 -0
  584. package/dist/tests/unit/data-flow/dedupe.spec.js +134 -0
  585. package/dist/tests/unit/data-flow/detector.spec.d.ts +1 -0
  586. package/dist/tests/unit/data-flow/detector.spec.js +1254 -0
  587. package/dist/tests/unit/data-flow/drop-cross-section-flows.spec.d.ts +1 -0
  588. package/dist/tests/unit/data-flow/drop-cross-section-flows.spec.js +132 -0
  589. package/dist/tests/unit/data-flow/ensure-actor-flow.spec.d.ts +1 -0
  590. package/dist/tests/unit/data-flow/ensure-actor-flow.spec.js +233 -0
  591. package/dist/tests/unit/data-flow/ensure-manifest-declared-flows.spec.d.ts +1 -0
  592. package/dist/tests/unit/data-flow/ensure-manifest-declared-flows.spec.js +125 -0
  593. package/dist/tests/unit/data-flow/ensure-section-api-flows.spec.d.ts +1 -0
  594. package/dist/tests/unit/data-flow/ensure-section-api-flows.spec.js +40 -0
  595. package/dist/tests/unit/data-flow/postprocess.spec.d.ts +1 -0
  596. package/dist/tests/unit/data-flow/postprocess.spec.js +78 -0
  597. package/dist/tests/unit/data-flow/rewire.spec.d.ts +1 -0
  598. package/dist/tests/unit/data-flow/rewire.spec.js +194 -0
  599. package/dist/tests/unit/data-flow/terraform-flows.spec.d.ts +1 -0
  600. package/dist/tests/unit/data-flow/terraform-flows.spec.js +199 -0
  601. package/dist/tests/unit/evals/metrics.spec.d.ts +1 -0
  602. package/dist/tests/unit/evals/metrics.spec.js +54 -0
  603. package/dist/tests/unit/ingest/env-exclusion.spec.d.ts +1 -0
  604. package/dist/tests/unit/ingest/env-exclusion.spec.js +43 -0
  605. package/dist/tests/unit/ingest/file-system.spec.d.ts +1 -0
  606. package/dist/tests/unit/ingest/file-system.spec.js +180 -0
  607. package/dist/tests/unit/ingest/gitignore.spec.d.ts +1 -0
  608. package/dist/tests/unit/ingest/gitignore.spec.js +30 -0
  609. package/dist/tests/unit/observability/scan-sentry.spec.d.ts +1 -0
  610. package/dist/tests/unit/observability/scan-sentry.spec.js +60 -0
  611. package/dist/tests/unit/patterns/scan-exclusions.spec.d.ts +1 -0
  612. package/dist/tests/unit/patterns/scan-exclusions.spec.js +58 -0
  613. package/dist/tests/unit/pipeline/ai-orchestrator-options.spec.d.ts +1 -0
  614. package/dist/tests/unit/pipeline/ai-orchestrator-options.spec.js +19 -0
  615. package/dist/tests/unit/platform-api/dataparade-api-base-url.spec.d.ts +1 -0
  616. package/dist/tests/unit/platform-api/dataparade-api-base-url.spec.js +19 -0
  617. package/dist/tests/unit/platform-api/estimate-scan-footprint.spec.d.ts +1 -0
  618. package/dist/tests/unit/platform-api/estimate-scan-footprint.spec.js +50 -0
  619. package/dist/tests/unit/tracing/langsmith-tracing.spec.d.ts +1 -0
  620. package/dist/tests/unit/tracing/langsmith-tracing.spec.js +118 -0
  621. package/package.json +84 -0
@@ -0,0 +1,498 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
14
+ Object.defineProperty(o, "default", { enumerable: true, value: v });
15
+ }) : function(o, v) {
16
+ o["default"] = v;
17
+ });
18
+ var __importStar = (this && this.__importStar) || (function () {
19
+ var ownKeys = function(o) {
20
+ ownKeys = Object.getOwnPropertyNames || function (o) {
21
+ var ar = [];
22
+ for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
23
+ return ar;
24
+ };
25
+ return ownKeys(o);
26
+ };
27
+ return function (mod) {
28
+ if (mod && mod.__esModule) return mod;
29
+ var result = {};
30
+ if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
31
+ __setModuleDefault(result, mod);
32
+ return result;
33
+ };
34
+ })();
35
+ var __importDefault = (this && this.__importDefault) || function (mod) {
36
+ return (mod && mod.__esModule) ? mod : { "default": mod };
37
+ };
38
+ Object.defineProperty(exports, "__esModule", { value: true });
39
+ exports.run = run;
40
+ require("./config/load-cli-env");
41
+ const path_1 = __importDefault(require("path"));
42
+ const commander_1 = require("commander");
43
+ const json_1 = require("./output/json");
44
+ const types_1 = require("./ai-enrichment/types");
45
+ const inference_scope_1 = require("./config/inference-scope");
46
+ const redact_1 = require("./config/redact");
47
+ const resolve_1 = require("./config/resolve");
48
+ const scan_env_1 = require("./config/scan-env");
49
+ const validate_scan_ai_1 = require("./config/validate-scan-ai");
50
+ const scan_sentry_1 = require("./observability/scan-sentry");
51
+ const scan_config_schema_1 = require("./core/schema/scan-config.schema");
52
+ const file_system_1 = require("./ingest/file-system");
53
+ function formatEvidence(detail) {
54
+ const evidence = detail.evidence;
55
+ if (!evidence || evidence.length === 0) {
56
+ return "none";
57
+ }
58
+ const head = evidence[0];
59
+ const first = head != null
60
+ ? `${head.filePath}:${head.startLine}-${head.endLine} (${head.reason})`
61
+ : "none";
62
+ return evidence.length === 1 ? first : `${first}; +${evidence.length - 1} more`;
63
+ }
64
+ function formatProposalTarget(detail) {
65
+ if (detail.kind === "component_patch" && detail.targetComponentId) {
66
+ return `component:${detail.targetComponentId}`;
67
+ }
68
+ if (detail.targetFlowId)
69
+ return `flow:${detail.targetFlowId}`;
70
+ if (detail.sourceComponentId && detail.targetFlowComponentId) {
71
+ return `flow:${detail.sourceComponentId}->${detail.targetFlowComponentId}`;
72
+ }
73
+ return "unknown";
74
+ }
75
+ function printAiInferenceVerbose(details) {
76
+ if (details.length === 0) {
77
+ // eslint-disable-next-line no-console
78
+ console.log("[scan] ai-inference details: no proposals generated");
79
+ return;
80
+ }
81
+ // eslint-disable-next-line no-console
82
+ console.log("[scan] ai-inference details:");
83
+ for (const detail of details) {
84
+ const status = detail.status === "applied" ? "applied" : `rejected (${detail.rejectionReason})`;
85
+ const confidence = detail.confidence.toFixed(2);
86
+ // eslint-disable-next-line no-console
87
+ console.log(`[scan] - ${detail.id}: ${status} | ${detail.source} | ${detail.kind} | target=${formatProposalTarget(detail)} | confidence=${confidence} (${detail.confidenceBand})`);
88
+ // eslint-disable-next-line no-console
89
+ console.log(`[scan] candidate=${detail.candidateType} agent=${detail.agent} provider=${detail.provider}/${detail.model}`);
90
+ // eslint-disable-next-line no-console
91
+ console.log(`[scan] evidence=${formatEvidence(detail)}`);
92
+ if (detail.status === "applied" && detail.propertyChanges && detail.propertyChanges.length) {
93
+ const formatted = detail.propertyChanges.map((change) => {
94
+ const from = JSON.stringify(change.from);
95
+ const to = JSON.stringify(change.to);
96
+ return `${change.key}: ${from} -> ${to}`;
97
+ });
98
+ for (const line of formatted) {
99
+ // eslint-disable-next-line no-console
100
+ console.log(`[scan] changes=${line}`);
101
+ }
102
+ }
103
+ }
104
+ }
105
+ function formatUsd(value) {
106
+ if (typeof value !== "number" || !Number.isFinite(value))
107
+ return "n/a";
108
+ return `$${value.toFixed(6)}`;
109
+ }
110
+ function createProgram() {
111
+ const program = new commander_1.Command();
112
+ program
113
+ .name("dataparade")
114
+ .description("DataParade CLI - scan codebases for data flow components")
115
+ .version("0.0.0");
116
+ program
117
+ .command("scan <path>")
118
+ .description("Scan a directory (or a single supported source file) for data flow components")
119
+ .option("-o, --output <file>", "Write dataflow.json wrapper to the given file (default: ./dataflow.json)")
120
+ .option("--exclude <pattern...>", "One or more glob patterns to exclude from scanning")
121
+ .option("--minimum-confidence <number>", "Minimum confidence (0-1) for including detections")
122
+ .option("--language <language...>", "Limit scanning to specific languages (e.g. typescript, javascript)")
123
+ .option("--project-name <name>", "Override the inferred project name used for the application asset")
124
+ .option("--deep-analysis", "Enable deeper, potentially slower structural analysis where supported")
125
+ .option("--terraform-json <path>", "Merge resource addresses from a saved `terraform show -json` file (absolute or relative to scan root)")
126
+ .option("--terraform-plan <path>", "Merge addresses by running `terraform show -json <path>` from the scan root (path relative to scan root; requires terraform on PATH)")
127
+ .option("--terraform-stack-section-path-depth <n>", "Register Terraform stack directories as service sections when their path has exactly N segments (e.g. 4 for packages/foo/k8s/terraform)")
128
+ .option("--no-terraform-stack-section-auto", "Do not infer terraformStackSectionPathDepth from .tf layout when depth is unset")
129
+ .option("--monorepo-package-section-path-depth <n>", "Workspace package section depth (max 3): primary packages and rollup use N POSIX path segments (e.g. 3 for packages/twenty-apps/hello)")
130
+ .option("--no-monorepo-package-section-auto", "Do not infer monorepoPackageSectionPathDepth from package.json layout when depth is unset")
131
+ .option("--ai-inference", "Enable post-scan AI inference pipeline")
132
+ .option("--ai-provider <provider>", `AI provider: ${types_1.AI_PROVIDER_IDS.join("|")}`)
133
+ .option("--ai-model <model>", "Model name for AI inference")
134
+ .option("--ai-endpoint <url>", "Override provider endpoint URL")
135
+ .option("--ai-temperature <number>", "Sampling temperature for model calls")
136
+ .option("--ai-max-tokens <number>", "Max tokens per inference call")
137
+ .option("--ai-max-calls <number>", "Max model calls for a scan")
138
+ .option("--ai-budget-tokens <number>", "Total token budget for inference")
139
+ .option("--ai-max-candidates-per-agent <number>", "Max inference queue items per agent (0 = no cap; default from config: 25)")
140
+ .option("--ai-inference-scope <scope>", "default | third_party_only — third_party_only runs AI enrichment only on every third-party node")
141
+ .option("--ai-verbose", "Print per-proposal AI inference details (applied/rejected + evidence)")
142
+ .option("--workspace-api-key <key>", "DataParade workspace API key (platform AI + quota; env: DATAPARADE_WORKSPACE_API_KEY)")
143
+ .option("--api-key <key>", "(deprecated) alias for --workspace-api-key")
144
+ .option("--byok-provider <provider>", `BYOK LLM provider when using your own API key: ${types_1.AI_PROVIDER_IDS.join("|")}`)
145
+ .option("--byok-model <model>", "BYOK model name (env: SCAN_BYOK_MODEL)")
146
+ .action(async (path, options) => {
147
+ let cliQuotaJobId;
148
+ let platformQuotaApiKey;
149
+ let quotaCompletionReported = false;
150
+ let fallbackFailureMessage = "CLI scan did not complete successfully";
151
+ let sentryScanRoot;
152
+ let sentryAiMode;
153
+ let sentryAiProvider;
154
+ const workspaceApiKey = options.workspaceApiKey?.trim() ||
155
+ options.apiKey?.trim() ||
156
+ (0, scan_env_1.resolveWorkspaceApiKey)(process.env);
157
+ try {
158
+ const rootPathArg = path || ".";
159
+ // Load dataparade.config.json from the directory being scanned, not
160
+ // process.cwd(). Locally these often match; in Lambda the worker cwd
161
+ // is the image root (/var/task) while the scan path is /tmp/.../project.
162
+ const resolvedScanRoot = path_1.default.resolve(process.cwd(), rootPathArg);
163
+ let scanEntry;
164
+ try {
165
+ scanEntry = await (0, file_system_1.resolveScanFilesystemEntry)(resolvedScanRoot);
166
+ }
167
+ catch (err) {
168
+ const message = err instanceof Error ? err.message : "Path does not exist.";
169
+ sentryScanRoot = resolvedScanRoot;
170
+ await (0, scan_sentry_1.reportScanCliError)({
171
+ error: err,
172
+ scanRoot: sentryScanRoot,
173
+ failurePhase: "resolve_path",
174
+ failureCode: "path_not_found",
175
+ });
176
+ // eslint-disable-next-line no-console
177
+ console.error(`[scan] error: ${message}`);
178
+ process.exitCode = 2;
179
+ return;
180
+ }
181
+ const isInteractive = process.stdout.isTTY;
182
+ const [{ scan, createDefaultScanConfiguration }, { buildDiagramGraphFromScanResult }] = await Promise.all([
183
+ Promise.resolve().then(() => __importStar(require("./core/pipeline/orchestrator"))),
184
+ Promise.resolve().then(() => __importStar(require("./core/pipeline/graph-mapping"))),
185
+ ]);
186
+ if (isInteractive) {
187
+ // eslint-disable-next-line no-console
188
+ console.log(`[scan] starting scan for ${resolvedScanRoot}`);
189
+ }
190
+ const flags = {
191
+ exclude: options.exclude,
192
+ minimumConfidence: typeof options.minimumConfidence === "string"
193
+ ? Number(options.minimumConfidence)
194
+ : undefined,
195
+ language: options.language,
196
+ deepAnalysis: options.deepAnalysis,
197
+ projectName: options.projectName,
198
+ terraformJson: options.terraformJson,
199
+ terraformPlan: options.terraformPlan,
200
+ terraformStackSectionPathDepth: typeof options.terraformStackSectionPathDepth === "string"
201
+ ? Number(options.terraformStackSectionPathDepth)
202
+ : undefined,
203
+ noTerraformStackSectionAuto: options.noTerraformStackSectionAuto,
204
+ monorepoPackageSectionPathDepth: typeof options.monorepoPackageSectionPathDepth === "string"
205
+ ? Number(options.monorepoPackageSectionPathDepth)
206
+ : undefined,
207
+ noMonorepoPackageSectionAuto: options.noMonorepoPackageSectionAuto,
208
+ aiInference: options.aiInference,
209
+ aiProvider: options.aiProvider,
210
+ aiModel: options.aiModel,
211
+ aiEndpoint: options.aiEndpoint,
212
+ aiTemperature: typeof options.aiTemperature === "string"
213
+ ? Number(options.aiTemperature)
214
+ : undefined,
215
+ aiMaxTokens: typeof options.aiMaxTokens === "string"
216
+ ? Number(options.aiMaxTokens)
217
+ : undefined,
218
+ aiMaxModelCalls: typeof options.aiMaxCalls === "string"
219
+ ? Number(options.aiMaxCalls)
220
+ : undefined,
221
+ aiBudgetTokens: typeof options.aiBudgetTokens === "string"
222
+ ? Number(options.aiBudgetTokens)
223
+ : undefined,
224
+ aiMaxCandidatesPerAgent: typeof options.aiMaxCandidatesPerAgent === "string"
225
+ ? Number(options.aiMaxCandidatesPerAgent)
226
+ : undefined,
227
+ aiInferenceScope: (0, inference_scope_1.parseAiInferenceScope)(options.aiInferenceScope),
228
+ aiVerbose: options.aiVerbose,
229
+ workspaceApiKey,
230
+ byokProvider: options.byokProvider,
231
+ byokModel: options.byokModel,
232
+ };
233
+ const { overrides, warnings } = (0, resolve_1.resolveScanConfiguration)({
234
+ cwd: scanEntry.scanRootDir,
235
+ flags,
236
+ });
237
+ const config = createDefaultScanConfiguration(overrides);
238
+ if (workspaceApiKey) {
239
+ config.workspaceApiKey = workspaceApiKey;
240
+ }
241
+ const aiMode = (0, validate_scan_ai_1.resolveAiMode)(config);
242
+ const usesByok = aiMode === "byok";
243
+ sentryScanRoot = scanEntry.scanRootDir;
244
+ sentryAiMode = aiMode;
245
+ sentryAiProvider = config.aiProvider;
246
+ // Quota preflight for platform billing. Structural-only scans (AI off) do not use quota API.
247
+ if (workspaceApiKey && !usesByok && config.enableAiInference) {
248
+ const [{ cliScanPreflight }, { estimateScanFootprint }] = await Promise.all([
249
+ Promise.resolve().then(() => __importStar(require("./platform-api/scan-quota-client"))),
250
+ Promise.resolve().then(() => __importStar(require("./platform-api/estimate-scan-footprint"))),
251
+ ]);
252
+ const footprint = await estimateScanFootprint(scanEntry.scanRootDir, config.excludePaths ?? []);
253
+ const preflight = await cliScanPreflight({
254
+ apiKey: workspaceApiKey,
255
+ enableAi: config.enableAiInference,
256
+ projectName: config.projectName,
257
+ fileCount: footprint.fileCount,
258
+ bytesIngested: footprint.bytesIngested,
259
+ });
260
+ cliQuotaJobId = preflight.jobId;
261
+ platformQuotaApiKey = workspaceApiKey;
262
+ config.cliQuotaJobId = preflight.jobId;
263
+ if (config.enableAiInference &&
264
+ preflight.suggestedAiBudgetTokens > 0) {
265
+ config.aiBudgetTokens = preflight.suggestedAiBudgetTokens;
266
+ }
267
+ if (preflight.aiDelivery === "platform_proxy") {
268
+ config.aiMode = "platform";
269
+ }
270
+ if (isInteractive) {
271
+ // eslint-disable-next-line no-console
272
+ console.log(`[scan] quota: scans_remaining=${preflight.scansRemaining} ai_tokens_remaining=${preflight.aiTokensRemaining} job_id=${preflight.jobId}`);
273
+ }
274
+ }
275
+ const configValidation = (0, scan_config_schema_1.validateScanConfiguration)(config);
276
+ if (!configValidation.ok) {
277
+ await (0, scan_sentry_1.reportScanCliError)({
278
+ error: configValidation.errors.join("\n"),
279
+ scanRoot: sentryScanRoot,
280
+ jobId: cliQuotaJobId,
281
+ aiMode: sentryAiMode,
282
+ aiProvider: sentryAiProvider,
283
+ failurePhase: "config_validation",
284
+ failureCode: "invalid_configuration",
285
+ });
286
+ // eslint-disable-next-line no-console
287
+ console.error(`[scan] invalid configuration:\n${configValidation.errors.map((e) => ` - ${e}`).join("\n")}`);
288
+ process.exitCode = 2;
289
+ return;
290
+ }
291
+ if (isInteractive && warnings.length > 0) {
292
+ // eslint-disable-next-line no-console
293
+ console.warn(`[scan] warnings:\n${warnings.map((w) => ` - ${w}`).join("\n")}`);
294
+ }
295
+ const { scanResult } = await scan(resolvedScanRoot, config, (progress) => {
296
+ if (!isInteractive)
297
+ return;
298
+ // eslint-disable-next-line no-console
299
+ console.log(`[scan] ${progress.phase}: ${progress.message ?? ""}`.trim());
300
+ });
301
+ if (scanResult.structuralEnrichmentSummary) {
302
+ const st = scanResult.structuralEnrichmentSummary;
303
+ // eslint-disable-next-line no-console
304
+ console.log(`[scan] structural enrichment: proposals=${st.proposalsGenerated} applied=${st.proposalsApplied} rejected=${st.proposalsRejected}`);
305
+ }
306
+ if (scanResult.aiInferenceSummary) {
307
+ const s = scanResult.aiInferenceSummary;
308
+ // eslint-disable-next-line no-console
309
+ console.log(`[scan] llm-inference summary: candidates=${s.candidatesConsidered} proposals=${s.proposalsGenerated} (provider=${s.proposalsGeneratedProvider}) applied=${s.proposalsApplied} (provider=${s.proposalsAppliedProvider}) rejected=${s.proposalsRejected} (${s.aiProvider}/${s.aiModel})`);
310
+ if (options.aiVerbose) {
311
+ // eslint-disable-next-line no-console
312
+ console.log(`[scan] ai-usage totals: provider_calls=${s.providerCalls} tokens_in=${s.inputTokens} tokens_out=${s.outputTokens} tokens_total=${s.totalTokens} estimated_cost_usd=${formatUsd(s.estimatedCostUsd)}`);
313
+ }
314
+ if (options.aiVerbose && scanResult.aiInferenceProposalDetails) {
315
+ printAiInferenceVerbose(scanResult.aiInferenceProposalDetails);
316
+ }
317
+ }
318
+ for (const w of scanResult.warnings ?? []) {
319
+ if (w.startsWith("ai-provider:")) {
320
+ await (0, scan_sentry_1.reportScanCliError)({
321
+ error: w,
322
+ scanRoot: sentryScanRoot,
323
+ jobId: cliQuotaJobId,
324
+ aiMode: sentryAiMode,
325
+ aiProvider: sentryAiProvider,
326
+ failurePhase: "ai_provider",
327
+ failureCode: "ai_provider_warning",
328
+ });
329
+ // eslint-disable-next-line no-console
330
+ console.warn(`[scan] ${w}`);
331
+ }
332
+ }
333
+ if (scanResult.errors?.length) {
334
+ await (0, scan_sentry_1.reportScanCliError)({
335
+ error: scanResult.errors.join("\n"),
336
+ scanRoot: sentryScanRoot,
337
+ jobId: cliQuotaJobId,
338
+ aiMode: sentryAiMode,
339
+ aiProvider: sentryAiProvider,
340
+ failurePhase: "scan_pipeline",
341
+ failureCode: "scan_errors",
342
+ extra: { errorCount: scanResult.errors.length },
343
+ });
344
+ process.exitCode = 1;
345
+ }
346
+ let diagramGraph;
347
+ try {
348
+ diagramGraph = buildDiagramGraphFromScanResult(scanResult);
349
+ }
350
+ catch (graphError) {
351
+ await (0, scan_sentry_1.reportScanCliError)({
352
+ error: graphError,
353
+ scanRoot: sentryScanRoot,
354
+ jobId: cliQuotaJobId,
355
+ aiMode: sentryAiMode,
356
+ aiProvider: sentryAiProvider,
357
+ failurePhase: "diagram_graph",
358
+ failureCode: "graph_build_failed",
359
+ });
360
+ if (isInteractive) {
361
+ const message = graphError instanceof Error
362
+ ? graphError.message
363
+ : "Unknown error while building diagram graph.";
364
+ // eslint-disable-next-line no-console
365
+ console.error(`[scan] warning: unable to build diagram graph: ${message}`);
366
+ }
367
+ process.exitCode = 1;
368
+ }
369
+ if (diagramGraph) {
370
+ const dataflowOutputPath = path_1.default.resolve(process.cwd(), options.output ?? "dataflow.json");
371
+ try {
372
+ (0, json_1.writeDataflowJson)({
373
+ scanResult,
374
+ graph: diagramGraph,
375
+ outputPath: dataflowOutputPath,
376
+ });
377
+ // Always print a short message so non-interactive callers and
378
+ // tests can rely on it.
379
+ // eslint-disable-next-line no-console
380
+ console.log(`[scan] dataflow.json written to ${dataflowOutputPath}`);
381
+ }
382
+ catch (dataflowError) {
383
+ await (0, scan_sentry_1.reportScanCliError)({
384
+ error: dataflowError,
385
+ scanRoot: sentryScanRoot,
386
+ jobId: cliQuotaJobId,
387
+ aiMode: sentryAiMode,
388
+ aiProvider: sentryAiProvider,
389
+ failurePhase: "dataflow_output",
390
+ failureCode: "dataflow_write_failed",
391
+ });
392
+ const message = dataflowError instanceof Error
393
+ ? dataflowError.message
394
+ : "Unknown error while writing dataflow.json.";
395
+ // eslint-disable-next-line no-console
396
+ console.error(`[scan] error: failed to write dataflow.json: ${message}`);
397
+ process.exitCode = 1;
398
+ }
399
+ }
400
+ if (platformQuotaApiKey && cliQuotaJobId) {
401
+ const { cliScanComplete } = await Promise.resolve().then(() => __importStar(require("./platform-api/scan-quota-client")));
402
+ const exitFailed = (process.exitCode ?? 0) !== 0;
403
+ const platformAiMode = (0, validate_scan_ai_1.resolveAiMode)(config) === "platform";
404
+ await cliScanComplete({
405
+ apiKey: platformQuotaApiKey,
406
+ jobId: cliQuotaJobId,
407
+ status: exitFailed ? "failed" : "completed",
408
+ aiTokensUsed: platformAiMode
409
+ ? 0
410
+ : (scanResult.aiInferenceSummary?.totalTokens ?? 0),
411
+ failureCode: exitFailed ? "scan_failed" : undefined,
412
+ failureMessage: exitFailed ? "CLI scan did not complete successfully" : undefined,
413
+ });
414
+ quotaCompletionReported = true;
415
+ }
416
+ }
417
+ catch (err) {
418
+ const message = err instanceof Error ? err.message : "Unknown error during scan.";
419
+ fallbackFailureMessage = message;
420
+ const { CliScanQuotaExceededError } = await Promise.resolve().then(() => __importStar(require("./platform-api/scan-quota-client")));
421
+ const quotaBlocked = err instanceof CliScanQuotaExceededError;
422
+ await (0, scan_sentry_1.reportScanCliError)({
423
+ error: err,
424
+ scanRoot: sentryScanRoot,
425
+ jobId: cliQuotaJobId,
426
+ aiMode: sentryAiMode,
427
+ aiProvider: sentryAiProvider,
428
+ failurePhase: quotaBlocked ? "preflight" : "scan_command",
429
+ failureCode: quotaBlocked ? "scan_quota_exceeded" : "scan_exception",
430
+ });
431
+ // eslint-disable-next-line no-console
432
+ console.error(quotaBlocked
433
+ ? `[scan] workspace quota: ${message}`
434
+ : `Scan failed: ${message}`);
435
+ process.exitCode = 1;
436
+ }
437
+ finally {
438
+ if (platformQuotaApiKey && cliQuotaJobId && !quotaCompletionReported) {
439
+ try {
440
+ const { cliScanComplete } = await Promise.resolve().then(() => __importStar(require("./platform-api/scan-quota-client")));
441
+ await cliScanComplete({
442
+ apiKey: platformQuotaApiKey,
443
+ jobId: cliQuotaJobId,
444
+ status: "failed",
445
+ failureCode: "scan_failed",
446
+ failureMessage: fallbackFailureMessage,
447
+ });
448
+ quotaCompletionReported = true;
449
+ }
450
+ catch {
451
+ // Quota report failure must not mask the original scan error.
452
+ }
453
+ }
454
+ }
455
+ });
456
+ program
457
+ .command("config")
458
+ .description("View the effective configuration for the current project")
459
+ .argument("[path]", "Project directory (default: current working directory)")
460
+ .action(async (pathArg) => {
461
+ try {
462
+ const [{ createDefaultScanConfiguration }] = await Promise.all([
463
+ Promise.resolve().then(() => __importStar(require("./core/pipeline/orchestrator"))),
464
+ ]);
465
+ const rootPathArg = pathArg?.trim() || ".";
466
+ const resolvedRoot = path_1.default.resolve(process.cwd(), rootPathArg);
467
+ let configCwd = resolvedRoot;
468
+ try {
469
+ const scanEntry = await (0, file_system_1.resolveScanFilesystemEntry)(resolvedRoot);
470
+ configCwd = scanEntry.scanRootDir;
471
+ }
472
+ catch {
473
+ // Fall back to resolved path when it does not exist yet (config-only preview).
474
+ }
475
+ const { overrides } = (0, resolve_1.resolveScanConfiguration)({
476
+ cwd: configCwd,
477
+ flags: {},
478
+ });
479
+ const config = createDefaultScanConfiguration(overrides);
480
+ const displayConfig = (0, redact_1.redactScanConfigurationForDisplay)(config);
481
+ // eslint-disable-next-line no-console
482
+ console.log(JSON.stringify(displayConfig, null, 2));
483
+ }
484
+ catch (err) {
485
+ const message = err instanceof Error
486
+ ? err.message
487
+ : "Unknown error while loading configuration.";
488
+ // eslint-disable-next-line no-console
489
+ console.error("Failed to read configuration:", message);
490
+ process.exitCode = 1;
491
+ }
492
+ });
493
+ return program;
494
+ }
495
+ async function run(argv) {
496
+ const program = createProgram();
497
+ await program.parseAsync(argv);
498
+ }
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Shared actor-detection config loader.
3
+ * Reads patterns/actor.patterns.yaml (language-agnostic regexes and rules).
4
+ * Used by analyzers to emit actor-related RawFindings (web_actor, service_actor).
5
+ */
6
+ import { type PatternId } from "../core/types/detection";
7
+ export interface ActorRule {
8
+ id: string;
9
+ patternId: PatternId;
10
+ name: string;
11
+ filePathRegex?: RegExp;
12
+ contentRegex?: RegExp;
13
+ confidence: number;
14
+ properties: Record<string, unknown>;
15
+ }
16
+ export interface ActorDetectionConfig {
17
+ regexes: Record<string, RegExp>;
18
+ rules: ActorRule[];
19
+ }
20
+ export declare function clearActorDetectionConfigCache(): void;
21
+ export declare function loadActorDetectionConfig(): ActorDetectionConfig;
@@ -0,0 +1,97 @@
1
+ "use strict";
2
+ /**
3
+ * Shared actor-detection config loader.
4
+ * Reads patterns/actor.patterns.yaml (language-agnostic regexes and rules).
5
+ * Used by analyzers to emit actor-related RawFindings (web_actor, service_actor).
6
+ */
7
+ var __importDefault = (this && this.__importDefault) || function (mod) {
8
+ return (mod && mod.__esModule) ? mod : { "default": mod };
9
+ };
10
+ Object.defineProperty(exports, "__esModule", { value: true });
11
+ exports.clearActorDetectionConfigCache = clearActorDetectionConfigCache;
12
+ exports.loadActorDetectionConfig = loadActorDetectionConfig;
13
+ const fs_1 = __importDefault(require("fs"));
14
+ const path_1 = __importDefault(require("path"));
15
+ const yaml_1 = __importDefault(require("yaml"));
16
+ const detection_1 = require("../core/types/detection");
17
+ function getConfigPath() {
18
+ const parts = __dirname.split(path_1.default.sep);
19
+ const distIndex = parts.lastIndexOf("dist");
20
+ const cliRoot = distIndex !== -1
21
+ ? parts.slice(0, distIndex).join(path_1.default.sep)
22
+ : path_1.default.resolve(__dirname, "..", "..");
23
+ return path_1.default.join(cliRoot, "patterns", "actor.patterns.yaml");
24
+ }
25
+ function compileRegexes(raw) {
26
+ const regexes = {};
27
+ if (!raw || typeof raw !== "object")
28
+ return regexes;
29
+ for (const [name, pattern] of Object.entries(raw)) {
30
+ if (typeof pattern === "string") {
31
+ try {
32
+ regexes[name] = new RegExp(pattern, "i");
33
+ }
34
+ catch (err) {
35
+ const msg = err instanceof Error ? err.message : String(err);
36
+ throw new Error(`actor-detection.regexes['${name}'] invalid regex: ${msg}`);
37
+ }
38
+ }
39
+ }
40
+ return regexes;
41
+ }
42
+ function validatePatternId(rawValue, context) {
43
+ const id = String(rawValue);
44
+ if (!detection_1.PATTERN_IDS.includes(id)) {
45
+ throw new Error(`Invalid patternId '${rawValue}' in ${context}`);
46
+ }
47
+ return id;
48
+ }
49
+ let cached;
50
+ function clearActorDetectionConfigCache() {
51
+ cached = undefined;
52
+ }
53
+ function loadActorDetectionConfig() {
54
+ if (cached)
55
+ return cached;
56
+ const configPath = getConfigPath();
57
+ let raw;
58
+ try {
59
+ raw = fs_1.default.readFileSync(configPath, "utf8");
60
+ }
61
+ catch (err) {
62
+ const message = err instanceof Error ? err.message : String(err);
63
+ throw new Error(`Actor detection config is required but could not be read from '${configPath}': ${message}`);
64
+ }
65
+ const parsed = yaml_1.default.parse(raw);
66
+ if (!parsed || typeof parsed !== "object") {
67
+ throw new Error(`Actor detection config at '${configPath}' did not parse to an object.`);
68
+ }
69
+ const regexes = compileRegexes(parsed.regexes);
70
+ const rules = [];
71
+ if (Array.isArray(parsed.rules)) {
72
+ for (const rawRule of parsed.rules) {
73
+ const patternId = validatePatternId(rawRule.patternId, `actor-detection.rules['${rawRule.id}']`);
74
+ const filePathRegex = rawRule.file_path_regex != null
75
+ ? regexes[rawRule.file_path_regex]
76
+ : undefined;
77
+ const contentRegex = rawRule.content_regex != null
78
+ ? regexes[rawRule.content_regex]
79
+ : undefined;
80
+ if (!filePathRegex && !contentRegex) {
81
+ // Skip rules that have neither file path nor content regex.
82
+ continue;
83
+ }
84
+ rules.push({
85
+ id: rawRule.id,
86
+ patternId,
87
+ name: rawRule.name ?? rawRule.id,
88
+ filePathRegex,
89
+ contentRegex,
90
+ confidence: rawRule.confidence ?? 0.8,
91
+ properties: rawRule.properties ?? {},
92
+ });
93
+ }
94
+ }
95
+ cached = { regexes, rules };
96
+ return cached;
97
+ }
@@ -0,0 +1,2 @@
1
+ import type { CliConfigEnv } from "./types";
2
+ export declare function loadCliConfigEnv(env: NodeJS.ProcessEnv): CliConfigEnv;