@codeyam/codeyam-cli 0.1.0-staging.dd216e0 → 0.1.0-staging.e057775

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 (1345) hide show
  1. package/analyzer-template/.build-info.json +8 -8
  2. package/analyzer-template/common/execAsync.ts +1 -1
  3. package/analyzer-template/log.txt +3 -3
  4. package/analyzer-template/package.json +32 -29
  5. package/analyzer-template/packages/ai/index.ts +21 -5
  6. package/analyzer-template/packages/ai/package.json +4 -4
  7. package/analyzer-template/packages/ai/src/lib/__mocks__/completionCall.ts +122 -0
  8. package/analyzer-template/packages/ai/src/lib/analyzeScope.ts +226 -24
  9. package/analyzer-template/packages/ai/src/lib/astScopes/arrayDerivationDetector.ts +199 -0
  10. package/analyzer-template/packages/ai/src/lib/astScopes/astScopeAnalyzer.ts +239 -13
  11. package/analyzer-template/packages/ai/src/lib/astScopes/conditionalEffectsExtractor.ts +644 -0
  12. package/analyzer-template/packages/ai/src/lib/astScopes/methodSemantics.ts +181 -23
  13. package/analyzer-template/packages/ai/src/lib/astScopes/patterns/forInStatementHandler.ts +10 -17
  14. package/analyzer-template/packages/ai/src/lib/astScopes/patterns/ifStatementHandler.ts +18 -0
  15. package/analyzer-template/packages/ai/src/lib/astScopes/patterns/switchStatementHandler.ts +38 -1
  16. package/analyzer-template/packages/ai/src/lib/astScopes/patterns/variableDeclarationHandler.ts +181 -1
  17. package/analyzer-template/packages/ai/src/lib/astScopes/processExpression.ts +1507 -117
  18. package/analyzer-template/packages/ai/src/lib/astScopes/sharedPatterns.ts +28 -0
  19. package/analyzer-template/packages/ai/src/lib/astScopes/types.ts +324 -5
  20. package/analyzer-template/packages/ai/src/lib/checkAllAttributes.ts +29 -10
  21. package/analyzer-template/packages/ai/src/lib/completionCall.ts +247 -66
  22. package/analyzer-template/packages/ai/src/lib/dataStructure/ScopeDataStructure.ts +2511 -380
  23. package/analyzer-template/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/JavascriptFrameworkManager.ts +7 -2
  24. package/analyzer-template/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/MuiManager.ts +296 -35
  25. package/analyzer-template/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/ReactFrameworkManager.ts +120 -76
  26. package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/BatchSchemaProcessor.ts +16 -3
  27. package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/ScopeTreeManager.ts +6 -4
  28. package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/cleanKnownObjectFunctions.ts +54 -3
  29. package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/cleanNonObjectFunctions.ts +161 -19
  30. package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/coerceObjectsToPrimitivesBySchema.ts +70 -0
  31. package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/coercePrimitivesToArraysBySchema.ts +62 -0
  32. package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/convertDotNotation.ts +163 -14
  33. package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/convertNullToUndefinedBySchema.ts +98 -0
  34. package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/convertTypeAnnotationsToValues.ts +179 -0
  35. package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/deduplicateFunctionSchemas.ts +40 -30
  36. package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/fillInSchemaGapsAndUnknowns.ts +396 -88
  37. package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/fixNullIdsBySchema.ts +129 -0
  38. package/analyzer-template/packages/ai/src/lib/dataStructure/helpers/stripNullableMarkers.ts +35 -0
  39. package/analyzer-template/packages/ai/src/lib/dataStructureChunking.ts +183 -0
  40. package/analyzer-template/packages/ai/src/lib/deepEqual.ts +30 -0
  41. package/analyzer-template/packages/ai/src/lib/e2eDataTracking.ts +334 -0
  42. package/analyzer-template/packages/ai/src/lib/extractCriticalDataKeys.ts +120 -0
  43. package/analyzer-template/packages/ai/src/lib/generateChangesEntityScenarioData.ts +74 -7
  44. package/analyzer-template/packages/ai/src/lib/generateChangesEntityScenarios.ts +89 -112
  45. package/analyzer-template/packages/ai/src/lib/generateEntityDataStructure.ts +59 -3
  46. package/analyzer-template/packages/ai/src/lib/generateEntityScenarioData.ts +1497 -92
  47. package/analyzer-template/packages/ai/src/lib/generateEntityScenarios.ts +216 -109
  48. package/analyzer-template/packages/ai/src/lib/generateExecutionFlows.ts +677 -0
  49. package/analyzer-template/packages/ai/src/lib/generateExecutionFlowsFromConditionalEffects.ts +528 -0
  50. package/analyzer-template/packages/ai/src/lib/generateExecutionFlowsFromConditionals.ts +2484 -0
  51. package/analyzer-template/packages/ai/src/lib/generateExecutionFlowsFromJsxUsages.ts +239 -0
  52. package/analyzer-template/packages/ai/src/lib/getConditionalUsagesFromCode.ts +143 -31
  53. package/analyzer-template/packages/ai/src/lib/guessScenarioDataFromDescription.ts +8 -2
  54. package/analyzer-template/packages/ai/src/lib/isolateScopes.ts +328 -7
  55. package/analyzer-template/packages/ai/src/lib/mergeJsonTypeDefinitions.ts +5 -0
  56. package/analyzer-template/packages/ai/src/lib/mergeStatements.ts +111 -87
  57. package/analyzer-template/packages/ai/src/lib/promptGenerators/collapseNullableObjects.ts +118 -0
  58. package/analyzer-template/packages/ai/src/lib/promptGenerators/gatherAttributesMap.ts +17 -7
  59. package/analyzer-template/packages/ai/src/lib/promptGenerators/generateChangesEntityScenarioDataGenerator.ts +1 -1
  60. package/analyzer-template/packages/ai/src/lib/promptGenerators/generateChangesEntityScenariosGenerator.ts +32 -102
  61. package/analyzer-template/packages/ai/src/lib/promptGenerators/generateChunkPrompt.ts +82 -0
  62. package/analyzer-template/packages/ai/src/lib/promptGenerators/generateCriticalKeysPrompt.ts +103 -0
  63. package/analyzer-template/packages/ai/src/lib/promptGenerators/generateEntityScenarioDataGenerator.ts +110 -6
  64. package/analyzer-template/packages/ai/src/lib/promptGenerators/generateEntityScenariosGenerator.ts +14 -53
  65. package/analyzer-template/packages/ai/src/lib/promptGenerators/generateMissingKeysPrompt.ts +58 -0
  66. package/analyzer-template/packages/ai/src/lib/promptGenerators/guessNewScenarioDataFromDescriptionGenerator.ts +28 -2
  67. package/analyzer-template/packages/ai/src/lib/promptGenerators/simplifyKeysForLLM.ts +391 -0
  68. package/analyzer-template/packages/ai/src/lib/resolvePathToControllable.ts +824 -0
  69. package/analyzer-template/packages/ai/src/lib/splitOutsideParentheses.ts +5 -1
  70. package/analyzer-template/packages/ai/src/lib/validateExecutionFlowPaths.ts +531 -0
  71. package/analyzer-template/packages/ai/src/lib/worker/SerializableDataStructure.ts +127 -3
  72. package/analyzer-template/packages/ai/src/lib/worker/analyzeScopeWorker.ts +114 -2
  73. package/analyzer-template/packages/analyze/index.ts +2 -0
  74. package/analyzer-template/packages/analyze/src/lib/FileAnalyzer.ts +79 -59
  75. package/analyzer-template/packages/analyze/src/lib/ProjectAnalyzer.ts +132 -33
  76. package/analyzer-template/packages/analyze/src/lib/analysisContext.ts +44 -4
  77. package/analyzer-template/packages/analyze/src/lib/asts/index.ts +7 -2
  78. package/analyzer-template/packages/analyze/src/lib/asts/nodes/getNodeType.ts +1 -0
  79. package/analyzer-template/packages/analyze/src/lib/asts/nodes/index.ts +1 -0
  80. package/analyzer-template/packages/analyze/src/lib/asts/nodes/isAsyncFunction.ts +67 -0
  81. package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getAllDeclaredEntityNodes.ts +19 -0
  82. package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getAllEntityNodes.ts +19 -0
  83. package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getAllExports.ts +11 -0
  84. package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getImportsAnalysis.ts +8 -0
  85. package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getResolvedModule.ts +49 -1
  86. package/analyzer-template/packages/analyze/src/lib/asts/sourceFiles/getSourceFilesForAllImports.ts +2 -1
  87. package/analyzer-template/packages/analyze/src/lib/files/analyze/analyzeEntities/prepareDataStructures.ts +532 -275
  88. package/analyzer-template/packages/analyze/src/lib/files/analyze/analyzeEntities.ts +42 -1
  89. package/analyzer-template/packages/analyze/src/lib/files/analyze/findOrCreateEntity.ts +15 -0
  90. package/analyzer-template/packages/analyze/src/lib/files/analyze/gatherEntityMap.ts +4 -2
  91. package/analyzer-template/packages/analyze/src/lib/files/analyze/validateDependencyAnalyses.ts +33 -10
  92. package/analyzer-template/packages/analyze/src/lib/files/analyzeChange.ts +31 -15
  93. package/analyzer-template/packages/analyze/src/lib/files/analyzeEntity.ts +11 -7
  94. package/analyzer-template/packages/analyze/src/lib/files/analyzeInitial.ts +11 -12
  95. package/analyzer-template/packages/analyze/src/lib/files/analyzeRemixRoute.ts +4 -5
  96. package/analyzer-template/packages/analyze/src/lib/files/enums/steps.ts +1 -1
  97. package/analyzer-template/packages/analyze/src/lib/files/getImportedExports.ts +14 -12
  98. package/analyzer-template/packages/analyze/src/lib/files/scenarios/TransformationTracer.ts +1352 -0
  99. package/analyzer-template/packages/analyze/src/lib/files/scenarios/enrichArrayTypesFromChildSignatures.ts +201 -46
  100. package/analyzer-template/packages/analyze/src/lib/files/scenarios/enrichUnknownTypesFromSourceEquivalencies.ts +102 -0
  101. package/analyzer-template/packages/analyze/src/lib/files/scenarios/gatherDataForMocks.ts +670 -74
  102. package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateChangesScenarioData.ts +1 -1
  103. package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateChangesScenarios.ts +28 -62
  104. package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateDataStructure.ts +463 -45
  105. package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateExecutionFlows.ts +166 -0
  106. package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateScenarioData.ts +78 -83
  107. package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateScenarios.ts +4 -8
  108. package/analyzer-template/packages/analyze/src/lib/files/scenarios/mergeInDependentDataStructure.ts +990 -141
  109. package/analyzer-template/packages/analyze/src/lib/files/scenarios/mergeValidatedDataStructures.ts +56 -11
  110. package/analyzer-template/packages/analyze/src/lib/files/scenarios/propagateArrayItemSchemas.ts +474 -0
  111. package/analyzer-template/packages/analyze/src/lib/files/setImportedExports.ts +2 -1
  112. package/analyzer-template/packages/analyze/src/lib/index.ts +1 -0
  113. package/analyzer-template/packages/analyze/src/lib/utils/getFileByPath.ts +19 -0
  114. package/analyzer-template/packages/aws/codebuild/index.ts +1 -0
  115. package/analyzer-template/packages/aws/dist/src/lib/codebuild/waitForBuild.d.ts +11 -1
  116. package/analyzer-template/packages/aws/dist/src/lib/codebuild/waitForBuild.d.ts.map +1 -1
  117. package/analyzer-template/packages/aws/dist/src/lib/codebuild/waitForBuild.js +29 -18
  118. package/analyzer-template/packages/aws/dist/src/lib/codebuild/waitForBuild.js.map +1 -1
  119. package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsDefineContainer.d.ts +2 -2
  120. package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsDefineContainer.d.ts.map +1 -1
  121. package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsDefineContainer.js +2 -2
  122. package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsDefineContainer.js.map +1 -1
  123. package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsTaskFactory.d.ts +8 -18
  124. package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsTaskFactory.d.ts.map +1 -1
  125. package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsTaskFactory.js +17 -61
  126. package/analyzer-template/packages/aws/dist/src/lib/ecs/ecsTaskFactory.js.map +1 -1
  127. package/analyzer-template/packages/aws/dist/src/lib/s3/checkS3ObjectExists.d.ts +15 -0
  128. package/analyzer-template/packages/aws/dist/src/lib/s3/checkS3ObjectExists.d.ts.map +1 -0
  129. package/analyzer-template/packages/aws/dist/src/lib/s3/checkS3ObjectExists.js +31 -0
  130. package/analyzer-template/packages/aws/dist/src/lib/s3/checkS3ObjectExists.js.map +1 -0
  131. package/analyzer-template/packages/aws/dist/src/lib/s3/uploadFileToS3.d.ts.map +1 -1
  132. package/analyzer-template/packages/aws/dist/src/lib/s3/uploadFileToS3.js +8 -1
  133. package/analyzer-template/packages/aws/dist/src/lib/s3/uploadFileToS3.js.map +1 -1
  134. package/analyzer-template/packages/aws/package.json +10 -10
  135. package/analyzer-template/packages/aws/s3/index.ts +1 -0
  136. package/analyzer-template/packages/aws/src/lib/codebuild/waitForBuild.ts +43 -19
  137. package/analyzer-template/packages/aws/src/lib/ecs/ecsDefineContainer.ts +3 -3
  138. package/analyzer-template/packages/aws/src/lib/ecs/ecsTaskFactory.ts +17 -69
  139. package/analyzer-template/packages/aws/src/lib/s3/checkS3ObjectExists.ts +47 -0
  140. package/analyzer-template/packages/aws/src/lib/s3/uploadFileToS3.ts +8 -1
  141. package/analyzer-template/packages/database/index.ts +1 -0
  142. package/analyzer-template/packages/database/package.json +4 -4
  143. package/analyzer-template/packages/database/src/lib/analysisBranchToDb.ts +1 -1
  144. package/analyzer-template/packages/database/src/lib/analysisToDb.ts +1 -1
  145. package/analyzer-template/packages/database/src/lib/branchToDb.ts +1 -1
  146. package/analyzer-template/packages/database/src/lib/commitBranchToDb.ts +1 -1
  147. package/analyzer-template/packages/database/src/lib/commitToDb.ts +1 -1
  148. package/analyzer-template/packages/database/src/lib/fileToDb.ts +1 -1
  149. package/analyzer-template/packages/database/src/lib/kysely/db.ts +26 -5
  150. package/analyzer-template/packages/database/src/lib/kysely/tableRelations.ts +2 -2
  151. package/analyzer-template/packages/database/src/lib/kysely/tables/commitsTable.ts +6 -0
  152. package/analyzer-template/packages/database/src/lib/kysely/tables/debugReportsTable.ts +36 -9
  153. package/analyzer-template/packages/database/src/lib/kysely/tables/editorScenariosTable.ts +93 -0
  154. package/analyzer-template/packages/database/src/lib/kysely/tables/labsRequestsTable.ts +52 -0
  155. package/analyzer-template/packages/database/src/lib/loadAnalyses.ts +58 -1
  156. package/analyzer-template/packages/database/src/lib/loadAnalysis.ts +13 -0
  157. package/analyzer-template/packages/database/src/lib/loadBranch.ts +16 -1
  158. package/analyzer-template/packages/database/src/lib/loadCommit.ts +11 -0
  159. package/analyzer-template/packages/database/src/lib/loadCommits.ts +58 -19
  160. package/analyzer-template/packages/database/src/lib/loadEntities.ts +26 -9
  161. package/analyzer-template/packages/database/src/lib/loadEntityBranches.ts +12 -0
  162. package/analyzer-template/packages/database/src/lib/loadReadyToBeCapturedAnalyses.ts +5 -6
  163. package/analyzer-template/packages/database/src/lib/projectToDb.ts +1 -1
  164. package/analyzer-template/packages/database/src/lib/saveFiles.ts +1 -1
  165. package/analyzer-template/packages/database/src/lib/scenarioToDb.ts +1 -1
  166. package/analyzer-template/packages/database/src/lib/updateCommitMetadata.ts +96 -152
  167. package/analyzer-template/packages/database/src/lib/updateFreshAnalysisStatus.ts +58 -42
  168. package/analyzer-template/packages/database/src/lib/updateFreshAnalysisStatusWithScenarios.ts +81 -65
  169. package/analyzer-template/packages/database/src/lib/userScenarioToDb.ts +1 -1
  170. package/analyzer-template/packages/generate/index.ts +3 -0
  171. package/analyzer-template/packages/generate/src/lib/componentScenarioPage/componentScenarioPageNext.ts +17 -1
  172. package/analyzer-template/packages/generate/src/lib/componentScenarioPage/generateScenarioClientWrapper.ts +221 -0
  173. package/analyzer-template/packages/generate/src/lib/componentScenarioPage/generateScenarioServerComponent.ts +73 -0
  174. package/analyzer-template/packages/generate/src/lib/componentScenarioPage/getIFrameMessageListenerCode.ts +33 -5
  175. package/analyzer-template/packages/generate/src/lib/deepMerge.ts +26 -1
  176. package/analyzer-template/packages/generate/src/lib/scenarioComponentForServer.ts +114 -0
  177. package/analyzer-template/packages/github/dist/database/index.d.ts +1 -0
  178. package/analyzer-template/packages/github/dist/database/index.d.ts.map +1 -1
  179. package/analyzer-template/packages/github/dist/database/index.js +1 -0
  180. package/analyzer-template/packages/github/dist/database/index.js.map +1 -1
  181. package/analyzer-template/packages/github/dist/database/src/lib/analysisBranchToDb.js +1 -1
  182. package/analyzer-template/packages/github/dist/database/src/lib/analysisBranchToDb.js.map +1 -1
  183. package/analyzer-template/packages/github/dist/database/src/lib/analysisToDb.js +1 -1
  184. package/analyzer-template/packages/github/dist/database/src/lib/analysisToDb.js.map +1 -1
  185. package/analyzer-template/packages/github/dist/database/src/lib/branchToDb.js +1 -1
  186. package/analyzer-template/packages/github/dist/database/src/lib/branchToDb.js.map +1 -1
  187. package/analyzer-template/packages/github/dist/database/src/lib/commitBranchToDb.js +1 -1
  188. package/analyzer-template/packages/github/dist/database/src/lib/commitBranchToDb.js.map +1 -1
  189. package/analyzer-template/packages/github/dist/database/src/lib/commitToDb.js +1 -1
  190. package/analyzer-template/packages/github/dist/database/src/lib/commitToDb.js.map +1 -1
  191. package/analyzer-template/packages/github/dist/database/src/lib/fileToDb.js +1 -1
  192. package/analyzer-template/packages/github/dist/database/src/lib/fileToDb.js.map +1 -1
  193. package/analyzer-template/packages/github/dist/database/src/lib/kysely/db.d.ts +6 -2
  194. package/analyzer-template/packages/github/dist/database/src/lib/kysely/db.d.ts.map +1 -1
  195. package/analyzer-template/packages/github/dist/database/src/lib/kysely/db.js +18 -3
  196. package/analyzer-template/packages/github/dist/database/src/lib/kysely/db.js.map +1 -1
  197. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tableRelations.d.ts +2 -2
  198. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/analysesTable.d.ts +1 -11
  199. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/analysesTable.d.ts.map +1 -1
  200. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/commitsTable.d.ts +1 -0
  201. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/commitsTable.d.ts.map +1 -1
  202. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/commitsTable.js +3 -0
  203. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/commitsTable.js.map +1 -1
  204. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/debugReportsTable.d.ts +30 -7
  205. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/debugReportsTable.d.ts.map +1 -1
  206. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/debugReportsTable.js +9 -3
  207. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/debugReportsTable.js.map +1 -1
  208. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/editorScenariosTable.d.ts +25 -0
  209. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/editorScenariosTable.d.ts.map +1 -0
  210. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/editorScenariosTable.js +76 -0
  211. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/editorScenariosTable.js.map +1 -0
  212. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/entitiesTable.d.ts +1 -0
  213. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/entitiesTable.d.ts.map +1 -1
  214. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/labsRequestsTable.d.ts +23 -0
  215. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/labsRequestsTable.d.ts.map +1 -0
  216. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/labsRequestsTable.js +35 -0
  217. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/labsRequestsTable.js.map +1 -0
  218. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/scenariosTable.d.ts +7 -6
  219. package/analyzer-template/packages/github/dist/database/src/lib/kysely/tables/scenariosTable.d.ts.map +1 -1
  220. package/analyzer-template/packages/github/dist/database/src/lib/loadAnalyses.d.ts +2 -0
  221. package/analyzer-template/packages/github/dist/database/src/lib/loadAnalyses.d.ts.map +1 -1
  222. package/analyzer-template/packages/github/dist/database/src/lib/loadAnalyses.js +45 -2
  223. package/analyzer-template/packages/github/dist/database/src/lib/loadAnalyses.js.map +1 -1
  224. package/analyzer-template/packages/github/dist/database/src/lib/loadAnalysis.d.ts.map +1 -1
  225. package/analyzer-template/packages/github/dist/database/src/lib/loadAnalysis.js +8 -0
  226. package/analyzer-template/packages/github/dist/database/src/lib/loadAnalysis.js.map +1 -1
  227. package/analyzer-template/packages/github/dist/database/src/lib/loadBranch.js +11 -1
  228. package/analyzer-template/packages/github/dist/database/src/lib/loadBranch.js.map +1 -1
  229. package/analyzer-template/packages/github/dist/database/src/lib/loadCommit.d.ts.map +1 -1
  230. package/analyzer-template/packages/github/dist/database/src/lib/loadCommit.js +7 -0
  231. package/analyzer-template/packages/github/dist/database/src/lib/loadCommit.js.map +1 -1
  232. package/analyzer-template/packages/github/dist/database/src/lib/loadCommits.d.ts +3 -1
  233. package/analyzer-template/packages/github/dist/database/src/lib/loadCommits.d.ts.map +1 -1
  234. package/analyzer-template/packages/github/dist/database/src/lib/loadCommits.js +45 -14
  235. package/analyzer-template/packages/github/dist/database/src/lib/loadCommits.js.map +1 -1
  236. package/analyzer-template/packages/github/dist/database/src/lib/loadEntities.d.ts +3 -1
  237. package/analyzer-template/packages/github/dist/database/src/lib/loadEntities.d.ts.map +1 -1
  238. package/analyzer-template/packages/github/dist/database/src/lib/loadEntities.js +23 -10
  239. package/analyzer-template/packages/github/dist/database/src/lib/loadEntities.js.map +1 -1
  240. package/analyzer-template/packages/github/dist/database/src/lib/loadEntityBranches.d.ts.map +1 -1
  241. package/analyzer-template/packages/github/dist/database/src/lib/loadEntityBranches.js +9 -0
  242. package/analyzer-template/packages/github/dist/database/src/lib/loadEntityBranches.js.map +1 -1
  243. package/analyzer-template/packages/github/dist/database/src/lib/loadReadyToBeCapturedAnalyses.d.ts.map +1 -1
  244. package/analyzer-template/packages/github/dist/database/src/lib/loadReadyToBeCapturedAnalyses.js +5 -5
  245. package/analyzer-template/packages/github/dist/database/src/lib/loadReadyToBeCapturedAnalyses.js.map +1 -1
  246. package/analyzer-template/packages/github/dist/database/src/lib/projectToDb.js +1 -1
  247. package/analyzer-template/packages/github/dist/database/src/lib/projectToDb.js.map +1 -1
  248. package/analyzer-template/packages/github/dist/database/src/lib/saveFiles.js +1 -1
  249. package/analyzer-template/packages/github/dist/database/src/lib/saveFiles.js.map +1 -1
  250. package/analyzer-template/packages/github/dist/database/src/lib/scenarioToDb.js +1 -1
  251. package/analyzer-template/packages/github/dist/database/src/lib/scenarioToDb.js.map +1 -1
  252. package/analyzer-template/packages/github/dist/database/src/lib/updateCommitMetadata.d.ts +2 -2
  253. package/analyzer-template/packages/github/dist/database/src/lib/updateCommitMetadata.d.ts.map +1 -1
  254. package/analyzer-template/packages/github/dist/database/src/lib/updateCommitMetadata.js +76 -89
  255. package/analyzer-template/packages/github/dist/database/src/lib/updateCommitMetadata.js.map +1 -1
  256. package/analyzer-template/packages/github/dist/database/src/lib/updateFreshAnalysisStatus.d.ts.map +1 -1
  257. package/analyzer-template/packages/github/dist/database/src/lib/updateFreshAnalysisStatus.js +41 -30
  258. package/analyzer-template/packages/github/dist/database/src/lib/updateFreshAnalysisStatus.js.map +1 -1
  259. package/analyzer-template/packages/github/dist/database/src/lib/updateFreshAnalysisStatusWithScenarios.d.ts.map +1 -1
  260. package/analyzer-template/packages/github/dist/database/src/lib/updateFreshAnalysisStatusWithScenarios.js +68 -57
  261. package/analyzer-template/packages/github/dist/database/src/lib/updateFreshAnalysisStatusWithScenarios.js.map +1 -1
  262. package/analyzer-template/packages/github/dist/generate/index.d.ts +3 -0
  263. package/analyzer-template/packages/github/dist/generate/index.d.ts.map +1 -1
  264. package/analyzer-template/packages/github/dist/generate/index.js +3 -0
  265. package/analyzer-template/packages/github/dist/generate/index.js.map +1 -1
  266. package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/componentScenarioPageNext.d.ts.map +1 -1
  267. package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/componentScenarioPageNext.js +16 -1
  268. package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/componentScenarioPageNext.js.map +1 -1
  269. package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioClientWrapper.d.ts +9 -0
  270. package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioClientWrapper.d.ts.map +1 -0
  271. package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioClientWrapper.js +217 -0
  272. package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioClientWrapper.js.map +1 -0
  273. package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioServerComponent.d.ts +20 -0
  274. package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioServerComponent.d.ts.map +1 -0
  275. package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioServerComponent.js +53 -0
  276. package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/generateScenarioServerComponent.js.map +1 -0
  277. package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/getIFrameMessageListenerCode.d.ts.map +1 -1
  278. package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/getIFrameMessageListenerCode.js +33 -5
  279. package/analyzer-template/packages/github/dist/generate/src/lib/componentScenarioPage/getIFrameMessageListenerCode.js.map +1 -1
  280. package/analyzer-template/packages/github/dist/generate/src/lib/deepMerge.d.ts.map +1 -1
  281. package/analyzer-template/packages/github/dist/generate/src/lib/deepMerge.js +27 -1
  282. package/analyzer-template/packages/github/dist/generate/src/lib/deepMerge.js.map +1 -1
  283. package/analyzer-template/packages/github/dist/generate/src/lib/scenarioComponentForServer.d.ts +8 -0
  284. package/analyzer-template/packages/github/dist/generate/src/lib/scenarioComponentForServer.d.ts.map +1 -0
  285. package/analyzer-template/packages/github/dist/generate/src/lib/scenarioComponentForServer.js +89 -0
  286. package/analyzer-template/packages/github/dist/generate/src/lib/scenarioComponentForServer.js.map +1 -0
  287. package/analyzer-template/packages/github/dist/github/src/lib/loadOrCreateCommit.d.ts.map +1 -1
  288. package/analyzer-template/packages/github/dist/github/src/lib/loadOrCreateCommit.js +10 -0
  289. package/analyzer-template/packages/github/dist/github/src/lib/loadOrCreateCommit.js.map +1 -1
  290. package/analyzer-template/packages/github/dist/github/src/lib/syncPrimaryBranch.d.ts.map +1 -1
  291. package/analyzer-template/packages/github/dist/github/src/lib/syncPrimaryBranch.js +3 -0
  292. package/analyzer-template/packages/github/dist/github/src/lib/syncPrimaryBranch.js.map +1 -1
  293. package/analyzer-template/packages/github/dist/types/index.d.ts +2 -2
  294. package/analyzer-template/packages/github/dist/types/index.d.ts.map +1 -1
  295. package/analyzer-template/packages/github/dist/types/index.js.map +1 -1
  296. package/analyzer-template/packages/github/dist/types/src/enums/ProjectFramework.d.ts +2 -0
  297. package/analyzer-template/packages/github/dist/types/src/enums/ProjectFramework.d.ts.map +1 -1
  298. package/analyzer-template/packages/github/dist/types/src/enums/ProjectFramework.js +2 -0
  299. package/analyzer-template/packages/github/dist/types/src/enums/ProjectFramework.js.map +1 -1
  300. package/analyzer-template/packages/github/dist/types/src/types/Analysis.d.ts +87 -13
  301. package/analyzer-template/packages/github/dist/types/src/types/Analysis.d.ts.map +1 -1
  302. package/analyzer-template/packages/github/dist/types/src/types/Commit.d.ts +2 -0
  303. package/analyzer-template/packages/github/dist/types/src/types/Commit.d.ts.map +1 -1
  304. package/analyzer-template/packages/github/dist/types/src/types/Entity.d.ts +2 -0
  305. package/analyzer-template/packages/github/dist/types/src/types/Entity.d.ts.map +1 -1
  306. package/analyzer-template/packages/github/dist/types/src/types/ProjectMetadata.d.ts +8 -0
  307. package/analyzer-template/packages/github/dist/types/src/types/ProjectMetadata.d.ts.map +1 -1
  308. package/analyzer-template/packages/github/dist/types/src/types/Scenario.d.ts +21 -6
  309. package/analyzer-template/packages/github/dist/types/src/types/Scenario.d.ts.map +1 -1
  310. package/analyzer-template/packages/github/dist/types/src/types/ScenariosDataStructure.d.ts +199 -3
  311. package/analyzer-template/packages/github/dist/types/src/types/ScenariosDataStructure.d.ts.map +1 -1
  312. package/analyzer-template/packages/github/dist/types/src/types/ScopeAnalysis.d.ts +6 -1
  313. package/analyzer-template/packages/github/dist/types/src/types/ScopeAnalysis.d.ts.map +1 -1
  314. package/analyzer-template/packages/github/dist/types/src/types/StatementInfo.d.ts +2 -0
  315. package/analyzer-template/packages/github/dist/types/src/types/StatementInfo.d.ts.map +1 -1
  316. package/analyzer-template/packages/github/dist/utils/src/lib/safeFileName.d.ts +9 -1
  317. package/analyzer-template/packages/github/dist/utils/src/lib/safeFileName.d.ts.map +1 -1
  318. package/analyzer-template/packages/github/dist/utils/src/lib/safeFileName.js +29 -3
  319. package/analyzer-template/packages/github/dist/utils/src/lib/safeFileName.js.map +1 -1
  320. package/analyzer-template/packages/github/package.json +2 -2
  321. package/analyzer-template/packages/github/src/lib/loadOrCreateCommit.ts +14 -0
  322. package/analyzer-template/packages/github/src/lib/syncPrimaryBranch.ts +2 -0
  323. package/analyzer-template/packages/process/index.ts +2 -0
  324. package/analyzer-template/packages/process/package.json +12 -0
  325. package/analyzer-template/packages/process/tsconfig.json +8 -0
  326. package/analyzer-template/packages/types/index.ts +5 -0
  327. package/analyzer-template/packages/types/src/enums/ProjectFramework.ts +2 -0
  328. package/analyzer-template/packages/types/src/types/Analysis.ts +104 -13
  329. package/analyzer-template/packages/types/src/types/Commit.ts +2 -0
  330. package/analyzer-template/packages/types/src/types/Entity.ts +2 -0
  331. package/analyzer-template/packages/types/src/types/ProjectMetadata.ts +8 -0
  332. package/analyzer-template/packages/types/src/types/Scenario.ts +21 -10
  333. package/analyzer-template/packages/types/src/types/ScenariosDataStructure.ts +228 -3
  334. package/analyzer-template/packages/types/src/types/ScopeAnalysis.ts +6 -1
  335. package/analyzer-template/packages/types/src/types/StatementInfo.ts +2 -0
  336. package/analyzer-template/packages/ui-components/package.json +1 -1
  337. package/analyzer-template/packages/utils/dist/types/index.d.ts +2 -2
  338. package/analyzer-template/packages/utils/dist/types/index.d.ts.map +1 -1
  339. package/analyzer-template/packages/utils/dist/types/index.js.map +1 -1
  340. package/analyzer-template/packages/utils/dist/types/src/enums/ProjectFramework.d.ts +2 -0
  341. package/analyzer-template/packages/utils/dist/types/src/enums/ProjectFramework.d.ts.map +1 -1
  342. package/analyzer-template/packages/utils/dist/types/src/enums/ProjectFramework.js +2 -0
  343. package/analyzer-template/packages/utils/dist/types/src/enums/ProjectFramework.js.map +1 -1
  344. package/analyzer-template/packages/utils/dist/types/src/types/Analysis.d.ts +87 -13
  345. package/analyzer-template/packages/utils/dist/types/src/types/Analysis.d.ts.map +1 -1
  346. package/analyzer-template/packages/utils/dist/types/src/types/Commit.d.ts +2 -0
  347. package/analyzer-template/packages/utils/dist/types/src/types/Commit.d.ts.map +1 -1
  348. package/analyzer-template/packages/utils/dist/types/src/types/Entity.d.ts +2 -0
  349. package/analyzer-template/packages/utils/dist/types/src/types/Entity.d.ts.map +1 -1
  350. package/analyzer-template/packages/utils/dist/types/src/types/ProjectMetadata.d.ts +8 -0
  351. package/analyzer-template/packages/utils/dist/types/src/types/ProjectMetadata.d.ts.map +1 -1
  352. package/analyzer-template/packages/utils/dist/types/src/types/Scenario.d.ts +21 -6
  353. package/analyzer-template/packages/utils/dist/types/src/types/Scenario.d.ts.map +1 -1
  354. package/analyzer-template/packages/utils/dist/types/src/types/ScenariosDataStructure.d.ts +199 -3
  355. package/analyzer-template/packages/utils/dist/types/src/types/ScenariosDataStructure.d.ts.map +1 -1
  356. package/analyzer-template/packages/utils/dist/types/src/types/ScopeAnalysis.d.ts +6 -1
  357. package/analyzer-template/packages/utils/dist/types/src/types/ScopeAnalysis.d.ts.map +1 -1
  358. package/analyzer-template/packages/utils/dist/types/src/types/StatementInfo.d.ts +2 -0
  359. package/analyzer-template/packages/utils/dist/types/src/types/StatementInfo.d.ts.map +1 -1
  360. package/analyzer-template/packages/utils/dist/utils/src/lib/fs/rsyncCopy.d.ts.map +1 -1
  361. package/analyzer-template/packages/utils/dist/utils/src/lib/fs/rsyncCopy.js +98 -3
  362. package/analyzer-template/packages/utils/dist/utils/src/lib/fs/rsyncCopy.js.map +1 -1
  363. package/analyzer-template/packages/utils/dist/utils/src/lib/safeFileName.d.ts +9 -1
  364. package/analyzer-template/packages/utils/dist/utils/src/lib/safeFileName.d.ts.map +1 -1
  365. package/analyzer-template/packages/utils/dist/utils/src/lib/safeFileName.js +29 -3
  366. package/analyzer-template/packages/utils/dist/utils/src/lib/safeFileName.js.map +1 -1
  367. package/analyzer-template/packages/utils/src/lib/fs/rsyncCopy.ts +121 -3
  368. package/analyzer-template/packages/utils/src/lib/safeFileName.ts +48 -3
  369. package/analyzer-template/playwright/capture.ts +57 -26
  370. package/analyzer-template/playwright/captureFromUrl.ts +89 -82
  371. package/analyzer-template/playwright/captureStatic.ts +1 -1
  372. package/analyzer-template/playwright/getCodeYamInfo.ts +12 -7
  373. package/analyzer-template/playwright/waitForServer.ts +21 -6
  374. package/analyzer-template/project/analyzeBaselineCommit.ts +9 -0
  375. package/analyzer-template/project/analyzeBranchCommit.ts +4 -0
  376. package/analyzer-template/project/analyzeFileEntities.ts +4 -0
  377. package/analyzer-template/project/analyzeRegularCommit.ts +9 -0
  378. package/analyzer-template/project/captureLibraryFunctionDirect.ts +29 -26
  379. package/analyzer-template/project/constructMockCode.ts +1341 -189
  380. package/analyzer-template/project/controller/startController.ts +16 -1
  381. package/analyzer-template/project/createEntitiesAndSortFiles.ts +83 -0
  382. package/analyzer-template/project/executeLibraryFunctionDirect.ts +7 -3
  383. package/analyzer-template/project/loadReadyToBeCaptured.ts +65 -41
  384. package/analyzer-template/project/mocks/analyzeFileMock.ts +8 -7
  385. package/analyzer-template/project/orchestrateCapture/AwsCaptureTaskRunner.ts +12 -4
  386. package/analyzer-template/project/orchestrateCapture/KyselyAnalysisLoader.ts +3 -6
  387. package/analyzer-template/project/orchestrateCapture/SequentialCaptureTaskRunner.ts +18 -7
  388. package/analyzer-template/project/orchestrateCapture/taskRunner.ts +4 -2
  389. package/analyzer-template/project/orchestrateCapture.ts +85 -10
  390. package/analyzer-template/project/reconcileMockDataKeys.ts +251 -3
  391. package/analyzer-template/project/runAnalysis.ts +11 -0
  392. package/analyzer-template/project/serverOnlyModules.ts +127 -2
  393. package/analyzer-template/project/start.ts +54 -15
  394. package/analyzer-template/project/startScenarioCapture.ts +15 -0
  395. package/analyzer-template/project/writeClientLogRoute.ts +125 -0
  396. package/analyzer-template/project/writeMockDataTsx.ts +420 -61
  397. package/analyzer-template/project/writeScenarioClientWrapper.ts +21 -0
  398. package/analyzer-template/project/writeScenarioComponents.ts +503 -113
  399. package/analyzer-template/project/writeScenarioFiles.ts +26 -0
  400. package/analyzer-template/project/writeSimpleRoot.ts +31 -23
  401. package/analyzer-template/scripts/comboWorkerLoop.cjs +99 -50
  402. package/analyzer-template/scripts/defaultCmd.sh +9 -0
  403. package/analyzer-template/tsconfig.json +14 -1
  404. package/background/src/lib/local/createLocalAnalyzer.js +2 -30
  405. package/background/src/lib/local/createLocalAnalyzer.js.map +1 -1
  406. package/background/src/lib/local/execAsync.js +1 -1
  407. package/background/src/lib/local/execAsync.js.map +1 -1
  408. package/background/src/lib/virtualized/common/execAsync.js +1 -1
  409. package/background/src/lib/virtualized/common/execAsync.js.map +1 -1
  410. package/background/src/lib/virtualized/project/analyzeBaselineCommit.js +7 -1
  411. package/background/src/lib/virtualized/project/analyzeBaselineCommit.js.map +1 -1
  412. package/background/src/lib/virtualized/project/analyzeBranchCommit.js +2 -1
  413. package/background/src/lib/virtualized/project/analyzeBranchCommit.js.map +1 -1
  414. package/background/src/lib/virtualized/project/analyzeFileEntities.js +2 -1
  415. package/background/src/lib/virtualized/project/analyzeFileEntities.js.map +1 -1
  416. package/background/src/lib/virtualized/project/analyzeRegularCommit.js +7 -1
  417. package/background/src/lib/virtualized/project/analyzeRegularCommit.js.map +1 -1
  418. package/background/src/lib/virtualized/project/captureLibraryFunctionDirect.js +3 -3
  419. package/background/src/lib/virtualized/project/captureLibraryFunctionDirect.js.map +1 -1
  420. package/background/src/lib/virtualized/project/constructMockCode.js +1179 -140
  421. package/background/src/lib/virtualized/project/constructMockCode.js.map +1 -1
  422. package/background/src/lib/virtualized/project/controller/startController.js +11 -1
  423. package/background/src/lib/virtualized/project/controller/startController.js.map +1 -1
  424. package/background/src/lib/virtualized/project/createEntitiesAndSortFiles.js +73 -1
  425. package/background/src/lib/virtualized/project/createEntitiesAndSortFiles.js.map +1 -1
  426. package/background/src/lib/virtualized/project/executeLibraryFunctionDirect.js +6 -3
  427. package/background/src/lib/virtualized/project/executeLibraryFunctionDirect.js.map +1 -1
  428. package/background/src/lib/virtualized/project/loadReadyToBeCaptured.js +19 -8
  429. package/background/src/lib/virtualized/project/loadReadyToBeCaptured.js.map +1 -1
  430. package/background/src/lib/virtualized/project/mocks/analyzeFileMock.js +7 -7
  431. package/background/src/lib/virtualized/project/mocks/analyzeFileMock.js.map +1 -1
  432. package/background/src/lib/virtualized/project/orchestrateCapture/AwsCaptureTaskRunner.js +2 -2
  433. package/background/src/lib/virtualized/project/orchestrateCapture/AwsCaptureTaskRunner.js.map +1 -1
  434. package/background/src/lib/virtualized/project/orchestrateCapture/KyselyAnalysisLoader.js +3 -2
  435. package/background/src/lib/virtualized/project/orchestrateCapture/KyselyAnalysisLoader.js.map +1 -1
  436. package/background/src/lib/virtualized/project/orchestrateCapture/SequentialCaptureTaskRunner.js +7 -5
  437. package/background/src/lib/virtualized/project/orchestrateCapture/SequentialCaptureTaskRunner.js.map +1 -1
  438. package/background/src/lib/virtualized/project/orchestrateCapture.js +69 -11
  439. package/background/src/lib/virtualized/project/orchestrateCapture.js.map +1 -1
  440. package/background/src/lib/virtualized/project/reconcileMockDataKeys.js +211 -3
  441. package/background/src/lib/virtualized/project/reconcileMockDataKeys.js.map +1 -1
  442. package/background/src/lib/virtualized/project/runAnalysis.js +9 -0
  443. package/background/src/lib/virtualized/project/runAnalysis.js.map +1 -1
  444. package/background/src/lib/virtualized/project/serverOnlyModules.js +106 -3
  445. package/background/src/lib/virtualized/project/serverOnlyModules.js.map +1 -1
  446. package/background/src/lib/virtualized/project/start.js +49 -15
  447. package/background/src/lib/virtualized/project/start.js.map +1 -1
  448. package/background/src/lib/virtualized/project/startScenarioCapture.js +12 -0
  449. package/background/src/lib/virtualized/project/startScenarioCapture.js.map +1 -1
  450. package/background/src/lib/virtualized/project/writeClientLogRoute.js +110 -0
  451. package/background/src/lib/virtualized/project/writeClientLogRoute.js.map +1 -0
  452. package/background/src/lib/virtualized/project/writeMockDataTsx.js +362 -50
  453. package/background/src/lib/virtualized/project/writeMockDataTsx.js.map +1 -1
  454. package/background/src/lib/virtualized/project/writeScenarioClientWrapper.js +15 -0
  455. package/background/src/lib/virtualized/project/writeScenarioClientWrapper.js.map +1 -0
  456. package/background/src/lib/virtualized/project/writeScenarioComponents.js +384 -93
  457. package/background/src/lib/virtualized/project/writeScenarioComponents.js.map +1 -1
  458. package/background/src/lib/virtualized/project/writeScenarioFiles.js +19 -0
  459. package/background/src/lib/virtualized/project/writeScenarioFiles.js.map +1 -1
  460. package/background/src/lib/virtualized/project/writeSimpleRoot.js +31 -21
  461. package/background/src/lib/virtualized/project/writeSimpleRoot.js.map +1 -1
  462. package/codeyam-cli/scripts/apply-setup.js +386 -9
  463. package/codeyam-cli/scripts/apply-setup.js.map +1 -1
  464. package/codeyam-cli/src/__tests__/memory-scripts/filter-session.test.js +196 -0
  465. package/codeyam-cli/src/__tests__/memory-scripts/filter-session.test.js.map +1 -0
  466. package/codeyam-cli/src/__tests__/memory-scripts/read-json-field.test.js +114 -0
  467. package/codeyam-cli/src/__tests__/memory-scripts/read-json-field.test.js.map +1 -0
  468. package/codeyam-cli/src/__tests__/memory-scripts/ripgrep-fallback.test.js +149 -0
  469. package/codeyam-cli/src/__tests__/memory-scripts/ripgrep-fallback.test.js.map +1 -0
  470. package/codeyam-cli/src/cli.js +38 -23
  471. package/codeyam-cli/src/cli.js.map +1 -1
  472. package/codeyam-cli/src/codeyam-cli.js +18 -2
  473. package/codeyam-cli/src/codeyam-cli.js.map +1 -1
  474. package/codeyam-cli/src/commands/__tests__/editor.stepDispatch.test.js +45 -0
  475. package/codeyam-cli/src/commands/__tests__/editor.stepDispatch.test.js.map +1 -0
  476. package/codeyam-cli/src/commands/__tests__/init.gitignore.test.js +101 -47
  477. package/codeyam-cli/src/commands/__tests__/init.gitignore.test.js.map +1 -1
  478. package/codeyam-cli/src/commands/analyze.js +22 -10
  479. package/codeyam-cli/src/commands/analyze.js.map +1 -1
  480. package/codeyam-cli/src/commands/baseline.js +176 -0
  481. package/codeyam-cli/src/commands/baseline.js.map +1 -0
  482. package/codeyam-cli/src/commands/debug.js +37 -23
  483. package/codeyam-cli/src/commands/debug.js.map +1 -1
  484. package/codeyam-cli/src/commands/default.js +43 -35
  485. package/codeyam-cli/src/commands/default.js.map +1 -1
  486. package/codeyam-cli/src/commands/editor.js +3215 -0
  487. package/codeyam-cli/src/commands/editor.js.map +1 -0
  488. package/codeyam-cli/src/commands/init.js +146 -292
  489. package/codeyam-cli/src/commands/init.js.map +1 -1
  490. package/codeyam-cli/src/commands/memory.js +278 -0
  491. package/codeyam-cli/src/commands/memory.js.map +1 -0
  492. package/codeyam-cli/src/commands/recapture.js +31 -18
  493. package/codeyam-cli/src/commands/recapture.js.map +1 -1
  494. package/codeyam-cli/src/commands/report.js +72 -24
  495. package/codeyam-cli/src/commands/report.js.map +1 -1
  496. package/codeyam-cli/src/commands/setup-sandbox.js +2 -0
  497. package/codeyam-cli/src/commands/setup-sandbox.js.map +1 -1
  498. package/codeyam-cli/src/commands/setup-simulations.js +284 -0
  499. package/codeyam-cli/src/commands/setup-simulations.js.map +1 -0
  500. package/codeyam-cli/src/commands/start.js +8 -12
  501. package/codeyam-cli/src/commands/start.js.map +1 -1
  502. package/codeyam-cli/src/commands/status.js +23 -1
  503. package/codeyam-cli/src/commands/status.js.map +1 -1
  504. package/codeyam-cli/src/commands/test-startup.js +3 -1
  505. package/codeyam-cli/src/commands/test-startup.js.map +1 -1
  506. package/codeyam-cli/src/commands/verify.js +14 -2
  507. package/codeyam-cli/src/commands/verify.js.map +1 -1
  508. package/codeyam-cli/src/commands/wipe.js +108 -0
  509. package/codeyam-cli/src/commands/wipe.js.map +1 -0
  510. package/codeyam-cli/src/data/techStacks.js +77 -0
  511. package/codeyam-cli/src/data/techStacks.js.map +1 -0
  512. package/codeyam-cli/src/utils/__tests__/analyzerFinalization.test.js +144 -0
  513. package/codeyam-cli/src/utils/__tests__/analyzerFinalization.test.js.map +1 -0
  514. package/codeyam-cli/src/utils/__tests__/backgroundServer.test.js +46 -0
  515. package/codeyam-cli/src/utils/__tests__/backgroundServer.test.js.map +1 -0
  516. package/codeyam-cli/src/utils/__tests__/devServerState.test.js +134 -0
  517. package/codeyam-cli/src/utils/__tests__/devServerState.test.js.map +1 -0
  518. package/codeyam-cli/src/utils/__tests__/editorApi.test.js +127 -0
  519. package/codeyam-cli/src/utils/__tests__/editorApi.test.js.map +1 -0
  520. package/codeyam-cli/src/utils/__tests__/editorAudit.test.js +855 -0
  521. package/codeyam-cli/src/utils/__tests__/editorAudit.test.js.map +1 -0
  522. package/codeyam-cli/src/utils/__tests__/editorCapture.test.js +93 -0
  523. package/codeyam-cli/src/utils/__tests__/editorCapture.test.js.map +1 -0
  524. package/codeyam-cli/src/utils/__tests__/editorDevServer.test.js +304 -0
  525. package/codeyam-cli/src/utils/__tests__/editorDevServer.test.js.map +1 -0
  526. package/codeyam-cli/src/utils/__tests__/editorEntityChangeStatus.test.js +121 -0
  527. package/codeyam-cli/src/utils/__tests__/editorEntityChangeStatus.test.js.map +1 -0
  528. package/codeyam-cli/src/utils/__tests__/editorImageVerifier.test.js +294 -0
  529. package/codeyam-cli/src/utils/__tests__/editorImageVerifier.test.js.map +1 -0
  530. package/codeyam-cli/src/utils/__tests__/editorJournal.test.js +542 -0
  531. package/codeyam-cli/src/utils/__tests__/editorJournal.test.js.map +1 -0
  532. package/codeyam-cli/src/utils/__tests__/editorLoaderHelpers.test.js +520 -0
  533. package/codeyam-cli/src/utils/__tests__/editorLoaderHelpers.test.js.map +1 -0
  534. package/codeyam-cli/src/utils/__tests__/editorMockState.test.js +270 -0
  535. package/codeyam-cli/src/utils/__tests__/editorMockState.test.js.map +1 -0
  536. package/codeyam-cli/src/utils/__tests__/editorPreloadHelpers.test.js +217 -0
  537. package/codeyam-cli/src/utils/__tests__/editorPreloadHelpers.test.js.map +1 -0
  538. package/codeyam-cli/src/utils/__tests__/editorPreview.test.js +339 -0
  539. package/codeyam-cli/src/utils/__tests__/editorPreview.test.js.map +1 -0
  540. package/codeyam-cli/src/utils/__tests__/editorProxySession.test.js +153 -0
  541. package/codeyam-cli/src/utils/__tests__/editorProxySession.test.js.map +1 -0
  542. package/codeyam-cli/src/utils/__tests__/editorScenarioLookup.test.js +139 -0
  543. package/codeyam-cli/src/utils/__tests__/editorScenarioLookup.test.js.map +1 -0
  544. package/codeyam-cli/src/utils/__tests__/editorScenarioSwitch.test.js +221 -0
  545. package/codeyam-cli/src/utils/__tests__/editorScenarioSwitch.test.js.map +1 -0
  546. package/codeyam-cli/src/utils/__tests__/editorScenarios.test.js +855 -0
  547. package/codeyam-cli/src/utils/__tests__/editorScenarios.test.js.map +1 -0
  548. package/codeyam-cli/src/utils/__tests__/editorSeedAdapter.test.js +213 -0
  549. package/codeyam-cli/src/utils/__tests__/editorSeedAdapter.test.js.map +1 -0
  550. package/codeyam-cli/src/utils/__tests__/entityChangeStatus.test.js +1742 -0
  551. package/codeyam-cli/src/utils/__tests__/entityChangeStatus.test.js.map +1 -0
  552. package/codeyam-cli/src/utils/__tests__/git.editor.test.js +134 -0
  553. package/codeyam-cli/src/utils/__tests__/git.editor.test.js.map +1 -0
  554. package/codeyam-cli/src/utils/__tests__/journalCaptureStabilization.test.js +107 -0
  555. package/codeyam-cli/src/utils/__tests__/journalCaptureStabilization.test.js.map +1 -0
  556. package/codeyam-cli/src/utils/__tests__/npmVersionCheck.test.js +185 -0
  557. package/codeyam-cli/src/utils/__tests__/npmVersionCheck.test.js.map +1 -0
  558. package/codeyam-cli/src/utils/__tests__/parseRegisterArg.test.js +101 -0
  559. package/codeyam-cli/src/utils/__tests__/parseRegisterArg.test.js.map +1 -0
  560. package/codeyam-cli/src/utils/__tests__/pathIgnoring.test.js +9 -0
  561. package/codeyam-cli/src/utils/__tests__/pathIgnoring.test.js.map +1 -1
  562. package/codeyam-cli/src/utils/__tests__/project.test.js +65 -0
  563. package/codeyam-cli/src/utils/__tests__/project.test.js.map +1 -0
  564. package/codeyam-cli/src/utils/__tests__/scenarioCoverage.test.js +227 -0
  565. package/codeyam-cli/src/utils/__tests__/scenarioCoverage.test.js.map +1 -0
  566. package/codeyam-cli/src/utils/__tests__/scenarioMarkers.test.js +121 -0
  567. package/codeyam-cli/src/utils/__tests__/scenarioMarkers.test.js.map +1 -0
  568. package/codeyam-cli/src/utils/__tests__/scenariosManifest.test.js +300 -0
  569. package/codeyam-cli/src/utils/__tests__/scenariosManifest.test.js.map +1 -0
  570. package/codeyam-cli/src/utils/__tests__/serverVersionStaleness.test.js +81 -0
  571. package/codeyam-cli/src/utils/__tests__/serverVersionStaleness.test.js.map +1 -0
  572. package/codeyam-cli/src/utils/__tests__/setupClaudeCodeSettings.test.js +174 -82
  573. package/codeyam-cli/src/utils/__tests__/setupClaudeCodeSettings.test.js.map +1 -1
  574. package/codeyam-cli/src/utils/__tests__/templateConsistency.test.js +51 -0
  575. package/codeyam-cli/src/utils/__tests__/templateConsistency.test.js.map +1 -0
  576. package/codeyam-cli/src/utils/__tests__/webappDetection.test.js +142 -0
  577. package/codeyam-cli/src/utils/__tests__/webappDetection.test.js.map +1 -0
  578. package/codeyam-cli/src/utils/analysisRunner.js +29 -15
  579. package/codeyam-cli/src/utils/analysisRunner.js.map +1 -1
  580. package/codeyam-cli/src/utils/analyzer.js +16 -0
  581. package/codeyam-cli/src/utils/analyzer.js.map +1 -1
  582. package/codeyam-cli/src/utils/analyzerFinalization.js +96 -0
  583. package/codeyam-cli/src/utils/analyzerFinalization.js.map +1 -0
  584. package/codeyam-cli/src/utils/backgroundServer.js +202 -29
  585. package/codeyam-cli/src/utils/backgroundServer.js.map +1 -1
  586. package/codeyam-cli/src/utils/buildFlags.js +4 -0
  587. package/codeyam-cli/src/utils/buildFlags.js.map +1 -0
  588. package/codeyam-cli/src/utils/database.js +128 -7
  589. package/codeyam-cli/src/utils/database.js.map +1 -1
  590. package/codeyam-cli/src/utils/devModeEvents.js +40 -0
  591. package/codeyam-cli/src/utils/devModeEvents.js.map +1 -0
  592. package/codeyam-cli/src/utils/devServerState.js +71 -0
  593. package/codeyam-cli/src/utils/devServerState.js.map +1 -0
  594. package/codeyam-cli/src/utils/editorApi.js +73 -0
  595. package/codeyam-cli/src/utils/editorApi.js.map +1 -0
  596. package/codeyam-cli/src/utils/editorAudit.js +176 -0
  597. package/codeyam-cli/src/utils/editorAudit.js.map +1 -0
  598. package/codeyam-cli/src/utils/editorCapture.js +102 -0
  599. package/codeyam-cli/src/utils/editorCapture.js.map +1 -0
  600. package/codeyam-cli/src/utils/editorDevServer.js +197 -0
  601. package/codeyam-cli/src/utils/editorDevServer.js.map +1 -0
  602. package/codeyam-cli/src/utils/editorEntityChangeStatus.js +44 -0
  603. package/codeyam-cli/src/utils/editorEntityChangeStatus.js.map +1 -0
  604. package/codeyam-cli/src/utils/editorImageVerifier.js +155 -0
  605. package/codeyam-cli/src/utils/editorImageVerifier.js.map +1 -0
  606. package/codeyam-cli/src/utils/editorJournal.js +225 -0
  607. package/codeyam-cli/src/utils/editorJournal.js.map +1 -0
  608. package/codeyam-cli/src/utils/editorLoaderHelpers.js +113 -0
  609. package/codeyam-cli/src/utils/editorLoaderHelpers.js.map +1 -0
  610. package/codeyam-cli/src/utils/editorMockState.js +248 -0
  611. package/codeyam-cli/src/utils/editorMockState.js.map +1 -0
  612. package/codeyam-cli/src/utils/editorPreloadHelpers.js +135 -0
  613. package/codeyam-cli/src/utils/editorPreloadHelpers.js.map +1 -0
  614. package/codeyam-cli/src/utils/editorPreview.js +132 -0
  615. package/codeyam-cli/src/utils/editorPreview.js.map +1 -0
  616. package/codeyam-cli/src/utils/editorScenarioSwitch.js +112 -0
  617. package/codeyam-cli/src/utils/editorScenarioSwitch.js.map +1 -0
  618. package/codeyam-cli/src/utils/editorScenarios.js +332 -0
  619. package/codeyam-cli/src/utils/editorScenarios.js.map +1 -0
  620. package/codeyam-cli/src/utils/editorSeedAdapter.js +173 -0
  621. package/codeyam-cli/src/utils/editorSeedAdapter.js.map +1 -0
  622. package/codeyam-cli/src/utils/entityChangeStatus.js +349 -0
  623. package/codeyam-cli/src/utils/entityChangeStatus.js.map +1 -0
  624. package/codeyam-cli/src/utils/entityChangeStatus.server.js +158 -0
  625. package/codeyam-cli/src/utils/entityChangeStatus.server.js.map +1 -0
  626. package/codeyam-cli/src/utils/fileMetadata.js +5 -0
  627. package/codeyam-cli/src/utils/fileMetadata.js.map +1 -1
  628. package/codeyam-cli/src/utils/fileWatcher.js +25 -9
  629. package/codeyam-cli/src/utils/fileWatcher.js.map +1 -1
  630. package/codeyam-cli/src/utils/generateReport.js +253 -106
  631. package/codeyam-cli/src/utils/generateReport.js.map +1 -1
  632. package/codeyam-cli/src/utils/git.js +182 -0
  633. package/codeyam-cli/src/utils/git.js.map +1 -0
  634. package/codeyam-cli/src/utils/install-skills.js +120 -39
  635. package/codeyam-cli/src/utils/install-skills.js.map +1 -1
  636. package/codeyam-cli/src/utils/interactiveSyncWatcher.js +126 -0
  637. package/codeyam-cli/src/utils/interactiveSyncWatcher.js.map +1 -0
  638. package/codeyam-cli/src/utils/labsAutoCheck.js +19 -0
  639. package/codeyam-cli/src/utils/labsAutoCheck.js.map +1 -0
  640. package/codeyam-cli/src/utils/npmVersionCheck.js +76 -0
  641. package/codeyam-cli/src/utils/npmVersionCheck.js.map +1 -0
  642. package/codeyam-cli/src/utils/parseRegisterArg.js +31 -0
  643. package/codeyam-cli/src/utils/parseRegisterArg.js.map +1 -0
  644. package/codeyam-cli/src/utils/pathIgnoring.js +19 -7
  645. package/codeyam-cli/src/utils/pathIgnoring.js.map +1 -1
  646. package/codeyam-cli/src/utils/progress.js +7 -0
  647. package/codeyam-cli/src/utils/progress.js.map +1 -1
  648. package/codeyam-cli/src/utils/project.js +15 -5
  649. package/codeyam-cli/src/utils/project.js.map +1 -1
  650. package/codeyam-cli/src/utils/queue/__tests__/heartbeat.test.js +11 -11
  651. package/codeyam-cli/src/utils/queue/__tests__/heartbeat.test.js.map +1 -1
  652. package/codeyam-cli/src/utils/queue/__tests__/manager.test.js +60 -0
  653. package/codeyam-cli/src/utils/queue/__tests__/manager.test.js.map +1 -1
  654. package/codeyam-cli/src/utils/queue/heartbeat.js +13 -5
  655. package/codeyam-cli/src/utils/queue/heartbeat.js.map +1 -1
  656. package/codeyam-cli/src/utils/queue/job.js +208 -19
  657. package/codeyam-cli/src/utils/queue/job.js.map +1 -1
  658. package/codeyam-cli/src/utils/queue/manager.js +26 -7
  659. package/codeyam-cli/src/utils/queue/manager.js.map +1 -1
  660. package/codeyam-cli/src/utils/queue/persistence.js.map +1 -1
  661. package/codeyam-cli/src/utils/requireSimulations.js +10 -0
  662. package/codeyam-cli/src/utils/requireSimulations.js.map +1 -0
  663. package/codeyam-cli/src/utils/ruleReflection/__tests__/confusionDetector.test.js +82 -0
  664. package/codeyam-cli/src/utils/ruleReflection/__tests__/confusionDetector.test.js.map +1 -0
  665. package/codeyam-cli/src/utils/ruleReflection/__tests__/contextBuilder.test.js +229 -0
  666. package/codeyam-cli/src/utils/ruleReflection/__tests__/contextBuilder.test.js.map +1 -0
  667. package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/assertRules.js +67 -0
  668. package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/assertRules.js.map +1 -0
  669. package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/captureFixture.js +105 -0
  670. package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/captureFixture.js.map +1 -0
  671. package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/loadCapturedFixture.js +34 -0
  672. package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/loadCapturedFixture.js.map +1 -0
  673. package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/runClaude.js +162 -0
  674. package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/runClaude.js.map +1 -0
  675. package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/setupTempProject.js +74 -0
  676. package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/helpers/setupTempProject.js.map +1 -0
  677. package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/ruleReflectionE2E.test.js +376 -0
  678. package/codeyam-cli/src/utils/ruleReflection/__tests__/integration/ruleReflectionE2E.test.js.map +1 -0
  679. package/codeyam-cli/src/utils/ruleReflection/__tests__/promptBuilder.test.js +113 -0
  680. package/codeyam-cli/src/utils/ruleReflection/__tests__/promptBuilder.test.js.map +1 -0
  681. package/codeyam-cli/src/utils/ruleReflection/__tests__/transcriptParser.test.js +127 -0
  682. package/codeyam-cli/src/utils/ruleReflection/__tests__/transcriptParser.test.js.map +1 -0
  683. package/codeyam-cli/src/utils/ruleReflection/confusionDetector.js +50 -0
  684. package/codeyam-cli/src/utils/ruleReflection/confusionDetector.js.map +1 -0
  685. package/codeyam-cli/src/utils/ruleReflection/contextBuilder.js +116 -0
  686. package/codeyam-cli/src/utils/ruleReflection/contextBuilder.js.map +1 -0
  687. package/codeyam-cli/src/utils/ruleReflection/index.js +5 -0
  688. package/codeyam-cli/src/utils/ruleReflection/index.js.map +1 -0
  689. package/codeyam-cli/src/utils/ruleReflection/promptBuilder.js +44 -0
  690. package/codeyam-cli/src/utils/ruleReflection/promptBuilder.js.map +1 -0
  691. package/codeyam-cli/src/utils/ruleReflection/transcriptParser.js +85 -0
  692. package/codeyam-cli/src/utils/ruleReflection/transcriptParser.js.map +1 -0
  693. package/codeyam-cli/src/utils/ruleReflection/types.js +5 -0
  694. package/codeyam-cli/src/utils/ruleReflection/types.js.map +1 -0
  695. package/codeyam-cli/src/utils/rules/__tests__/parser.test.js +83 -0
  696. package/codeyam-cli/src/utils/rules/__tests__/parser.test.js.map +1 -0
  697. package/codeyam-cli/src/utils/rules/__tests__/pathMatcher.test.js +118 -0
  698. package/codeyam-cli/src/utils/rules/__tests__/pathMatcher.test.js.map +1 -0
  699. package/codeyam-cli/src/utils/rules/__tests__/rulePlacement.test.js +72 -0
  700. package/codeyam-cli/src/utils/rules/__tests__/rulePlacement.test.js.map +1 -0
  701. package/codeyam-cli/src/utils/rules/__tests__/ruleState.test.js +293 -0
  702. package/codeyam-cli/src/utils/rules/__tests__/ruleState.test.js.map +1 -0
  703. package/codeyam-cli/src/utils/rules/__tests__/sourceFiles.test.js +76 -0
  704. package/codeyam-cli/src/utils/rules/__tests__/sourceFiles.test.js.map +1 -0
  705. package/codeyam-cli/src/utils/rules/index.js +7 -0
  706. package/codeyam-cli/src/utils/rules/index.js.map +1 -0
  707. package/codeyam-cli/src/utils/rules/parser.js +93 -0
  708. package/codeyam-cli/src/utils/rules/parser.js.map +1 -0
  709. package/codeyam-cli/src/utils/rules/pathMatcher.js +49 -0
  710. package/codeyam-cli/src/utils/rules/pathMatcher.js.map +1 -0
  711. package/codeyam-cli/src/utils/rules/rulePlacement.js +65 -0
  712. package/codeyam-cli/src/utils/rules/rulePlacement.js.map +1 -0
  713. package/codeyam-cli/src/utils/rules/ruleState.js +150 -0
  714. package/codeyam-cli/src/utils/rules/ruleState.js.map +1 -0
  715. package/codeyam-cli/src/utils/rules/sourceFiles.js +43 -0
  716. package/codeyam-cli/src/utils/rules/sourceFiles.js.map +1 -0
  717. package/codeyam-cli/src/utils/rules/staleness.js +137 -0
  718. package/codeyam-cli/src/utils/rules/staleness.js.map +1 -0
  719. package/codeyam-cli/src/utils/scenarioCoverage.js +75 -0
  720. package/codeyam-cli/src/utils/scenarioCoverage.js.map +1 -0
  721. package/codeyam-cli/src/utils/scenarioMarkers.js +134 -0
  722. package/codeyam-cli/src/utils/scenarioMarkers.js.map +1 -0
  723. package/codeyam-cli/src/utils/scenariosManifest.js +159 -0
  724. package/codeyam-cli/src/utils/scenariosManifest.js.map +1 -0
  725. package/codeyam-cli/src/utils/serverState.js +94 -12
  726. package/codeyam-cli/src/utils/serverState.js.map +1 -1
  727. package/codeyam-cli/src/utils/setupClaudeCodeSettings.js +95 -45
  728. package/codeyam-cli/src/utils/setupClaudeCodeSettings.js.map +1 -1
  729. package/codeyam-cli/src/utils/simulationGateMiddleware.js +166 -0
  730. package/codeyam-cli/src/utils/simulationGateMiddleware.js.map +1 -0
  731. package/codeyam-cli/src/utils/slugUtils.js +25 -0
  732. package/codeyam-cli/src/utils/slugUtils.js.map +1 -0
  733. package/codeyam-cli/src/utils/syncMocksMiddleware.js +7 -26
  734. package/codeyam-cli/src/utils/syncMocksMiddleware.js.map +1 -1
  735. package/codeyam-cli/src/utils/testRunner.js +158 -0
  736. package/codeyam-cli/src/utils/testRunner.js.map +1 -0
  737. package/codeyam-cli/src/utils/transcriptPruning.js +67 -0
  738. package/codeyam-cli/src/utils/transcriptPruning.js.map +1 -0
  739. package/codeyam-cli/src/utils/versionInfo.js +67 -15
  740. package/codeyam-cli/src/utils/versionInfo.js.map +1 -1
  741. package/codeyam-cli/src/utils/webappDetection.js +35 -2
  742. package/codeyam-cli/src/utils/webappDetection.js.map +1 -1
  743. package/codeyam-cli/src/utils/wipe.js +128 -0
  744. package/codeyam-cli/src/utils/wipe.js.map +1 -0
  745. package/codeyam-cli/src/webserver/__tests__/clientErrors.test.js +40 -0
  746. package/codeyam-cli/src/webserver/__tests__/clientErrors.test.js.map +1 -0
  747. package/codeyam-cli/src/webserver/__tests__/dependency-smoke.test.js +66 -0
  748. package/codeyam-cli/src/webserver/__tests__/dependency-smoke.test.js.map +1 -0
  749. package/codeyam-cli/src/webserver/__tests__/editorProxy.test.js +567 -0
  750. package/codeyam-cli/src/webserver/__tests__/editorProxy.test.js.map +1 -0
  751. package/codeyam-cli/src/webserver/app/lib/clientErrors.js +65 -0
  752. package/codeyam-cli/src/webserver/app/lib/clientErrors.js.map +1 -0
  753. package/codeyam-cli/src/webserver/app/lib/database.js +129 -50
  754. package/codeyam-cli/src/webserver/app/lib/database.js.map +1 -1
  755. package/codeyam-cli/src/webserver/app/lib/dbNotifier.js.map +1 -1
  756. package/codeyam-cli/src/webserver/app/lib/git.js +397 -0
  757. package/codeyam-cli/src/webserver/app/lib/git.js.map +1 -0
  758. package/codeyam-cli/src/webserver/backgroundServer.js +168 -21
  759. package/codeyam-cli/src/webserver/backgroundServer.js.map +1 -1
  760. package/codeyam-cli/src/webserver/bootstrap.js +51 -0
  761. package/codeyam-cli/src/webserver/bootstrap.js.map +1 -1
  762. package/codeyam-cli/src/webserver/build/client/assets/CopyButton-BPXZwM4t.js +1 -0
  763. package/codeyam-cli/src/webserver/build/client/assets/EntityItem-BcgbViKV.js +11 -0
  764. package/codeyam-cli/src/webserver/build/client/assets/{EntityTypeBadge-CMjhlvyu.js → EntityTypeBadge-g3saevPb.js} +1 -1
  765. package/codeyam-cli/src/webserver/build/client/assets/EntityTypeIcon-CQIG2qda.js +41 -0
  766. package/codeyam-cli/src/webserver/build/client/assets/InlineSpinner-Bu6c6aDe.js +1 -0
  767. package/codeyam-cli/src/webserver/build/client/assets/InteractivePreview-DYFW3lDD.js +25 -0
  768. package/codeyam-cli/src/webserver/build/client/assets/{LibraryFunctionPreview-DXN1aCbt.js → LibraryFunctionPreview-DLeucoVX.js} +1 -1
  769. package/codeyam-cli/src/webserver/build/client/assets/{LoadingDots-BmEO4Lqa.js → LoadingDots-BU_OAEMP.js} +1 -1
  770. package/codeyam-cli/src/webserver/build/client/assets/{LogViewer-CI1VaB3F.js → LogViewer-ceAyBX-H.js} +1 -1
  771. package/codeyam-cli/src/webserver/build/client/assets/ReportIssueModal-BzHcG7SE.js +11 -0
  772. package/codeyam-cli/src/webserver/build/client/assets/{SafeScreenshot-DQddU4F4.js → SafeScreenshot-BED4B6sP.js} +1 -1
  773. package/codeyam-cli/src/webserver/build/client/assets/ScenarioViewer-Bd-hxofb.js +10 -0
  774. package/codeyam-cli/src/webserver/build/client/assets/Spinner-Bb5uFQ5V.js +34 -0
  775. package/codeyam-cli/src/webserver/build/client/assets/{TruncatedFilePath-Dt7eySG0.js → TruncatedFilePath-C8OKAR5x.js} +1 -1
  776. package/codeyam-cli/src/webserver/build/client/assets/ViewportInspectBar-oAf2Kqsf.js +1 -0
  777. package/codeyam-cli/src/webserver/build/client/assets/_index-DLxKhri3.js +11 -0
  778. package/codeyam-cli/src/webserver/build/client/assets/activity.(_tab)-BcY3q6nt.js +27 -0
  779. package/codeyam-cli/src/webserver/build/client/assets/addon-canvas-DpzMmAy5.js +1 -0
  780. package/codeyam-cli/src/webserver/build/client/assets/addon-fit-YJmn1quW.js +12 -0
  781. package/codeyam-cli/src/webserver/build/client/assets/addon-web-links-Duc5hnl7.js +1 -0
  782. package/codeyam-cli/src/webserver/build/client/assets/addon-webgl-DI8QOUvO.js +58 -0
  783. package/codeyam-cli/src/webserver/build/client/assets/agent-transcripts-Bni3iiUj.js +22 -0
  784. package/codeyam-cli/src/webserver/build/client/assets/api.agent-transcripts-l0sNRNKZ.js +1 -0
  785. package/codeyam-cli/src/webserver/build/client/assets/api.dev-mode-events-l0sNRNKZ.js +1 -0
  786. package/codeyam-cli/src/webserver/build/client/assets/api.editor-audit-l0sNRNKZ.js +1 -0
  787. package/codeyam-cli/src/webserver/build/client/assets/api.editor-capture-scenario-l0sNRNKZ.js +1 -0
  788. package/codeyam-cli/src/webserver/build/client/assets/api.editor-client-errors-l0sNRNKZ.js +1 -0
  789. package/codeyam-cli/src/webserver/build/client/assets/api.editor-commit-l0sNRNKZ.js +1 -0
  790. package/codeyam-cli/src/webserver/build/client/assets/api.editor-dev-server-l0sNRNKZ.js +1 -0
  791. package/codeyam-cli/src/webserver/build/client/assets/api.editor-entity-status-l0sNRNKZ.js +1 -0
  792. package/codeyam-cli/src/webserver/build/client/assets/api.editor-file-diff-l0sNRNKZ.js +1 -0
  793. package/codeyam-cli/src/webserver/build/client/assets/api.editor-file-l0sNRNKZ.js +1 -0
  794. package/codeyam-cli/src/webserver/build/client/assets/api.editor-journal-entry-l0sNRNKZ.js +1 -0
  795. package/codeyam-cli/src/webserver/build/client/assets/api.editor-journal-image._-l0sNRNKZ.js +1 -0
  796. package/codeyam-cli/src/webserver/build/client/assets/api.editor-journal-l0sNRNKZ.js +1 -0
  797. package/codeyam-cli/src/webserver/build/client/assets/api.editor-journal-screenshot-l0sNRNKZ.js +1 -0
  798. package/codeyam-cli/src/webserver/build/client/assets/api.editor-journal-update-l0sNRNKZ.js +1 -0
  799. package/codeyam-cli/src/webserver/build/client/assets/api.editor-load-commit-l0sNRNKZ.js +1 -0
  800. package/codeyam-cli/src/webserver/build/client/assets/api.editor-project-info-l0sNRNKZ.js +1 -0
  801. package/codeyam-cli/src/webserver/build/client/assets/api.editor-refresh-l0sNRNKZ.js +1 -0
  802. package/codeyam-cli/src/webserver/build/client/assets/api.editor-register-scenario-l0sNRNKZ.js +1 -0
  803. package/codeyam-cli/src/webserver/build/client/assets/api.editor-scenario-coverage-l0sNRNKZ.js +1 -0
  804. package/codeyam-cli/src/webserver/build/client/assets/api.editor-scenario-data-l0sNRNKZ.js +1 -0
  805. package/codeyam-cli/src/webserver/build/client/assets/api.editor-scenario-image._-l0sNRNKZ.js +1 -0
  806. package/codeyam-cli/src/webserver/build/client/assets/api.editor-scenarios-l0sNRNKZ.js +1 -0
  807. package/codeyam-cli/src/webserver/build/client/assets/api.editor-switch-scenario-l0sNRNKZ.js +1 -0
  808. package/codeyam-cli/src/webserver/build/client/assets/api.editor-test-results-l0sNRNKZ.js +1 -0
  809. package/codeyam-cli/src/webserver/build/client/assets/api.health-l0sNRNKZ.js +1 -0
  810. package/codeyam-cli/src/webserver/build/client/assets/api.labs-unlock-l0sNRNKZ.js +1 -0
  811. package/codeyam-cli/src/webserver/build/client/assets/api.memory-profile-l0sNRNKZ.js +1 -0
  812. package/codeyam-cli/src/webserver/build/client/assets/api.restart-server-l0sNRNKZ.js +1 -0
  813. package/codeyam-cli/src/webserver/build/client/assets/api.rule-path-l0sNRNKZ.js +1 -0
  814. package/codeyam-cli/src/webserver/build/client/assets/api.save-fixture-l0sNRNKZ.js +1 -0
  815. package/codeyam-cli/src/webserver/build/client/assets/book-open-BYOypzCa.js +6 -0
  816. package/codeyam-cli/src/webserver/build/client/assets/{chevron-down-ITTv_xL3.js → chevron-down-C_Pmso5S.js} +2 -2
  817. package/codeyam-cli/src/webserver/build/client/assets/chunk-JZWAC4HX-C4pqxYJB.js +51 -0
  818. package/codeyam-cli/src/webserver/build/client/assets/{circle-check-mMM0RzI0.js → circle-check-BVMi9VA5.js} +2 -2
  819. package/codeyam-cli/src/webserver/build/client/assets/copy-n2FB0_Sw.js +11 -0
  820. package/codeyam-cli/src/webserver/build/client/assets/createLucideIcon-CC6AbExI.js +41 -0
  821. package/codeyam-cli/src/webserver/build/client/assets/{cy-logo-cli-C1gnJVOL.svg → cy-logo-cli-CCKUIm0S.svg} +2 -2
  822. package/codeyam-cli/src/webserver/build/client/assets/cy-logo-cli-DcX-ZS3p.js +1 -0
  823. package/codeyam-cli/src/webserver/build/client/assets/dev.empty-BsDh6TSF.js +1 -0
  824. package/codeyam-cli/src/webserver/build/client/assets/editor-PBc_6L9R.js +10 -0
  825. package/codeyam-cli/src/webserver/build/client/assets/editorPreview-4FzHlcNn.js +41 -0
  826. package/codeyam-cli/src/webserver/build/client/assets/{entity._sha._-DBgKdrTR.js → entity._sha._-BsDXNp45.js} +13 -13
  827. package/codeyam-cli/src/webserver/build/client/assets/entity._sha.scenarios._scenarioId.dev-BgAqUtTZ.js +6 -0
  828. package/codeyam-cli/src/webserver/build/client/assets/entity._sha.scenarios._scenarioId.fullscreen-Bmshgrij.js +6 -0
  829. package/codeyam-cli/src/webserver/build/client/assets/entity._sha_.create-scenario-p9hhkjJM.js +6 -0
  830. package/codeyam-cli/src/webserver/build/client/assets/{entity._sha_.edit._scenarioId-Sf59Z2Pa.js → entity._sha_.edit._scenarioId-BMvVHNXU.js} +2 -2
  831. package/codeyam-cli/src/webserver/build/client/assets/{entry.client-BvGka1gZ.js → entry.client-DTvKq3TY.js} +6 -6
  832. package/codeyam-cli/src/webserver/build/client/assets/executionFlowCoverage-BWhdfn70.js +1 -0
  833. package/codeyam-cli/src/webserver/build/client/assets/{fileTableUtils-_IuKNgFH.js → fileTableUtils-cPo8LiG3.js} +1 -1
  834. package/codeyam-cli/src/webserver/build/client/assets/files-BZrlFE1F.js +1 -0
  835. package/codeyam-cli/src/webserver/build/client/assets/git-DdZcvjGh.js +1 -0
  836. package/codeyam-cli/src/webserver/build/client/assets/globals-B8vTTNy2.css +1 -0
  837. package/codeyam-cli/src/webserver/build/client/assets/{index-CkpJhcNC.js → index-10oVnAAH.js} +1 -1
  838. package/codeyam-cli/src/webserver/build/client/assets/{index-DFbRIdR_.js → index-BcvgDzbZ.js} +1 -1
  839. package/codeyam-cli/src/webserver/build/client/assets/index-yHOVb4rc.js +15 -0
  840. package/codeyam-cli/src/webserver/build/client/assets/labs-Zk7ryIM1.js +1 -0
  841. package/codeyam-cli/src/webserver/build/client/assets/{loader-circle-DEtRABV3.js → loader-circle-DaAZ_H2w.js} +2 -2
  842. package/codeyam-cli/src/webserver/build/client/assets/manifest-65850841.js +1 -0
  843. package/codeyam-cli/src/webserver/build/client/assets/memory-9gnxSZlb.js +101 -0
  844. package/codeyam-cli/src/webserver/build/client/assets/pause-f5-1lKBt.js +11 -0
  845. package/codeyam-cli/src/webserver/build/client/assets/root-BwX8YgFb.js +67 -0
  846. package/codeyam-cli/src/webserver/build/client/assets/{search-Clp3R4kH.js → search-Di64LWVb.js} +2 -2
  847. package/codeyam-cli/src/webserver/build/client/assets/settings-0OrEMU6J.js +1 -0
  848. package/codeyam-cli/src/webserver/build/client/assets/simulations-DWT-CvLy.js +1 -0
  849. package/codeyam-cli/src/webserver/build/client/assets/terminal-Br7MOqts.js +11 -0
  850. package/codeyam-cli/src/webserver/build/client/assets/{triangle-alert-CUVskfkL.js → triangle-alert-BLdiCuG-.js} +2 -2
  851. package/codeyam-cli/src/webserver/build/client/assets/useCustomSizes-BE43Hjti.js +1 -0
  852. package/codeyam-cli/src/webserver/build/client/assets/useLastLogLine-C14nCb1q.js +2 -0
  853. package/codeyam-cli/src/webserver/build/client/assets/useReportContext-O-jkvSPx.js +1 -0
  854. package/codeyam-cli/src/webserver/build/client/assets/{useToast-BCR_pi3-.js → useToast-9FIWuYfK.js} +1 -1
  855. package/codeyam-cli/src/webserver/build/client/assets/xterm-BqvuqXEL.js +27 -0
  856. package/codeyam-cli/src/webserver/build/server/assets/index-DEEQf4pi.js +1 -0
  857. package/codeyam-cli/src/webserver/build/server/assets/init-CkWmyFY2.js +10 -0
  858. package/codeyam-cli/src/webserver/build/server/assets/server-build-BHi-9O8W.js +439 -0
  859. package/codeyam-cli/src/webserver/build/server/index.js +1 -1
  860. package/codeyam-cli/src/webserver/build-info.json +5 -5
  861. package/codeyam-cli/src/webserver/devServer.js +40 -8
  862. package/codeyam-cli/src/webserver/devServer.js.map +1 -1
  863. package/codeyam-cli/src/webserver/editorProxy.js +877 -0
  864. package/codeyam-cli/src/webserver/editorProxy.js.map +1 -0
  865. package/codeyam-cli/src/webserver/scripts/codeyam-preload.mjs +414 -0
  866. package/codeyam-cli/src/webserver/scripts/journalCapture.ts +230 -0
  867. package/codeyam-cli/src/webserver/server.js +293 -26
  868. package/codeyam-cli/src/webserver/server.js.map +1 -1
  869. package/codeyam-cli/src/webserver/terminalServer.js +726 -0
  870. package/codeyam-cli/src/webserver/terminalServer.js.map +1 -0
  871. package/codeyam-cli/templates/chrome-extension-react/EXTENSION_SETUP.md +75 -0
  872. package/codeyam-cli/templates/chrome-extension-react/README.md +46 -0
  873. package/codeyam-cli/templates/chrome-extension-react/gitignore +15 -0
  874. package/codeyam-cli/templates/chrome-extension-react/index.html +12 -0
  875. package/codeyam-cli/templates/chrome-extension-react/package.json +27 -0
  876. package/codeyam-cli/templates/chrome-extension-react/popup.html +12 -0
  877. package/codeyam-cli/templates/chrome-extension-react/public/manifest.json +15 -0
  878. package/codeyam-cli/templates/chrome-extension-react/src/background/service-worker.ts +7 -0
  879. package/codeyam-cli/templates/chrome-extension-react/src/globals.css +6 -0
  880. package/codeyam-cli/templates/chrome-extension-react/src/lib/storage.ts +37 -0
  881. package/codeyam-cli/templates/chrome-extension-react/src/popup/App.tsx +12 -0
  882. package/codeyam-cli/templates/chrome-extension-react/src/popup/main.tsx +10 -0
  883. package/codeyam-cli/templates/chrome-extension-react/tsconfig.json +24 -0
  884. package/codeyam-cli/templates/chrome-extension-react/vite.config.ts +41 -0
  885. package/codeyam-cli/templates/codeyam-editor-claude.md +147 -0
  886. package/codeyam-cli/templates/codeyam-memory-hook.sh +199 -0
  887. package/codeyam-cli/templates/commands/codeyam-diagnose.md +481 -0
  888. package/codeyam-cli/templates/editor-step-hook.py +236 -0
  889. package/codeyam-cli/templates/expo-react-native/MOBILE_SETUP.md +89 -0
  890. package/codeyam-cli/templates/expo-react-native/README.md +41 -0
  891. package/codeyam-cli/templates/expo-react-native/app/(tabs)/_layout.tsx +33 -0
  892. package/codeyam-cli/templates/expo-react-native/app/(tabs)/index.tsx +12 -0
  893. package/codeyam-cli/templates/expo-react-native/app/(tabs)/settings.tsx +12 -0
  894. package/codeyam-cli/templates/expo-react-native/app/_layout.tsx +12 -0
  895. package/codeyam-cli/templates/expo-react-native/app.json +18 -0
  896. package/codeyam-cli/templates/expo-react-native/babel.config.js +9 -0
  897. package/codeyam-cli/templates/expo-react-native/gitignore +12 -0
  898. package/codeyam-cli/templates/expo-react-native/global.css +3 -0
  899. package/codeyam-cli/templates/expo-react-native/lib/storage.ts +32 -0
  900. package/codeyam-cli/templates/expo-react-native/metro.config.js +6 -0
  901. package/codeyam-cli/templates/expo-react-native/nativewind-env.d.ts +1 -0
  902. package/codeyam-cli/templates/expo-react-native/package.json +38 -0
  903. package/codeyam-cli/templates/expo-react-native/tailwind.config.js +10 -0
  904. package/codeyam-cli/templates/expo-react-native/tsconfig.json +10 -0
  905. package/codeyam-cli/templates/hooks/staleness-check.sh +43 -0
  906. package/codeyam-cli/templates/isolation-route/next-app.tsx.template +80 -0
  907. package/codeyam-cli/templates/isolation-route/next-pages.tsx.template +79 -0
  908. package/codeyam-cli/templates/isolation-route/vite-react.tsx.template +78 -0
  909. package/codeyam-cli/templates/msw/browser-setup.ts.template +47 -0
  910. package/codeyam-cli/templates/msw/handler-router.ts.template +47 -0
  911. package/codeyam-cli/templates/msw/server-setup.ts.template +52 -0
  912. package/codeyam-cli/templates/nextjs-prisma-sqlite/AUTH_PATTERNS.md +308 -0
  913. package/codeyam-cli/templates/nextjs-prisma-sqlite/AUTH_UPGRADE.md +304 -0
  914. package/codeyam-cli/templates/nextjs-prisma-sqlite/DATABASE.md +126 -0
  915. package/codeyam-cli/templates/nextjs-prisma-sqlite/FEATURE_PATTERNS.md +37 -0
  916. package/codeyam-cli/templates/nextjs-prisma-sqlite/README.md +53 -0
  917. package/codeyam-cli/templates/nextjs-prisma-sqlite/app/api/todos/route.ts +17 -0
  918. package/codeyam-cli/templates/nextjs-prisma-sqlite/app/codeyam-isolate/layout.tsx +12 -0
  919. package/codeyam-cli/templates/nextjs-prisma-sqlite/app/globals.css +26 -0
  920. package/codeyam-cli/templates/nextjs-prisma-sqlite/app/layout.tsx +34 -0
  921. package/codeyam-cli/templates/nextjs-prisma-sqlite/app/lib/prisma.ts +24 -0
  922. package/codeyam-cli/templates/nextjs-prisma-sqlite/app/page.tsx +10 -0
  923. package/codeyam-cli/templates/nextjs-prisma-sqlite/env +4 -0
  924. package/codeyam-cli/templates/nextjs-prisma-sqlite/eslint.config.mjs +11 -0
  925. package/codeyam-cli/templates/nextjs-prisma-sqlite/gitignore +64 -0
  926. package/codeyam-cli/templates/nextjs-prisma-sqlite/next.config.ts +14 -0
  927. package/codeyam-cli/templates/nextjs-prisma-sqlite/package.json +39 -0
  928. package/codeyam-cli/templates/nextjs-prisma-sqlite/postcss.config.mjs +7 -0
  929. package/codeyam-cli/templates/nextjs-prisma-sqlite/prisma/schema.prisma +27 -0
  930. package/codeyam-cli/templates/nextjs-prisma-sqlite/prisma/seed.ts +40 -0
  931. package/codeyam-cli/templates/nextjs-prisma-sqlite/prisma.config.ts +12 -0
  932. package/codeyam-cli/templates/nextjs-prisma-sqlite/seed-adapter.ts +92 -0
  933. package/codeyam-cli/templates/nextjs-prisma-sqlite/tsconfig.json +34 -0
  934. package/codeyam-cli/templates/nextjs-prisma-sqlite/vitest.config.ts +13 -0
  935. package/codeyam-cli/templates/nextjs-prisma-supabase/README.md +52 -0
  936. package/codeyam-cli/templates/nextjs-prisma-supabase/SUPABASE_SETUP.md +104 -0
  937. package/codeyam-cli/templates/nextjs-prisma-supabase/app/api/todos/route.ts +17 -0
  938. package/codeyam-cli/templates/nextjs-prisma-supabase/app/globals.css +26 -0
  939. package/codeyam-cli/templates/nextjs-prisma-supabase/app/layout.tsx +34 -0
  940. package/codeyam-cli/templates/nextjs-prisma-supabase/app/lib/prisma.ts +20 -0
  941. package/codeyam-cli/templates/nextjs-prisma-supabase/app/lib/supabase.ts +12 -0
  942. package/codeyam-cli/templates/nextjs-prisma-supabase/app/page.tsx +10 -0
  943. package/codeyam-cli/templates/nextjs-prisma-supabase/env +9 -0
  944. package/codeyam-cli/templates/nextjs-prisma-supabase/eslint.config.mjs +11 -0
  945. package/codeyam-cli/templates/nextjs-prisma-supabase/gitignore +40 -0
  946. package/codeyam-cli/templates/nextjs-prisma-supabase/next.config.ts +11 -0
  947. package/codeyam-cli/templates/nextjs-prisma-supabase/package.json +37 -0
  948. package/codeyam-cli/templates/nextjs-prisma-supabase/postcss.config.mjs +7 -0
  949. package/codeyam-cli/templates/nextjs-prisma-supabase/prisma/schema.prisma +27 -0
  950. package/codeyam-cli/templates/nextjs-prisma-supabase/prisma/seed.ts +39 -0
  951. package/codeyam-cli/templates/nextjs-prisma-supabase/prisma.config.ts +12 -0
  952. package/codeyam-cli/templates/nextjs-prisma-supabase/tsconfig.json +34 -0
  953. package/codeyam-cli/templates/prompts/conversation-guidance.txt +44 -0
  954. package/codeyam-cli/templates/prompts/conversation-prompt.txt +28 -0
  955. package/codeyam-cli/templates/prompts/interruption-prompt.txt +31 -0
  956. package/codeyam-cli/templates/prompts/stale-rules-prompt.txt +24 -0
  957. package/codeyam-cli/templates/rule-notification-hook.py +83 -0
  958. package/codeyam-cli/templates/rule-reflection-hook.py +647 -0
  959. package/codeyam-cli/templates/rules-instructions.md +78 -0
  960. package/codeyam-cli/templates/{codeyam-debug-skill.md → skills/codeyam-debug/SKILL.md} +48 -4
  961. package/codeyam-cli/templates/skills/codeyam-dev-mode/SKILL.md +237 -0
  962. package/codeyam-cli/templates/skills/codeyam-editor/SKILL.md +148 -0
  963. package/codeyam-cli/templates/skills/codeyam-memory/SKILL.md +611 -0
  964. package/codeyam-cli/templates/skills/codeyam-memory/scripts/holistic-analysis/deprecated-prompt.md +100 -0
  965. package/codeyam-cli/templates/skills/codeyam-memory/scripts/holistic-analysis/detect-deprecated-patterns.mjs +139 -0
  966. package/codeyam-cli/templates/skills/codeyam-memory/scripts/holistic-analysis/find-exports.mjs +52 -0
  967. package/codeyam-cli/templates/skills/codeyam-memory/scripts/holistic-analysis/misleading-api-prompt.md +117 -0
  968. package/codeyam-cli/templates/skills/codeyam-memory/scripts/lib/read-json-field.mjs +61 -0
  969. package/codeyam-cli/templates/skills/codeyam-memory/scripts/lib/ripgrep-fallback.mjs +155 -0
  970. package/codeyam-cli/templates/skills/codeyam-memory/scripts/session-mining/analyze-prompt.md +46 -0
  971. package/codeyam-cli/templates/skills/codeyam-memory/scripts/session-mining/cleanup.mjs +13 -0
  972. package/codeyam-cli/templates/skills/codeyam-memory/scripts/session-mining/filter-session.mjs +95 -0
  973. package/codeyam-cli/templates/skills/codeyam-memory/scripts/session-mining/preprocess.mjs +160 -0
  974. package/codeyam-cli/templates/skills/codeyam-new-rule/SKILL.md +11 -0
  975. package/codeyam-cli/templates/{codeyam-setup-skill.md → skills/codeyam-setup/SKILL.md} +151 -4
  976. package/codeyam-cli/templates/{codeyam-sim-skill.md → skills/codeyam-sim/SKILL.md} +1 -1
  977. package/codeyam-cli/templates/{codeyam-test-skill.md → skills/codeyam-test/SKILL.md} +1 -1
  978. package/codeyam-cli/templates/{codeyam-verify-skill.md → skills/codeyam-verify/SKILL.md} +1 -1
  979. package/package.json +34 -24
  980. package/packages/ai/index.js +8 -6
  981. package/packages/ai/index.js.map +1 -1
  982. package/packages/ai/src/lib/analyzeScope.js +179 -13
  983. package/packages/ai/src/lib/analyzeScope.js.map +1 -1
  984. package/packages/ai/src/lib/astScopes/arrayDerivationDetector.js +150 -0
  985. package/packages/ai/src/lib/astScopes/arrayDerivationDetector.js.map +1 -0
  986. package/packages/ai/src/lib/astScopes/astScopeAnalyzer.js +176 -13
  987. package/packages/ai/src/lib/astScopes/astScopeAnalyzer.js.map +1 -1
  988. package/packages/ai/src/lib/astScopes/conditionalEffectsExtractor.js +435 -0
  989. package/packages/ai/src/lib/astScopes/conditionalEffectsExtractor.js.map +1 -0
  990. package/packages/ai/src/lib/astScopes/methodSemantics.js +138 -23
  991. package/packages/ai/src/lib/astScopes/methodSemantics.js.map +1 -1
  992. package/packages/ai/src/lib/astScopes/patterns/forInStatementHandler.js +10 -14
  993. package/packages/ai/src/lib/astScopes/patterns/forInStatementHandler.js.map +1 -1
  994. package/packages/ai/src/lib/astScopes/patterns/ifStatementHandler.js +8 -0
  995. package/packages/ai/src/lib/astScopes/patterns/ifStatementHandler.js.map +1 -1
  996. package/packages/ai/src/lib/astScopes/patterns/switchStatementHandler.js +23 -0
  997. package/packages/ai/src/lib/astScopes/patterns/switchStatementHandler.js.map +1 -1
  998. package/packages/ai/src/lib/astScopes/patterns/variableDeclarationHandler.js +138 -1
  999. package/packages/ai/src/lib/astScopes/patterns/variableDeclarationHandler.js.map +1 -1
  1000. package/packages/ai/src/lib/astScopes/processExpression.js +1137 -96
  1001. package/packages/ai/src/lib/astScopes/processExpression.js.map +1 -1
  1002. package/packages/ai/src/lib/astScopes/sharedPatterns.js +25 -0
  1003. package/packages/ai/src/lib/astScopes/sharedPatterns.js.map +1 -1
  1004. package/packages/ai/src/lib/checkAllAttributes.js +24 -9
  1005. package/packages/ai/src/lib/checkAllAttributes.js.map +1 -1
  1006. package/packages/ai/src/lib/completionCall.js +188 -38
  1007. package/packages/ai/src/lib/completionCall.js.map +1 -1
  1008. package/packages/ai/src/lib/dataStructure/ScopeDataStructure.js +1973 -209
  1009. package/packages/ai/src/lib/dataStructure/ScopeDataStructure.js.map +1 -1
  1010. package/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/JavascriptFrameworkManager.js +7 -2
  1011. package/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/JavascriptFrameworkManager.js.map +1 -1
  1012. package/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/MuiManager.js +230 -23
  1013. package/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/MuiManager.js.map +1 -1
  1014. package/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/ReactFrameworkManager.js +77 -55
  1015. package/packages/ai/src/lib/dataStructure/equivalencyManagers/frameworks/ReactFrameworkManager.js.map +1 -1
  1016. package/packages/ai/src/lib/dataStructure/helpers/BatchSchemaProcessor.js +13 -3
  1017. package/packages/ai/src/lib/dataStructure/helpers/BatchSchemaProcessor.js.map +1 -1
  1018. package/packages/ai/src/lib/dataStructure/helpers/ScopeTreeManager.js +6 -4
  1019. package/packages/ai/src/lib/dataStructure/helpers/ScopeTreeManager.js.map +1 -1
  1020. package/packages/ai/src/lib/dataStructure/helpers/cleanKnownObjectFunctions.js +52 -3
  1021. package/packages/ai/src/lib/dataStructure/helpers/cleanKnownObjectFunctions.js.map +1 -1
  1022. package/packages/ai/src/lib/dataStructure/helpers/cleanNonObjectFunctions.js +139 -13
  1023. package/packages/ai/src/lib/dataStructure/helpers/cleanNonObjectFunctions.js.map +1 -1
  1024. package/packages/ai/src/lib/dataStructure/helpers/coerceObjectsToPrimitivesBySchema.js +63 -0
  1025. package/packages/ai/src/lib/dataStructure/helpers/coerceObjectsToPrimitivesBySchema.js.map +1 -0
  1026. package/packages/ai/src/lib/dataStructure/helpers/coercePrimitivesToArraysBySchema.js +54 -0
  1027. package/packages/ai/src/lib/dataStructure/helpers/coercePrimitivesToArraysBySchema.js.map +1 -0
  1028. package/packages/ai/src/lib/dataStructure/helpers/convertDotNotation.js +142 -12
  1029. package/packages/ai/src/lib/dataStructure/helpers/convertDotNotation.js.map +1 -1
  1030. package/packages/ai/src/lib/dataStructure/helpers/convertNullToUndefinedBySchema.js +86 -0
  1031. package/packages/ai/src/lib/dataStructure/helpers/convertNullToUndefinedBySchema.js.map +1 -0
  1032. package/packages/ai/src/lib/dataStructure/helpers/convertTypeAnnotationsToValues.js +173 -0
  1033. package/packages/ai/src/lib/dataStructure/helpers/convertTypeAnnotationsToValues.js.map +1 -0
  1034. package/packages/ai/src/lib/dataStructure/helpers/deduplicateFunctionSchemas.js +37 -20
  1035. package/packages/ai/src/lib/dataStructure/helpers/deduplicateFunctionSchemas.js.map +1 -1
  1036. package/packages/ai/src/lib/dataStructure/helpers/fillInSchemaGapsAndUnknowns.js +334 -79
  1037. package/packages/ai/src/lib/dataStructure/helpers/fillInSchemaGapsAndUnknowns.js.map +1 -1
  1038. package/packages/ai/src/lib/dataStructure/helpers/fixNullIdsBySchema.js +107 -0
  1039. package/packages/ai/src/lib/dataStructure/helpers/fixNullIdsBySchema.js.map +1 -0
  1040. package/packages/ai/src/lib/dataStructure/helpers/stripNullableMarkers.js +34 -0
  1041. package/packages/ai/src/lib/dataStructure/helpers/stripNullableMarkers.js.map +1 -0
  1042. package/packages/ai/src/lib/dataStructureChunking.js +130 -0
  1043. package/packages/ai/src/lib/dataStructureChunking.js.map +1 -0
  1044. package/packages/ai/src/lib/deepEqual.js +32 -0
  1045. package/packages/ai/src/lib/deepEqual.js.map +1 -0
  1046. package/packages/ai/src/lib/e2eDataTracking.js +241 -0
  1047. package/packages/ai/src/lib/e2eDataTracking.js.map +1 -0
  1048. package/packages/ai/src/lib/extractCriticalDataKeys.js +96 -0
  1049. package/packages/ai/src/lib/extractCriticalDataKeys.js.map +1 -0
  1050. package/packages/ai/src/lib/generateChangesEntityScenarioData.js +62 -5
  1051. package/packages/ai/src/lib/generateChangesEntityScenarioData.js.map +1 -1
  1052. package/packages/ai/src/lib/generateChangesEntityScenarios.js +81 -90
  1053. package/packages/ai/src/lib/generateChangesEntityScenarios.js.map +1 -1
  1054. package/packages/ai/src/lib/generateEntityDataStructure.js +47 -2
  1055. package/packages/ai/src/lib/generateEntityDataStructure.js.map +1 -1
  1056. package/packages/ai/src/lib/generateEntityScenarioData.js +1183 -85
  1057. package/packages/ai/src/lib/generateEntityScenarioData.js.map +1 -1
  1058. package/packages/ai/src/lib/generateEntityScenarios.js +193 -83
  1059. package/packages/ai/src/lib/generateEntityScenarios.js.map +1 -1
  1060. package/packages/ai/src/lib/generateExecutionFlows.js +484 -0
  1061. package/packages/ai/src/lib/generateExecutionFlows.js.map +1 -0
  1062. package/packages/ai/src/lib/generateExecutionFlowsFromConditionalEffects.js +380 -0
  1063. package/packages/ai/src/lib/generateExecutionFlowsFromConditionalEffects.js.map +1 -0
  1064. package/packages/ai/src/lib/generateExecutionFlowsFromConditionals.js +1807 -0
  1065. package/packages/ai/src/lib/generateExecutionFlowsFromConditionals.js.map +1 -0
  1066. package/packages/ai/src/lib/generateExecutionFlowsFromJsxUsages.js +194 -0
  1067. package/packages/ai/src/lib/generateExecutionFlowsFromJsxUsages.js.map +1 -0
  1068. package/packages/ai/src/lib/getConditionalUsagesFromCode.js +84 -14
  1069. package/packages/ai/src/lib/getConditionalUsagesFromCode.js.map +1 -1
  1070. package/packages/ai/src/lib/guessScenarioDataFromDescription.js +2 -1
  1071. package/packages/ai/src/lib/guessScenarioDataFromDescription.js.map +1 -1
  1072. package/packages/ai/src/lib/isolateScopes.js +270 -7
  1073. package/packages/ai/src/lib/isolateScopes.js.map +1 -1
  1074. package/packages/ai/src/lib/mergeJsonTypeDefinitions.js +5 -0
  1075. package/packages/ai/src/lib/mergeJsonTypeDefinitions.js.map +1 -1
  1076. package/packages/ai/src/lib/mergeStatements.js +88 -46
  1077. package/packages/ai/src/lib/mergeStatements.js.map +1 -1
  1078. package/packages/ai/src/lib/promptGenerators/collapseNullableObjects.js +97 -0
  1079. package/packages/ai/src/lib/promptGenerators/collapseNullableObjects.js.map +1 -0
  1080. package/packages/ai/src/lib/promptGenerators/gatherAttributesMap.js +16 -4
  1081. package/packages/ai/src/lib/promptGenerators/gatherAttributesMap.js.map +1 -1
  1082. package/packages/ai/src/lib/promptGenerators/generateChangesEntityScenarioDataGenerator.js +1 -1
  1083. package/packages/ai/src/lib/promptGenerators/generateChangesEntityScenarioDataGenerator.js.map +1 -1
  1084. package/packages/ai/src/lib/promptGenerators/generateChangesEntityScenariosGenerator.js +21 -64
  1085. package/packages/ai/src/lib/promptGenerators/generateChangesEntityScenariosGenerator.js.map +1 -1
  1086. package/packages/ai/src/lib/promptGenerators/generateChunkPrompt.js +54 -0
  1087. package/packages/ai/src/lib/promptGenerators/generateChunkPrompt.js.map +1 -0
  1088. package/packages/ai/src/lib/promptGenerators/generateEntityScenarioDataGenerator.js +83 -6
  1089. package/packages/ai/src/lib/promptGenerators/generateEntityScenarioDataGenerator.js.map +1 -1
  1090. package/packages/ai/src/lib/promptGenerators/generateEntityScenariosGenerator.js +10 -34
  1091. package/packages/ai/src/lib/promptGenerators/generateEntityScenariosGenerator.js.map +1 -1
  1092. package/packages/ai/src/lib/promptGenerators/generateMissingKeysPrompt.js +45 -0
  1093. package/packages/ai/src/lib/promptGenerators/generateMissingKeysPrompt.js.map +1 -0
  1094. package/packages/ai/src/lib/promptGenerators/guessNewScenarioDataFromDescriptionGenerator.js +16 -3
  1095. package/packages/ai/src/lib/promptGenerators/guessNewScenarioDataFromDescriptionGenerator.js.map +1 -1
  1096. package/packages/ai/src/lib/promptGenerators/simplifyKeysForLLM.js +335 -0
  1097. package/packages/ai/src/lib/promptGenerators/simplifyKeysForLLM.js.map +1 -0
  1098. package/packages/ai/src/lib/resolvePathToControllable.js +677 -0
  1099. package/packages/ai/src/lib/resolvePathToControllable.js.map +1 -0
  1100. package/packages/ai/src/lib/splitOutsideParentheses.js +3 -1
  1101. package/packages/ai/src/lib/splitOutsideParentheses.js.map +1 -1
  1102. package/packages/ai/src/lib/worker/SerializableDataStructure.js +29 -0
  1103. package/packages/ai/src/lib/worker/SerializableDataStructure.js.map +1 -1
  1104. package/packages/ai/src/lib/worker/analyzeScopeWorker.js +94 -1
  1105. package/packages/ai/src/lib/worker/analyzeScopeWorker.js.map +1 -1
  1106. package/packages/analyze/index.js +1 -0
  1107. package/packages/analyze/index.js.map +1 -1
  1108. package/packages/analyze/src/lib/FileAnalyzer.js +75 -36
  1109. package/packages/analyze/src/lib/FileAnalyzer.js.map +1 -1
  1110. package/packages/analyze/src/lib/ProjectAnalyzer.js +109 -30
  1111. package/packages/analyze/src/lib/ProjectAnalyzer.js.map +1 -1
  1112. package/packages/analyze/src/lib/analysisContext.js +30 -5
  1113. package/packages/analyze/src/lib/analysisContext.js.map +1 -1
  1114. package/packages/analyze/src/lib/asts/index.js +4 -2
  1115. package/packages/analyze/src/lib/asts/index.js.map +1 -1
  1116. package/packages/analyze/src/lib/asts/nodes/getNodeType.js +1 -0
  1117. package/packages/analyze/src/lib/asts/nodes/getNodeType.js.map +1 -1
  1118. package/packages/analyze/src/lib/asts/nodes/index.js +1 -0
  1119. package/packages/analyze/src/lib/asts/nodes/index.js.map +1 -1
  1120. package/packages/analyze/src/lib/asts/nodes/isAsyncFunction.js +52 -0
  1121. package/packages/analyze/src/lib/asts/nodes/isAsyncFunction.js.map +1 -0
  1122. package/packages/analyze/src/lib/asts/sourceFiles/getAllDeclaredEntityNodes.js +14 -0
  1123. package/packages/analyze/src/lib/asts/sourceFiles/getAllDeclaredEntityNodes.js.map +1 -1
  1124. package/packages/analyze/src/lib/asts/sourceFiles/getAllEntityNodes.js +14 -0
  1125. package/packages/analyze/src/lib/asts/sourceFiles/getAllEntityNodes.js.map +1 -1
  1126. package/packages/analyze/src/lib/asts/sourceFiles/getAllExports.js +6 -0
  1127. package/packages/analyze/src/lib/asts/sourceFiles/getAllExports.js.map +1 -1
  1128. package/packages/analyze/src/lib/asts/sourceFiles/getImportsAnalysis.js +6 -0
  1129. package/packages/analyze/src/lib/asts/sourceFiles/getImportsAnalysis.js.map +1 -1
  1130. package/packages/analyze/src/lib/asts/sourceFiles/getResolvedModule.js +39 -1
  1131. package/packages/analyze/src/lib/asts/sourceFiles/getResolvedModule.js.map +1 -1
  1132. package/packages/analyze/src/lib/asts/sourceFiles/getSourceFilesForAllImports.js +2 -1
  1133. package/packages/analyze/src/lib/asts/sourceFiles/getSourceFilesForAllImports.js.map +1 -1
  1134. package/packages/analyze/src/lib/files/analyze/analyzeEntities/prepareDataStructures.js +268 -52
  1135. package/packages/analyze/src/lib/files/analyze/analyzeEntities/prepareDataStructures.js.map +1 -1
  1136. package/packages/analyze/src/lib/files/analyze/analyzeEntities.js +31 -1
  1137. package/packages/analyze/src/lib/files/analyze/analyzeEntities.js.map +1 -1
  1138. package/packages/analyze/src/lib/files/analyze/findOrCreateEntity.js +11 -0
  1139. package/packages/analyze/src/lib/files/analyze/findOrCreateEntity.js.map +1 -1
  1140. package/packages/analyze/src/lib/files/analyze/gatherEntityMap.js +2 -1
  1141. package/packages/analyze/src/lib/files/analyze/gatherEntityMap.js.map +1 -1
  1142. package/packages/analyze/src/lib/files/analyze/validateDependencyAnalyses.js +31 -10
  1143. package/packages/analyze/src/lib/files/analyze/validateDependencyAnalyses.js.map +1 -1
  1144. package/packages/analyze/src/lib/files/analyzeChange.js +21 -11
  1145. package/packages/analyze/src/lib/files/analyzeChange.js.map +1 -1
  1146. package/packages/analyze/src/lib/files/analyzeEntity.js +9 -8
  1147. package/packages/analyze/src/lib/files/analyzeEntity.js.map +1 -1
  1148. package/packages/analyze/src/lib/files/analyzeInitial.js +9 -10
  1149. package/packages/analyze/src/lib/files/analyzeInitial.js.map +1 -1
  1150. package/packages/analyze/src/lib/files/analyzeRemixRoute.js +3 -2
  1151. package/packages/analyze/src/lib/files/analyzeRemixRoute.js.map +1 -1
  1152. package/packages/analyze/src/lib/files/enums/steps.js +1 -1
  1153. package/packages/analyze/src/lib/files/enums/steps.js.map +1 -1
  1154. package/packages/analyze/src/lib/files/getImportedExports.js +11 -7
  1155. package/packages/analyze/src/lib/files/getImportedExports.js.map +1 -1
  1156. package/packages/analyze/src/lib/files/scenarios/TransformationTracer.js +907 -0
  1157. package/packages/analyze/src/lib/files/scenarios/TransformationTracer.js.map +1 -0
  1158. package/packages/analyze/src/lib/files/scenarios/enrichArrayTypesFromChildSignatures.js +170 -40
  1159. package/packages/analyze/src/lib/files/scenarios/enrichArrayTypesFromChildSignatures.js.map +1 -1
  1160. package/packages/analyze/src/lib/files/scenarios/enrichUnknownTypesFromSourceEquivalencies.js +85 -0
  1161. package/packages/analyze/src/lib/files/scenarios/enrichUnknownTypesFromSourceEquivalencies.js.map +1 -0
  1162. package/packages/analyze/src/lib/files/scenarios/gatherDataForMocks.js +522 -59
  1163. package/packages/analyze/src/lib/files/scenarios/gatherDataForMocks.js.map +1 -1
  1164. package/packages/analyze/src/lib/files/scenarios/generateChangesScenarioData.js +1 -1
  1165. package/packages/analyze/src/lib/files/scenarios/generateChangesScenarioData.js.map +1 -1
  1166. package/packages/analyze/src/lib/files/scenarios/generateChangesScenarios.js +29 -34
  1167. package/packages/analyze/src/lib/files/scenarios/generateChangesScenarios.js.map +1 -1
  1168. package/packages/analyze/src/lib/files/scenarios/generateDataStructure.js +333 -51
  1169. package/packages/analyze/src/lib/files/scenarios/generateDataStructure.js.map +1 -1
  1170. package/packages/analyze/src/lib/files/scenarios/generateExecutionFlows.js +104 -0
  1171. package/packages/analyze/src/lib/files/scenarios/generateExecutionFlows.js.map +1 -0
  1172. package/packages/analyze/src/lib/files/scenarios/generateScenarioData.js +56 -69
  1173. package/packages/analyze/src/lib/files/scenarios/generateScenarioData.js.map +1 -1
  1174. package/packages/analyze/src/lib/files/scenarios/generateScenarios.js +4 -8
  1175. package/packages/analyze/src/lib/files/scenarios/generateScenarios.js.map +1 -1
  1176. package/packages/analyze/src/lib/files/scenarios/mergeInDependentDataStructure.js +817 -120
  1177. package/packages/analyze/src/lib/files/scenarios/mergeInDependentDataStructure.js.map +1 -1
  1178. package/packages/analyze/src/lib/files/scenarios/mergeValidatedDataStructures.js +46 -9
  1179. package/packages/analyze/src/lib/files/scenarios/mergeValidatedDataStructures.js.map +1 -1
  1180. package/packages/analyze/src/lib/files/setImportedExports.js +2 -1
  1181. package/packages/analyze/src/lib/files/setImportedExports.js.map +1 -1
  1182. package/packages/analyze/src/lib/index.js +1 -0
  1183. package/packages/analyze/src/lib/index.js.map +1 -1
  1184. package/packages/analyze/src/lib/utils/getFileByPath.js +12 -0
  1185. package/packages/analyze/src/lib/utils/getFileByPath.js.map +1 -0
  1186. package/packages/aws/src/lib/ecs/ecsDefineContainer.js +2 -2
  1187. package/packages/aws/src/lib/ecs/ecsDefineContainer.js.map +1 -1
  1188. package/packages/aws/src/lib/ecs/ecsTaskFactory.js +17 -61
  1189. package/packages/aws/src/lib/ecs/ecsTaskFactory.js.map +1 -1
  1190. package/packages/database/index.js +1 -0
  1191. package/packages/database/index.js.map +1 -1
  1192. package/packages/database/src/lib/analysisBranchToDb.js +1 -1
  1193. package/packages/database/src/lib/analysisBranchToDb.js.map +1 -1
  1194. package/packages/database/src/lib/analysisToDb.js +1 -1
  1195. package/packages/database/src/lib/analysisToDb.js.map +1 -1
  1196. package/packages/database/src/lib/branchToDb.js +1 -1
  1197. package/packages/database/src/lib/branchToDb.js.map +1 -1
  1198. package/packages/database/src/lib/commitBranchToDb.js +1 -1
  1199. package/packages/database/src/lib/commitBranchToDb.js.map +1 -1
  1200. package/packages/database/src/lib/commitToDb.js +1 -1
  1201. package/packages/database/src/lib/commitToDb.js.map +1 -1
  1202. package/packages/database/src/lib/fileToDb.js +1 -1
  1203. package/packages/database/src/lib/fileToDb.js.map +1 -1
  1204. package/packages/database/src/lib/kysely/db.js +18 -3
  1205. package/packages/database/src/lib/kysely/db.js.map +1 -1
  1206. package/packages/database/src/lib/kysely/tables/commitsTable.js +3 -0
  1207. package/packages/database/src/lib/kysely/tables/commitsTable.js.map +1 -1
  1208. package/packages/database/src/lib/kysely/tables/debugReportsTable.js +9 -3
  1209. package/packages/database/src/lib/kysely/tables/debugReportsTable.js.map +1 -1
  1210. package/packages/database/src/lib/kysely/tables/editorScenariosTable.js +76 -0
  1211. package/packages/database/src/lib/kysely/tables/editorScenariosTable.js.map +1 -0
  1212. package/packages/database/src/lib/kysely/tables/labsRequestsTable.js +35 -0
  1213. package/packages/database/src/lib/kysely/tables/labsRequestsTable.js.map +1 -0
  1214. package/packages/database/src/lib/loadAnalyses.js +45 -2
  1215. package/packages/database/src/lib/loadAnalyses.js.map +1 -1
  1216. package/packages/database/src/lib/loadAnalysis.js +8 -0
  1217. package/packages/database/src/lib/loadAnalysis.js.map +1 -1
  1218. package/packages/database/src/lib/loadBranch.js +11 -1
  1219. package/packages/database/src/lib/loadBranch.js.map +1 -1
  1220. package/packages/database/src/lib/loadCommit.js +7 -0
  1221. package/packages/database/src/lib/loadCommit.js.map +1 -1
  1222. package/packages/database/src/lib/loadCommits.js +45 -14
  1223. package/packages/database/src/lib/loadCommits.js.map +1 -1
  1224. package/packages/database/src/lib/loadEntities.js +23 -10
  1225. package/packages/database/src/lib/loadEntities.js.map +1 -1
  1226. package/packages/database/src/lib/loadEntityBranches.js +9 -0
  1227. package/packages/database/src/lib/loadEntityBranches.js.map +1 -1
  1228. package/packages/database/src/lib/loadReadyToBeCapturedAnalyses.js +5 -5
  1229. package/packages/database/src/lib/loadReadyToBeCapturedAnalyses.js.map +1 -1
  1230. package/packages/database/src/lib/projectToDb.js +1 -1
  1231. package/packages/database/src/lib/projectToDb.js.map +1 -1
  1232. package/packages/database/src/lib/saveFiles.js +1 -1
  1233. package/packages/database/src/lib/saveFiles.js.map +1 -1
  1234. package/packages/database/src/lib/scenarioToDb.js +1 -1
  1235. package/packages/database/src/lib/scenarioToDb.js.map +1 -1
  1236. package/packages/database/src/lib/updateCommitMetadata.js +76 -89
  1237. package/packages/database/src/lib/updateCommitMetadata.js.map +1 -1
  1238. package/packages/database/src/lib/updateFreshAnalysisStatus.js +41 -30
  1239. package/packages/database/src/lib/updateFreshAnalysisStatus.js.map +1 -1
  1240. package/packages/database/src/lib/updateFreshAnalysisStatusWithScenarios.js +68 -57
  1241. package/packages/database/src/lib/updateFreshAnalysisStatusWithScenarios.js.map +1 -1
  1242. package/packages/generate/index.js +3 -0
  1243. package/packages/generate/index.js.map +1 -1
  1244. package/packages/generate/src/lib/componentScenarioPage/componentScenarioPageNext.js +16 -1
  1245. package/packages/generate/src/lib/componentScenarioPage/componentScenarioPageNext.js.map +1 -1
  1246. package/packages/generate/src/lib/componentScenarioPage/generateScenarioClientWrapper.js +217 -0
  1247. package/packages/generate/src/lib/componentScenarioPage/generateScenarioClientWrapper.js.map +1 -0
  1248. package/packages/generate/src/lib/componentScenarioPage/generateScenarioServerComponent.js +53 -0
  1249. package/packages/generate/src/lib/componentScenarioPage/generateScenarioServerComponent.js.map +1 -0
  1250. package/packages/generate/src/lib/componentScenarioPage/getIFrameMessageListenerCode.js +33 -5
  1251. package/packages/generate/src/lib/componentScenarioPage/getIFrameMessageListenerCode.js.map +1 -1
  1252. package/packages/generate/src/lib/deepMerge.js +27 -1
  1253. package/packages/generate/src/lib/deepMerge.js.map +1 -1
  1254. package/packages/generate/src/lib/scenarioComponentForServer.js +89 -0
  1255. package/packages/generate/src/lib/scenarioComponentForServer.js.map +1 -0
  1256. package/packages/github/src/lib/loadOrCreateCommit.js +10 -0
  1257. package/packages/github/src/lib/loadOrCreateCommit.js.map +1 -1
  1258. package/packages/github/src/lib/syncPrimaryBranch.js +3 -0
  1259. package/packages/github/src/lib/syncPrimaryBranch.js.map +1 -1
  1260. package/packages/process/index.js +3 -0
  1261. package/packages/process/index.js.map +1 -0
  1262. package/packages/process/src/GlobalProcessManager.js.map +1 -0
  1263. package/{background/src/lib/process → packages/process/src}/ProcessManager.js +1 -1
  1264. package/packages/process/src/ProcessManager.js.map +1 -0
  1265. package/packages/process/src/index.js.map +1 -0
  1266. package/packages/process/src/managedExecAsync.js.map +1 -0
  1267. package/packages/types/index.js.map +1 -1
  1268. package/packages/types/src/enums/ProjectFramework.js +2 -0
  1269. package/packages/types/src/enums/ProjectFramework.js.map +1 -1
  1270. package/packages/utils/src/lib/fs/rsyncCopy.js +98 -3
  1271. package/packages/utils/src/lib/fs/rsyncCopy.js.map +1 -1
  1272. package/packages/utils/src/lib/safeFileName.js +29 -3
  1273. package/packages/utils/src/lib/safeFileName.js.map +1 -1
  1274. package/scripts/npm-post-install.cjs +34 -0
  1275. package/analyzer-template/packages/ai/src/lib/findMatchingAttribute.ts +0 -102
  1276. package/analyzer-template/packages/ai/src/lib/gatherRelevantDependentKeyAttributes.ts +0 -197
  1277. package/analyzer-template/packages/ai/src/lib/generateChangesEntityKeyAttributes.ts +0 -271
  1278. package/analyzer-template/packages/ai/src/lib/generateEntityKeyAttributes.ts +0 -294
  1279. package/analyzer-template/packages/ai/src/lib/promptGenerators/generateEntityKeyAttributesGenerator.ts +0 -67
  1280. package/analyzer-template/packages/analyze/src/lib/files/scenarios/generateKeyAttributes.ts +0 -115
  1281. package/analyzer-template/process/INTEGRATION_COMPLETE.md +0 -333
  1282. package/analyzer-template/process/INTEGRATION_EXAMPLE.md +0 -525
  1283. package/analyzer-template/process/README.md +0 -507
  1284. package/background/src/lib/process/GlobalProcessManager.js.map +0 -1
  1285. package/background/src/lib/process/ProcessManager.js.map +0 -1
  1286. package/background/src/lib/process/index.js.map +0 -1
  1287. package/background/src/lib/process/managedExecAsync.js.map +0 -1
  1288. package/codeyam-cli/scripts/fixtures/cal.com/universal-mocks/packages/prisma/index.js +0 -238
  1289. package/codeyam-cli/scripts/fixtures/cal.com/universal-mocks/packages/prisma/index.js.map +0 -1
  1290. package/codeyam-cli/scripts/fixtures/formbricks/universal-mocks/apps/web/lib/instance/service.js +0 -7
  1291. package/codeyam-cli/scripts/fixtures/formbricks/universal-mocks/apps/web/lib/instance/service.js.map +0 -1
  1292. package/codeyam-cli/src/commands/detect-universal-mocks.js +0 -118
  1293. package/codeyam-cli/src/commands/detect-universal-mocks.js.map +0 -1
  1294. package/codeyam-cli/src/commands/list.js +0 -31
  1295. package/codeyam-cli/src/commands/list.js.map +0 -1
  1296. package/codeyam-cli/src/commands/webapp-info.js +0 -146
  1297. package/codeyam-cli/src/commands/webapp-info.js.map +0 -1
  1298. package/codeyam-cli/src/utils/universal-mocks.js +0 -152
  1299. package/codeyam-cli/src/utils/universal-mocks.js.map +0 -1
  1300. package/codeyam-cli/src/webserver/build/client/assets/EntityItem-DpUOH11S.js +0 -1
  1301. package/codeyam-cli/src/webserver/build/client/assets/EntityTypeIcon-Cxs_KUEt.js +0 -41
  1302. package/codeyam-cli/src/webserver/build/client/assets/InteractivePreview-D_gPUolj.js +0 -25
  1303. package/codeyam-cli/src/webserver/build/client/assets/ReportIssueModal-MbTu_hOR.js +0 -11
  1304. package/codeyam-cli/src/webserver/build/client/assets/ScenarioViewer-Diqfd5nO.js +0 -15
  1305. package/codeyam-cli/src/webserver/build/client/assets/_index-D0tNX0Y7.js +0 -11
  1306. package/codeyam-cli/src/webserver/build/client/assets/activity.(_tab)-CV8R8fpo.js +0 -32
  1307. package/codeyam-cli/src/webserver/build/client/assets/chunk-JMJ3UQ3L-Tv-88Jsz.js +0 -51
  1308. package/codeyam-cli/src/webserver/build/client/assets/createLucideIcon-en9_3LGg.js +0 -21
  1309. package/codeyam-cli/src/webserver/build/client/assets/dev.empty-Cw7TE00E.js +0 -1
  1310. package/codeyam-cli/src/webserver/build/client/assets/entity._sha_.create-scenario-DUOKD0lj.js +0 -1
  1311. package/codeyam-cli/src/webserver/build/client/assets/files-DMW0hD4L.js +0 -1
  1312. package/codeyam-cli/src/webserver/build/client/assets/git-8zM4ebXo.js +0 -15
  1313. package/codeyam-cli/src/webserver/build/client/assets/globals-D3y4cv7l.css +0 -1
  1314. package/codeyam-cli/src/webserver/build/client/assets/manifest-18ff0544.js +0 -1
  1315. package/codeyam-cli/src/webserver/build/client/assets/root-BuQ6JiJU.js +0 -51
  1316. package/codeyam-cli/src/webserver/build/client/assets/settings-DzIyX7wI.js +0 -1
  1317. package/codeyam-cli/src/webserver/build/client/assets/simulations-BKNqbrwU.js +0 -1
  1318. package/codeyam-cli/src/webserver/build/client/assets/useLastLogLine-CHT-Bzx5.js +0 -2
  1319. package/codeyam-cli/src/webserver/build/client/assets/useReportContext-By4FnEmE.js +0 -1
  1320. package/codeyam-cli/src/webserver/build/server/assets/index-CzKXayO4.js +0 -1
  1321. package/codeyam-cli/src/webserver/build/server/assets/server-build-CHRMAMo8.js +0 -166
  1322. package/codeyam-cli/templates/codeyam-stop-hook.sh +0 -284
  1323. package/codeyam-cli/templates/debug-codeyam.md +0 -576
  1324. package/packages/ai/src/lib/findMatchingAttribute.js +0 -77
  1325. package/packages/ai/src/lib/findMatchingAttribute.js.map +0 -1
  1326. package/packages/ai/src/lib/gatherRelevantDependentKeyAttributes.js +0 -136
  1327. package/packages/ai/src/lib/gatherRelevantDependentKeyAttributes.js.map +0 -1
  1328. package/packages/ai/src/lib/generateChangesEntityKeyAttributes.js +0 -220
  1329. package/packages/ai/src/lib/generateChangesEntityKeyAttributes.js.map +0 -1
  1330. package/packages/ai/src/lib/generateEntityKeyAttributes.js +0 -241
  1331. package/packages/ai/src/lib/generateEntityKeyAttributes.js.map +0 -1
  1332. package/packages/ai/src/lib/isFrontend.js +0 -5
  1333. package/packages/ai/src/lib/isFrontend.js.map +0 -1
  1334. package/packages/ai/src/lib/promptGenerators/generateEntityKeyAttributesGenerator.js +0 -40
  1335. package/packages/ai/src/lib/promptGenerators/generateEntityKeyAttributesGenerator.js.map +0 -1
  1336. package/packages/analyze/src/lib/files/scenarios/generateKeyAttributes.js +0 -72
  1337. package/packages/analyze/src/lib/files/scenarios/generateKeyAttributes.js.map +0 -1
  1338. package/scripts/finalize-analyzer.cjs +0 -81
  1339. /package/analyzer-template/{process → packages/process/src}/GlobalProcessManager.ts +0 -0
  1340. /package/analyzer-template/{process → packages/process/src}/ProcessManager.ts +0 -0
  1341. /package/analyzer-template/{process → packages/process/src}/index.ts +0 -0
  1342. /package/analyzer-template/{process → packages/process/src}/managedExecAsync.ts +0 -0
  1343. /package/{background/src/lib/process → packages/process/src}/GlobalProcessManager.js +0 -0
  1344. /package/{background/src/lib/process → packages/process/src}/index.js +0 -0
  1345. /package/{background/src/lib/process → packages/process/src}/managedExecAsync.js +0 -0
@@ -82,21 +82,36 @@
82
82
  import { ScopeAnalysis } from '~codeyam/types';
83
83
  import { EquivalencyManager } from './equivalencyManagers/EquivalencyManager';
84
84
  import fillInSchemaGapsAndUnknowns from './helpers/fillInSchemaGapsAndUnknowns';
85
+ import { clearCleanKnownObjectFunctionsCache } from './helpers/cleanKnownObjectFunctions';
86
+ import { clearCleanNonObjectFunctionsCache } from './helpers/cleanNonObjectFunctions';
87
+
88
+ /**
89
+ * Patterns that indicate recursive type structures in schema paths.
90
+ * Used by hasExcessivePatternRepetition() to detect exponential path blowup.
91
+ */
92
+ const RECURSIVE_PATH_PATTERNS = [
93
+ /\.attributes\.properties\[\]/g, // TypeScript AST JSX nodes
94
+ /\.children\[\]/g, // Tree structures
95
+ /\.elements\[\]/g, // Array-like structures
96
+ /\.members\[\]/g, // Class/interface members
97
+ /\.properties\[\]/g, // Object properties
98
+ /\.items\[\]/g, // Generic items arrays
99
+ ];
85
100
  import ensureSchemaConsistency from './helpers/ensureSchemaConsistency';
86
101
  import cleanPath from './helpers/cleanPath';
87
102
  import { PathManager } from './helpers/PathManager';
88
103
  import {
89
104
  uniqueId,
90
- uniqueScopeVariables,
91
105
  uniqueScopeAndPaths,
106
+ uniqueScopeVariables,
92
107
  } from './helpers/uniqueIdUtils';
93
108
  import selectBestValue from './helpers/selectBestValue';
94
109
  import { VisitedTracker } from './helpers/VisitedTracker';
95
110
  import { DebugTracer } from './helpers/DebugTracer';
96
111
  import { BatchSchemaProcessor } from './helpers/BatchSchemaProcessor';
97
112
  import {
98
- ScopeTreeManager,
99
113
  ROOT_SCOPE_NAME,
114
+ ScopeTreeManager,
100
115
  ScopeTreeNode,
101
116
  } from './helpers/ScopeTreeManager';
102
117
  import cleanScopeNodeName from './helpers/cleanScopeNodeName';
@@ -108,6 +123,7 @@ import type {
108
123
  SerializableFunctionCallInfo,
109
124
  SerializableFunctionResult,
110
125
  SerializableScopeVariable,
126
+ EnrichedConditionalUsage,
111
127
  } from '../worker/SerializableDataStructure';
112
128
 
113
129
  /**
@@ -125,6 +141,21 @@ export interface ScopeInfo {
125
141
  isStatic?: boolean;
126
142
  isClassScope?: boolean;
127
143
  analysis?: any;
144
+ /** For JSX child scopes, the original JSX tag name (e.g., 'ChildViewer') */
145
+ jsxTagName?: string;
146
+ /**
147
+ * Gating conditions detected during JSX extraction (before JSX is simplified).
148
+ * Maps child component name to conditions that must be true for it to render.
149
+ * This is populated by processJSXForScope in isolateScopes.ts.
150
+ */
151
+ extractedGatingConditions?: {
152
+ [childComponentName: string]: Array<{
153
+ path: string;
154
+ conditionType: 'truthiness' | 'comparison';
155
+ location: 'if' | 'ternary' | 'logical-and' | 'switch' | 'unconditional';
156
+ isNegated?: boolean;
157
+ }>;
158
+ };
128
159
  }
129
160
 
130
161
  /**
@@ -221,6 +252,22 @@ export interface FunctionCallInfo {
221
252
  * For example: { "db.select(query1)": "result1", "db.select(query2)": "result2" }
222
253
  */
223
254
  callSignatureToVariable?: Record<string, string>;
255
+ /**
256
+ * Stores individual schemas per call signature BEFORE merging.
257
+ * When multiple calls to the same function are merged into one FunctionCallInfo,
258
+ * this preserves each call's distinct schema.
259
+ * Key is the call signature (e.g., "useFetcher()").
260
+ * Used internally; converted to perVariableSchemas in toSerializable().
261
+ */
262
+ perCallSignatureSchemas?: Record<string, Record<string, string>>;
263
+ /**
264
+ * Stores individual return value schemas per receiving variable, BEFORE merging.
265
+ * When multiple calls to the same function have different return types
266
+ * (e.g., useFetcher<UserData>() vs useFetcher<ReportData>()), this preserves
267
+ * each call's distinct schema for mock data generation.
268
+ * Key is the receiving variable name (e.g., "userFetcher", "reportFetcher").
269
+ */
270
+ perVariableSchemas?: Record<string, Record<string, string>>;
224
271
  }
225
272
 
226
273
  /**
@@ -287,6 +334,19 @@ export function resetScopeDataStructureMetrics() {
287
334
  followEquivalenciesEarlyExitPhase1Count = 0;
288
335
  followEquivalenciesWithWorkCount = 0;
289
336
  addEquivalencyCallCount = 0;
337
+
338
+ // Clear module-level caches to prevent unbounded memory growth across entities
339
+ const knownObjectCache = clearCleanKnownObjectFunctionsCache();
340
+ const nonObjectCache = clearCleanNonObjectFunctionsCache();
341
+ if (knownObjectCache.count > 0 || nonObjectCache.count > 0) {
342
+ const totalBytes =
343
+ knownObjectCache.estimatedBytes + nonObjectCache.estimatedBytes;
344
+ console.log('CodeYam: Cleared analysis caches', {
345
+ knownObjectCache: `${knownObjectCache.count} entries, ${(knownObjectCache.estimatedBytes / 1024).toFixed(1)}KB`,
346
+ nonObjectCache: `${nonObjectCache.count} entries, ${(nonObjectCache.estimatedBytes / 1024).toFixed(1)}KB`,
347
+ totalKB: `${(totalBytes / 1024).toFixed(1)}KB`,
348
+ });
349
+ }
290
350
  }
291
351
 
292
352
  // Performance: Pre-computed Sets for equivalency reason filtering (O(1) vs O(n))
@@ -337,6 +397,7 @@ const SILENTLY_IGNORED_EQUIVALENCY_REASONS = new Set([
337
397
  'transformed non-object function equivalency - implicit parent equivalency - rerouted via useCallback',
338
398
  'transformed non-object function equivalency - Array.from() equivalency',
339
399
  'Spread operator equivalency key update: Explicit array deconstruction equivalency value',
400
+ // 'transformed non-object function equivalency - Explicit array deconstruction equivalency value',
340
401
  ]);
341
402
 
342
403
  export class ScopeDataStructure {
@@ -364,10 +425,40 @@ export class ScopeDataStructure {
364
425
  path: string;
365
426
  conditionType: 'truthiness' | 'comparison' | 'switch';
366
427
  comparedValues?: string[];
367
- location: 'if' | 'ternary' | 'logical-and' | 'switch';
428
+ location: 'if' | 'ternary' | 'logical-and' | 'switch' | 'unconditional';
368
429
  }>
369
430
  > = {};
370
431
 
432
+ /**
433
+ * Conditional effects collected during AST analysis.
434
+ * Tracks what setter calls happen inside conditionals (if, switch, ternary).
435
+ */
436
+ private rawConditionalEffects: import('../astScopes/types').ConditionalEffect[] =
437
+ [];
438
+
439
+ /**
440
+ * Compound conditionals collected during AST analysis.
441
+ * Groups conditions that must all be true together (e.g., a && b && c).
442
+ */
443
+ private rawCompoundConditionals: import('../astScopes/types').CompoundConditional[] =
444
+ [];
445
+
446
+ /**
447
+ * Gating conditions for child component boundaries.
448
+ * Maps child component name to the conditions that must be true for it to render.
449
+ */
450
+ private rawChildBoundaryGatingConditions: Record<
451
+ string,
452
+ import('../astScopes/types').ConditionalUsage[]
453
+ > = {};
454
+
455
+ /**
456
+ * JSX rendering usages collected during AST analysis.
457
+ * Tracks arrays rendered via .map() and strings interpolated in JSX.
458
+ */
459
+ private rawJsxRenderingUsages: import('../astScopes/types').JsxRenderingUsage[] =
460
+ [];
461
+
371
462
  private lastAddToSchemaId = 0;
372
463
  private lastEquivalencyId = 0;
373
464
  private lastEquivalencyDatabaseId = 0;
@@ -709,6 +800,11 @@ export class ScopeDataStructure {
709
800
  return;
710
801
  }
711
802
 
803
+ // PERF: Early exit for paths with repeated function-call signature patterns
804
+ if (this.hasExcessivePatternRepetition(path)) {
805
+ return;
806
+ }
807
+
712
808
  // Update chain metadata for database tracking
713
809
  if (equivalencyValueChain.length > 0) {
714
810
  equivalencyValueChain[equivalencyValueChain.length - 1].addToSchemaId =
@@ -952,8 +1048,8 @@ export class ScopeDataStructure {
952
1048
  equivalencyValueChain?: EquivalencyValueChainItem[],
953
1049
  traceId?: number,
954
1050
  ) {
955
- // DEBUG: Detect infinite loops
956
1051
  addEquivalencyCallCount++;
1052
+
957
1053
  if (addEquivalencyCallCount > 50000) {
958
1054
  console.error('INFINITE LOOP DETECTED in addEquivalency', {
959
1055
  callCount: addEquivalencyCallCount,
@@ -1012,6 +1108,33 @@ export class ScopeDataStructure {
1012
1108
  return;
1013
1109
  }
1014
1110
 
1111
+ // Case 3: Circular reference through scope-suffixed names (____cyScope pattern)
1112
+ // When a named arrow function is defined inside a scope (e.g., useEffect callback):
1113
+ // const identifyUser = async () => { ... };
1114
+ // identifyUser();
1115
+ // This creates a variable "identifyUser" and a scope "identifyUser____cyScope9F".
1116
+ // Mutual equivalencies between these cause infinite loops in Phase 2 because
1117
+ // processing one triggers addToSchema → followEquivalencies → addEquivalency
1118
+ // on the reverse, which repeats indefinitely.
1119
+ // Only block when the REVERSE direction already exists (creating a cycle).
1120
+ // The initial one-directional equivalency is necessary for scope resolution.
1121
+ if (
1122
+ path &&
1123
+ equivalentPath &&
1124
+ (equivalentPath.startsWith(path + '____') ||
1125
+ path.startsWith(equivalentPath + '____'))
1126
+ ) {
1127
+ // Check if the reverse equivalency already exists
1128
+ const reverseEquivalencies =
1129
+ scopeNode.equivalencies[equivalentPath] || [];
1130
+ const reverseExists = reverseEquivalencies.some(
1131
+ (v) => v.schemaPath === path,
1132
+ );
1133
+ if (reverseExists) {
1134
+ return;
1135
+ }
1136
+ }
1137
+
1015
1138
  if (!equivalentScopeName) {
1016
1139
  console.error(
1017
1140
  'CodeYam Error: Missing equivalent scope name - FULL CONTEXT:',
@@ -1199,6 +1322,22 @@ export class ScopeDataStructure {
1199
1322
  const existingFunctionCall =
1200
1323
  this.getExternalFunctionCallsIndex().get(searchKey);
1201
1324
  if (existingFunctionCall) {
1325
+ // Preserve per-call schemas BEFORE merging to enable per-variable mock data.
1326
+ // This is critical for hooks like useFetcher<UserData>() vs useFetcher<ReportData>()
1327
+ // where each call returns different typed data.
1328
+ if (!existingFunctionCall.perCallSignatureSchemas) {
1329
+ // First merge - save the existing call's schema
1330
+ existingFunctionCall.perCallSignatureSchemas = {
1331
+ [existingFunctionCall.callSignature]: {
1332
+ ...existingFunctionCall.schema,
1333
+ },
1334
+ };
1335
+ }
1336
+ // Save the new call's schema before it gets merged
1337
+ existingFunctionCall.perCallSignatureSchemas[
1338
+ functionCallInfo.callSignature
1339
+ ] = { ...functionCallInfo.schema };
1340
+
1202
1341
  // Merge schemas using selectBestValue to preserve specific types like 'null'
1203
1342
  // over generic types like 'unknown'. This ensures ref variables detected
1204
1343
  // earlier (marked as 'null') aren't overwritten by later 'unknown' values.
@@ -1363,11 +1502,32 @@ export class ScopeDataStructure {
1363
1502
  const equivalentSchemaPath = equivalentSchemaPathMap.get(remainingKey);
1364
1503
 
1365
1504
  if (equivalentSchemaPath) {
1505
+ // Skip propagation when there's a structural mismatch:
1506
+ // - schemaPath ends with [] (array element, represents an object)
1507
+ // - equivalentSchemaPath doesn't end with [] (non-array prop, usually a scalar)
1508
+ // This prevents incorrectly typing array elements as strings when they're
1509
+ // equivalent to scalar props like JSX keys (e.g., workouts[] ↔ Card().key)
1510
+ const schemaPathEndsWithArray = schemaPath.endsWith('[]');
1511
+ const equivalentEndsWithArray = equivalentSchemaPath.endsWith('[]');
1512
+ if (schemaPathEndsWithArray !== equivalentEndsWithArray) {
1513
+ // Don't propagate between array element paths and non-array paths
1514
+ continue;
1515
+ }
1516
+
1366
1517
  const value1 = scopeNode.schema[schemaPath];
1367
1518
  const value2 = equivalentScopeNode.schema[equivalentSchemaPath];
1368
1519
 
1369
1520
  const bestValue = selectBestValue(value1, value2);
1370
1521
 
1522
+ // PERF: Skip paths with repeated function-call signature patterns
1523
+ // to prevent recursive type expansion (e.g., string.localeCompare returns string)
1524
+ if (
1525
+ this.hasExcessivePatternRepetition(schemaPath) ||
1526
+ this.hasExcessivePatternRepetition(equivalentSchemaPath)
1527
+ ) {
1528
+ continue;
1529
+ }
1530
+
1371
1531
  scopeNode.schema[schemaPath] = bestValue;
1372
1532
  equivalentScopeNode.schema[equivalentSchemaPath] = bestValue;
1373
1533
  } else if (
@@ -1381,6 +1541,11 @@ export class ScopeDataStructure {
1381
1541
  ...remainingSchemaPathParts,
1382
1542
  ]);
1383
1543
 
1544
+ // PERF: Skip paths with repeated function-call signature patterns
1545
+ if (this.hasExcessivePatternRepetition(newEquivalentPath)) {
1546
+ continue;
1547
+ }
1548
+
1384
1549
  equivalentScopeNode.schema[newEquivalentPath] =
1385
1550
  scopeNode.schema[schemaPath];
1386
1551
  }
@@ -1471,6 +1636,77 @@ export class ScopeDataStructure {
1471
1636
  return this.pathManager.isValidPath(path);
1472
1637
  }
1473
1638
 
1639
+ /**
1640
+ * Detects if a path contains excessive repetition of the same pattern.
1641
+ *
1642
+ * This prevents exponential blowup when analyzing recursive type structures.
1643
+ * For example, TypeScript AST nodes have `.attributes.properties[]` where each
1644
+ * property is also a node with `.attributes.properties[]`. Without this check,
1645
+ * paths like `signature[0].attributes.properties[].attributes.properties[].attributes.properties[]...`
1646
+ * would be generated exponentially.
1647
+ *
1648
+ * Two detection strategies:
1649
+ * 1. Known patterns: Check RECURSIVE_PATH_PATTERNS for common recursive structures
1650
+ * 2. Generic detection: For longer paths, detect any 2-3 part segment that repeats
1651
+ *
1652
+ * @param path - The schema path to check
1653
+ * @param maxRepetitions - Maximum allowed repetitions of any pattern (default: 2)
1654
+ * @returns true if the path has excessive repetition
1655
+ */
1656
+ private hasExcessivePatternRepetition(
1657
+ path: string,
1658
+ maxRepetitions = 2,
1659
+ ): boolean {
1660
+ // Check known recursive patterns
1661
+ for (const pattern of RECURSIVE_PATH_PATTERNS) {
1662
+ const matches = path.match(pattern);
1663
+ if (matches && matches.length > maxRepetitions) {
1664
+ return true;
1665
+ }
1666
+ }
1667
+
1668
+ // Check for repeated function calls that indicate recursive type expansion.
1669
+ // E.g., localeCompare(b[])...localeCompare(b[]) means string.localeCompare
1670
+ // returns a type that again has localeCompare, causing infinite expansion.
1671
+ // We extract all function call patterns like "funcName(args)" and check if
1672
+ // the same normalized call appears more than once.
1673
+ const funcCallPattern = /(?:^|\.)[^.([]+\([^)]*\)/g;
1674
+ const funcCallMatches = path.match(funcCallPattern);
1675
+ if (funcCallMatches && funcCallMatches.length > 1) {
1676
+ const seen = new Set<string>();
1677
+ for (const match of funcCallMatches) {
1678
+ // Strip leading dot and normalize array indices
1679
+ const normalized = match.replace(/^\./, '').replace(/\[\d+\]/g, '[]');
1680
+ if (seen.has(normalized)) return true;
1681
+ seen.add(normalized);
1682
+ }
1683
+ }
1684
+
1685
+ // For longer paths, detect any repeated multi-part segments we haven't explicitly listed
1686
+ const pathParts = this.splitPath(path);
1687
+ if (pathParts.length <= 6) {
1688
+ return false;
1689
+ }
1690
+
1691
+ // Check for repeated sequences of 2-3 consecutive parts
1692
+ for (let segmentLength = 2; segmentLength <= 3; segmentLength++) {
1693
+ const seen = new Map<string, number>();
1694
+
1695
+ for (let i = 0; i <= pathParts.length - segmentLength; i++) {
1696
+ const segment = pathParts.slice(i, i + segmentLength).join('.');
1697
+ const normalizedSegment = segment.replace(/\[\d+\]/g, '[]');
1698
+ const count = (seen.get(normalizedSegment) || 0) + 1;
1699
+ seen.set(normalizedSegment, count);
1700
+
1701
+ if (count > maxRepetitions) {
1702
+ return true;
1703
+ }
1704
+ }
1705
+ }
1706
+
1707
+ return false;
1708
+ }
1709
+
1474
1710
  private addToTree(pathParts: string[]) {
1475
1711
  this.scopeTreeManager.addPath(pathParts);
1476
1712
  }
@@ -1478,17 +1714,26 @@ export class ScopeDataStructure {
1478
1714
  private setInstantiatedVariables(scopeNode: ScopeNode) {
1479
1715
  let instantiatedVariables = scopeNode.analysis?.instantiatedVariables ?? [];
1480
1716
 
1481
- for (const [path, equivalentPath] of Object.entries(
1717
+ for (const [path, rawEquivalentPath] of Object.entries(
1482
1718
  scopeNode.analysis.isolatedEquivalentVariables ?? {},
1483
1719
  )) {
1484
- if (typeof equivalentPath !== 'string') {
1485
- continue;
1486
- }
1720
+ // Normalize to array for consistent handling (supports both string and string[])
1721
+ const equivalentPaths = Array.isArray(rawEquivalentPath)
1722
+ ? rawEquivalentPath
1723
+ : rawEquivalentPath
1724
+ ? [rawEquivalentPath]
1725
+ : [];
1726
+
1727
+ for (const equivalentPath of equivalentPaths) {
1728
+ if (typeof equivalentPath !== 'string') {
1729
+ continue;
1730
+ }
1487
1731
 
1488
- if (equivalentPath.startsWith('signature[')) {
1489
- const equivalentPathParts = this.splitPath(equivalentPath);
1490
- instantiatedVariables.push(equivalentPathParts[0]);
1491
- instantiatedVariables.push(path);
1732
+ if (equivalentPath.startsWith('signature[')) {
1733
+ const equivalentPathParts = this.splitPath(equivalentPath);
1734
+ instantiatedVariables.push(equivalentPathParts[0]);
1735
+ instantiatedVariables.push(path);
1736
+ }
1492
1737
  }
1493
1738
 
1494
1739
  const duplicateInstantiated = instantiatedVariables.find(
@@ -1501,9 +1746,14 @@ export class ScopeDataStructure {
1501
1746
  }
1502
1747
  }
1503
1748
 
1504
- instantiatedVariables = instantiatedVariables.filter(
1505
- (varName, index, self) => self.indexOf(varName) === index,
1506
- );
1749
+ const instantiatedSeen = new Set<string>();
1750
+ instantiatedVariables = instantiatedVariables.filter((varName) => {
1751
+ if (instantiatedSeen.has(varName)) {
1752
+ return false;
1753
+ }
1754
+ instantiatedSeen.add(varName);
1755
+ return true;
1756
+ });
1507
1757
 
1508
1758
  scopeNode.instantiatedVariables = instantiatedVariables;
1509
1759
 
@@ -1524,13 +1774,19 @@ export class ScopeDataStructure {
1524
1774
  ...parentScopeNode.instantiatedVariables.filter(
1525
1775
  (v) => !v.startsWith('signature[') && !v.startsWith('returnValue'),
1526
1776
  ),
1527
- ].filter(
1528
- (varName, index, self) =>
1529
- !instantiatedVariables.includes(varName) &&
1530
- self.indexOf(varName) === index,
1531
- );
1777
+ ].filter((varName) => !instantiatedSeen.has(varName));
1778
+
1779
+ const parentInstantiatedSeen = new Set<string>();
1780
+ const dedupedParentInstantiatedVariables =
1781
+ parentInstantiatedVariables.filter((varName) => {
1782
+ if (parentInstantiatedSeen.has(varName)) {
1783
+ return false;
1784
+ }
1785
+ parentInstantiatedSeen.add(varName);
1786
+ return true;
1787
+ });
1532
1788
 
1533
- scopeNode.parentInstantiatedVariables = parentInstantiatedVariables;
1789
+ scopeNode.parentInstantiatedVariables = dedupedParentInstantiatedVariables;
1534
1790
  }
1535
1791
 
1536
1792
  private trackFunctionCalls(scopeNode: ScopeNode) {
@@ -1539,197 +1795,205 @@ export class ScopeDataStructure {
1539
1795
  }
1540
1796
 
1541
1797
  private determineEquivalenciesAndBuildSchema(scopeNode: ScopeNode) {
1798
+ if (!scopeNode.analysis) {
1799
+ return;
1800
+ }
1801
+
1542
1802
  const { isolatedStructure, isolatedEquivalentVariables } =
1543
1803
  scopeNode.analysis;
1544
1804
 
1545
- // DEBUG: Log all equivalencies related to useFetcher
1546
- if (
1547
- Object.keys(isolatedEquivalentVariables || {}).some(
1548
- (k) => k.includes('Fetcher') || k.includes('fetcher'),
1549
- )
1550
- ) {
1551
- console.log(
1552
- 'CodeYam DEBUG determineEquivalenciesAndBuildSchema:',
1553
- JSON.stringify(
1554
- {
1555
- scopeNodeName: scopeNode.name,
1556
- fetcherEquivalencies: Object.entries(
1557
- isolatedEquivalentVariables || {},
1558
- )
1559
- .filter(
1560
- ([k, v]) =>
1561
- k.includes('Fetcher') ||
1562
- k.includes('fetcher') ||
1563
- String(v).includes('Fetcher') ||
1564
- String(v).includes('fetcher'),
1565
- )
1566
- .reduce(
1567
- (acc, [k, v]) => {
1568
- acc[k] = v;
1569
- return acc;
1570
- },
1571
- {} as Record<string, string>,
1572
- ),
1573
- },
1574
- null,
1575
- 2,
1576
- ),
1577
- );
1578
- }
1805
+ // Flatten isolatedEquivalentVariables values for allPaths (handles both string and string[])
1806
+ const flattenedEquivValues = Object.values(
1807
+ isolatedEquivalentVariables || {},
1808
+ ).flatMap((v) => (Array.isArray(v) ? v : [v]));
1579
1809
 
1580
1810
  const allPaths = Array.from(
1581
1811
  new Set([
1582
1812
  ...Object.keys(isolatedStructure || {}),
1583
1813
  ...Object.keys(isolatedEquivalentVariables || {}),
1584
- ...Object.values(isolatedEquivalentVariables || {}),
1814
+ ...flattenedEquivValues,
1585
1815
  ]),
1586
1816
  );
1587
1817
 
1588
1818
  for (let path in isolatedEquivalentVariables) {
1589
- let equivalentValue = isolatedEquivalentVariables?.[path];
1590
-
1591
- if (equivalentValue && this.isValidPath(equivalentValue)) {
1592
- path = cleanPath(path.replace(/::cyDuplicateKey\d+::/g, ''), allPaths);
1593
- equivalentValue = cleanPath(
1594
- equivalentValue.replace(/::cyDuplicateKey\d+::/g, ''),
1595
- allPaths,
1596
- );
1597
-
1598
- this.addEquivalency(
1599
- path,
1600
- equivalentValue,
1601
- scopeNode.name,
1602
- scopeNode,
1603
- 'original equivalency',
1604
- );
1819
+ const rawEquivalentValue = isolatedEquivalentVariables?.[path];
1820
+ // Normalize to array for consistent handling
1821
+ const equivalentValues = Array.isArray(rawEquivalentValue)
1822
+ ? rawEquivalentValue
1823
+ : [rawEquivalentValue];
1824
+
1825
+ for (let equivalentValue of equivalentValues) {
1826
+ if (equivalentValue && this.isValidPath(equivalentValue)) {
1827
+ // IMPORTANT: DO NOT strip ::cyDuplicateKey:: markers from equivalencies.
1828
+ // These markers are critical for distinguishing variable reassignments.
1829
+ // For example, with:
1830
+ // let fetcher = useFetcher<ConfigData>();
1831
+ // const configData = fetcher.data?.data;
1832
+ // fetcher = useFetcher<SettingsData>();
1833
+ // const settingsData = fetcher.data?.data;
1834
+ //
1835
+ // mergeStatements creates:
1836
+ // fetcher → useFetcher<ConfigData>()...
1837
+ // fetcher::cyDuplicateKey1:: → useFetcher<SettingsData>()...
1838
+ // configData → fetcher.data.data
1839
+ // settingsData → fetcher::cyDuplicateKey1::.data.data
1840
+ //
1841
+ // If we strip ::cyDuplicateKey::, settingsData would incorrectly trace
1842
+ // to useFetcher<ConfigData>() instead of useFetcher<SettingsData>().
1843
+ path = cleanPath(path, allPaths);
1844
+ equivalentValue = cleanPath(equivalentValue, allPaths);
1845
+
1846
+ this.addEquivalency(
1847
+ path,
1848
+ equivalentValue,
1849
+ scopeNode.name,
1850
+ scopeNode,
1851
+ 'original equivalency',
1852
+ );
1605
1853
 
1606
- // Propagate equivalencies involving parent-scope variables to those parent scopes.
1607
- // This handles patterns like: collected.push({...entity}) where 'collected' is defined
1608
- // in a parent scope. The equivalency collected[] -> push().signature[0] needs to be
1609
- // visible when tracing from the parent scope.
1610
- const rootVariable = this.extractRootVariable(path);
1611
- const equivalentRootVariable =
1612
- this.extractRootVariable(equivalentValue);
1613
-
1614
- // Skip propagation for self-referential reassignment patterns like:
1615
- // x = x.method().functionCallReturnValue
1616
- // where the path IS the variable itself (not a sub-path like x[] or x.prop).
1617
- // These create circular references since both sides reference the same variable.
1618
- //
1619
- // But DO propagate for patterns like collected[] -> collected.push(...).signature[0]
1620
- // where the path has additional segments beyond the root variable.
1621
- const pathIsJustRootVariable = path === rootVariable;
1622
- const isSelfReferentialReassignment =
1623
- pathIsJustRootVariable && rootVariable === equivalentRootVariable;
1854
+ // Propagate equivalencies involving parent-scope variables to those parent scopes.
1855
+ // This handles patterns like: collected.push({...entity}) where 'collected' is defined
1856
+ // in a parent scope. The equivalency collected[] -> push().signature[0] needs to be
1857
+ // visible when tracing from the parent scope.
1858
+ const rootVariable = this.extractRootVariable(path);
1859
+ const equivalentRootVariable =
1860
+ this.extractRootVariable(equivalentValue);
1861
+
1862
+ // Skip propagation for self-referential reassignment patterns like:
1863
+ // x = x.method().functionCallReturnValue
1864
+ // where the path IS the variable itself (not a sub-path like x[] or x.prop).
1865
+ // These create circular references since both sides reference the same variable.
1866
+ //
1867
+ // But DO propagate for patterns like collected[] -> collected.push(...).signature[0]
1868
+ // where the path has additional segments beyond the root variable.
1869
+ const pathIsJustRootVariable = path === rootVariable;
1870
+ const isSelfReferentialReassignment =
1871
+ pathIsJustRootVariable && rootVariable === equivalentRootVariable;
1624
1872
 
1625
- if (
1626
- rootVariable &&
1627
- !isSelfReferentialReassignment &&
1628
- scopeNode.parentInstantiatedVariables?.includes(rootVariable)
1629
- ) {
1630
- // Find the parent scope where this variable is defined
1631
- for (const parentScopeName of scopeNode.tree || []) {
1632
- const parentScope = this.scopeNodes[parentScopeName];
1633
- if (parentScope?.instantiatedVariables?.includes(rootVariable)) {
1634
- // Add the equivalency to the parent scope as well
1635
- this.addEquivalency(
1636
- path,
1637
- equivalentValue,
1638
- scopeNode.name, // The equivalent path's scope remains the child scope
1639
- parentScope, // But store it in the parent scope's equivalencies
1640
- 'propagated parent-variable equivalency',
1641
- );
1642
- break;
1873
+ if (
1874
+ rootVariable &&
1875
+ !isSelfReferentialReassignment &&
1876
+ scopeNode.parentInstantiatedVariables?.includes(rootVariable)
1877
+ ) {
1878
+ // Find the parent scope where this variable is defined
1879
+ for (const parentScopeName of scopeNode.tree || []) {
1880
+ const parentScope = this.scopeNodes[parentScopeName];
1881
+ if (parentScope?.instantiatedVariables?.includes(rootVariable)) {
1882
+ // Add the equivalency to the parent scope as well
1883
+ this.addEquivalency(
1884
+ path,
1885
+ equivalentValue,
1886
+ scopeNode.name, // The equivalent path's scope remains the child scope
1887
+ parentScope, // But store it in the parent scope's equivalencies
1888
+ 'propagated parent-variable equivalency',
1889
+ );
1890
+ break;
1891
+ }
1643
1892
  }
1644
1893
  }
1645
- }
1646
1894
 
1647
- // Propagate sub-property equivalencies when the equivalentValue is a simple variable
1648
- // that has sub-properties defined in the isolatedEquivalentVariables.
1649
- // This handles cases like: dataItem={{ structure: completeDataStructure }}
1650
- // where completeDataStructure has sub-properties like completeDataStructure['Function Arguments']
1651
- // We need to propagate these to create: dataItem.structure['Function Arguments'] equivalencies
1652
- const isSimpleVariable =
1653
- !equivalentValue.startsWith('signature[') &&
1654
- !equivalentValue.includes('functionCallReturnValue') &&
1655
- !equivalentValue.includes('.') &&
1656
- !equivalentValue.includes('[');
1657
-
1658
- if (isSimpleVariable) {
1659
- // Look in current scope and all parent scopes for sub-properties
1660
- const scopesToCheck = [scopeNode.name, ...scopeNode.tree];
1661
- for (const scopeName of scopesToCheck) {
1662
- const checkScope = this.scopeNodes[scopeName];
1663
- if (!checkScope?.analysis?.isolatedEquivalentVariables) continue;
1664
-
1665
- for (const [subPath, subValue] of Object.entries(
1666
- checkScope.analysis.isolatedEquivalentVariables,
1667
- )) {
1668
- // Check if this is a sub-property of the equivalentValue variable
1669
- // e.g., completeDataStructure['Function Arguments'] or completeDataStructure.foo
1670
- const matchesDot = subPath.startsWith(equivalentValue + '.');
1671
- const matchesBracket = subPath.startsWith(equivalentValue + '[');
1672
- if (matchesDot || matchesBracket) {
1673
- const subPropertyPath = subPath.substring(
1674
- equivalentValue.length,
1675
- );
1676
- const newPath = cleanPath(path + subPropertyPath, allPaths);
1677
- const newEquivalentValue = cleanPath(
1678
- (subValue as string).replace(/::cyDuplicateKey\d+::/g, ''),
1679
- allPaths,
1895
+ // Propagate sub-property equivalencies when the equivalentValue is a simple variable
1896
+ // that has sub-properties defined in the isolatedEquivalentVariables.
1897
+ // This handles cases like: dataItem={{ structure: completeDataStructure }}
1898
+ // where completeDataStructure has sub-properties like completeDataStructure['Function Arguments']
1899
+ // We need to propagate these to create: dataItem.structure['Function Arguments'] equivalencies
1900
+ const isSimpleVariable =
1901
+ !equivalentValue.startsWith('signature[') &&
1902
+ !equivalentValue.includes('functionCallReturnValue') &&
1903
+ !equivalentValue.includes('.') &&
1904
+ !equivalentValue.includes('[');
1905
+
1906
+ if (isSimpleVariable) {
1907
+ // Look in current scope and all parent scopes for sub-properties
1908
+ const scopesToCheck = [scopeNode.name, ...scopeNode.tree];
1909
+ for (const scopeName of scopesToCheck) {
1910
+ const checkScope = this.scopeNodes[scopeName];
1911
+ if (!checkScope?.analysis?.isolatedEquivalentVariables) continue;
1912
+
1913
+ for (const [subPath, rawSubValue] of Object.entries(
1914
+ checkScope.analysis.isolatedEquivalentVariables,
1915
+ )) {
1916
+ // Normalize to array for consistent handling
1917
+ const subValues = Array.isArray(rawSubValue)
1918
+ ? rawSubValue
1919
+ : rawSubValue
1920
+ ? [rawSubValue]
1921
+ : [];
1922
+
1923
+ // Check if this is a sub-property of the equivalentValue variable
1924
+ // e.g., completeDataStructure['Function Arguments'] or completeDataStructure.foo
1925
+ const matchesDot = subPath.startsWith(equivalentValue + '.');
1926
+ const matchesBracket = subPath.startsWith(
1927
+ equivalentValue + '[',
1680
1928
  );
1681
-
1682
- if (
1683
- newEquivalentValue &&
1684
- this.isValidPath(newEquivalentValue)
1685
- ) {
1686
- this.addEquivalency(
1687
- newPath,
1688
- newEquivalentValue,
1689
- checkScope.name, // Use the scope where the sub-property was found
1690
- scopeNode,
1691
- 'propagated sub-property equivalency',
1929
+ if (matchesDot || matchesBracket) {
1930
+ const subPropertyPath = subPath.substring(
1931
+ equivalentValue.length,
1692
1932
  );
1933
+ const newPath = cleanPath(path + subPropertyPath, allPaths);
1934
+
1935
+ for (const subValue of subValues) {
1936
+ if (typeof subValue !== 'string') continue;
1937
+ const newEquivalentValue = cleanPath(
1938
+ subValue.replace(/::cyDuplicateKey\d+::/g, ''),
1939
+ allPaths,
1940
+ );
1941
+
1942
+ if (
1943
+ newEquivalentValue &&
1944
+ this.isValidPath(newEquivalentValue)
1945
+ ) {
1946
+ this.addEquivalency(
1947
+ newPath,
1948
+ newEquivalentValue,
1949
+ checkScope.name, // Use the scope where the sub-property was found
1950
+ scopeNode,
1951
+ 'propagated sub-property equivalency',
1952
+ );
1953
+ }
1954
+ }
1693
1955
  }
1694
- }
1695
1956
 
1696
- // Also check if equivalentValue itself maps to a functionCallReturnValue
1697
- // e.g., result = useMemo(...).functionCallReturnValue
1698
- if (
1699
- subPath === equivalentValue &&
1700
- typeof subValue === 'string' &&
1701
- subValue.endsWith('.functionCallReturnValue')
1702
- ) {
1703
- this.propagateFunctionCallReturnSubProperties(
1704
- path,
1705
- subValue,
1706
- scopeNode,
1707
- allPaths,
1708
- );
1957
+ // Also check if equivalentValue itself maps to a functionCallReturnValue
1958
+ // e.g., result = useMemo(...).functionCallReturnValue
1959
+ for (const subValue of subValues) {
1960
+ if (
1961
+ subPath === equivalentValue &&
1962
+ typeof subValue === 'string' &&
1963
+ subValue.endsWith('.functionCallReturnValue')
1964
+ ) {
1965
+ this.propagateFunctionCallReturnSubProperties(
1966
+ path,
1967
+ subValue,
1968
+ scopeNode,
1969
+ allPaths,
1970
+ );
1971
+ }
1972
+ }
1709
1973
  }
1710
1974
  }
1711
1975
  }
1712
- }
1713
1976
 
1714
- // Handle function call return values by propagating returnValue.* sub-properties
1715
- // from the callback scope to the usage path
1716
- if (equivalentValue.endsWith('.functionCallReturnValue')) {
1717
- this.propagateFunctionCallReturnSubProperties(
1718
- path,
1719
- equivalentValue,
1720
- scopeNode,
1721
- allPaths,
1722
- );
1977
+ // Handle function call return values by propagating returnValue.* sub-properties
1978
+ // from the callback scope to the usage path
1979
+ if (equivalentValue.endsWith('.functionCallReturnValue')) {
1980
+ this.propagateFunctionCallReturnSubProperties(
1981
+ path,
1982
+ equivalentValue,
1983
+ scopeNode,
1984
+ allPaths,
1985
+ );
1723
1986
 
1724
- // Track which variable receives the return value of each function call
1725
- // This enables generating separate mock data for each call site
1726
- this.trackReceivingVariable(path, equivalentValue);
1727
- }
1987
+ // Track which variable receives the return value of each function call
1988
+ // This enables generating separate mock data for each call site
1989
+ this.trackReceivingVariable(path, equivalentValue);
1990
+ }
1728
1991
 
1729
- // Also track variables that receive destructured properties from function call return values
1730
- // e.g., "userData" -> "db.query('users').functionCallReturnValue.data"
1731
- if (equivalentValue.includes('.functionCallReturnValue.')) {
1732
- this.trackReceivingVariable(path, equivalentValue);
1992
+ // Also track variables that receive destructured properties from function call return values
1993
+ // e.g., "userData" -> "db.query('users').functionCallReturnValue.data"
1994
+ if (equivalentValue.includes('.functionCallReturnValue.')) {
1995
+ this.trackReceivingVariable(path, equivalentValue);
1996
+ }
1733
1997
  }
1734
1998
  }
1735
1999
  }
@@ -1739,7 +2003,7 @@ export class ScopeDataStructure {
1739
2003
  this.batchProcessor = new BatchSchemaProcessor();
1740
2004
  this.batchQueuedSet = new Set();
1741
2005
 
1742
- for (const key of Array.from(allPaths)) {
2006
+ for (const key of allPaths) {
1743
2007
  let value = isolatedStructure[key] ?? 'unknown';
1744
2008
 
1745
2009
  if (['null', 'undefined'].includes(value)) {
@@ -1780,7 +2044,19 @@ export class ScopeDataStructure {
1780
2044
  private processBatchQueue(): void {
1781
2045
  if (!this.batchProcessor) return;
1782
2046
 
2047
+ let iterations = 0;
2048
+
1783
2049
  while (this.batchProcessor.hasWork()) {
2050
+ iterations++;
2051
+
2052
+ // Safety: detect potential infinite loops
2053
+ if (iterations > 100000) {
2054
+ console.error(
2055
+ `[ScopeDataStructure] processBatchQueue exceeded 100k iterations, possible infinite loop!`,
2056
+ );
2057
+ break;
2058
+ }
2059
+
1784
2060
  const item = this.batchProcessor.getNextWork();
1785
2061
  if (!item) break;
1786
2062
 
@@ -1838,26 +2114,6 @@ export class ScopeDataStructure {
1838
2114
  const functionCallInfo =
1839
2115
  this.getExternalFunctionCallsIndex().get(searchKey);
1840
2116
 
1841
- // DEBUG: Track useFetcher calls
1842
- if (searchKey === 'useFetcher' || callSignature.includes('useFetcher')) {
1843
- console.log(
1844
- 'CodeYam DEBUG trackReceivingVariable:',
1845
- JSON.stringify(
1846
- {
1847
- receivingVariable,
1848
- equivalentValue,
1849
- callSignature,
1850
- searchKey,
1851
- foundFunctionCallInfo: !!functionCallInfo,
1852
- existingRecvVars: functionCallInfo?.receivingVariableNames,
1853
- existingCallSigToVar: functionCallInfo?.callSignatureToVariable,
1854
- },
1855
- null,
1856
- 2,
1857
- ),
1858
- );
1859
- }
1860
-
1861
2117
  if (!functionCallInfo) {
1862
2118
  return;
1863
2119
  }
@@ -1918,9 +2174,18 @@ export class ScopeDataStructure {
1918
2174
  const checkScope = this.scopeNodes[scopeName];
1919
2175
  if (!checkScope?.analysis?.isolatedEquivalentVariables) continue;
1920
2176
 
1921
- const functionRef =
2177
+ const rawFunctionRef =
1922
2178
  checkScope.analysis.isolatedEquivalentVariables[functionName];
1923
- if (typeof functionRef === 'string' && functionRef.endsWith('F')) {
2179
+ // Normalize to array and find first string ending with 'F'
2180
+ const functionRefs = Array.isArray(rawFunctionRef)
2181
+ ? rawFunctionRef
2182
+ : rawFunctionRef
2183
+ ? [rawFunctionRef]
2184
+ : [];
2185
+ const functionRef = functionRefs.find(
2186
+ (r) => typeof r === 'string' && r.endsWith('F'),
2187
+ );
2188
+ if (typeof functionRef === 'string') {
1924
2189
  callbackScopeName = functionRef.slice(0, -1);
1925
2190
  break;
1926
2191
  }
@@ -1948,19 +2213,24 @@ export class ScopeDataStructure {
1948
2213
 
1949
2214
  const isolatedVars = callbackScope.analysis.isolatedEquivalentVariables;
1950
2215
 
2216
+ // Get the first returnValue equivalency (normalize array to single value for these checks)
2217
+ const rawReturnValue = isolatedVars.returnValue;
2218
+ const firstReturnValue = Array.isArray(rawReturnValue)
2219
+ ? rawReturnValue[0]
2220
+ : rawReturnValue;
2221
+
1951
2222
  // First, check if returnValue is an alias to another variable (e.g., returnValue = intermediate)
1952
2223
  // If so, we need to look for that variable's sub-properties too
1953
2224
  const returnValueAlias =
1954
- typeof isolatedVars.returnValue === 'string' &&
1955
- !isolatedVars.returnValue.includes('.')
1956
- ? isolatedVars.returnValue
2225
+ typeof firstReturnValue === 'string' && !firstReturnValue.includes('.')
2226
+ ? firstReturnValue
1957
2227
  : undefined;
1958
2228
 
1959
2229
  // Pattern 3: Object.keys(X).reduce() - the reduce result has the same sub-properties as X
1960
2230
  // When returnValue = "Object.keys(source).reduce(...).functionCallReturnValue", look for source.* sub-properties
1961
2231
  let reduceSourceVar: string | undefined;
1962
- if (typeof isolatedVars.returnValue === 'string') {
1963
- const reduceMatch = isolatedVars.returnValue.match(
2232
+ if (typeof firstReturnValue === 'string') {
2233
+ const reduceMatch = firstReturnValue.match(
1964
2234
  /^Object\.keys\((\w+)\)\.reduce\(.*\)\.functionCallReturnValue$/,
1965
2235
  );
1966
2236
  if (reduceMatch) {
@@ -1968,7 +2238,14 @@ export class ScopeDataStructure {
1968
2238
  }
1969
2239
  }
1970
2240
 
1971
- for (const [subPath, subValue] of Object.entries(isolatedVars)) {
2241
+ for (const [subPath, rawSubValue] of Object.entries(isolatedVars)) {
2242
+ // Normalize to array for consistent handling
2243
+ const subValues = Array.isArray(rawSubValue)
2244
+ ? rawSubValue
2245
+ : rawSubValue
2246
+ ? [rawSubValue]
2247
+ : [];
2248
+
1972
2249
  // Check for direct returnValue.* sub-properties
1973
2250
  const isReturnValueSub =
1974
2251
  subPath.startsWith('returnValue.') ||
@@ -1986,57 +2263,59 @@ export class ScopeDataStructure {
1986
2263
  (subPath.startsWith(reduceSourceVar + '.') ||
1987
2264
  subPath.startsWith(reduceSourceVar + '['));
1988
2265
 
1989
- if (
1990
- typeof subValue !== 'string' ||
1991
- (!isReturnValueSub && !isAliasSub && !isReduceSourceSub)
1992
- )
1993
- continue;
1994
-
1995
- // Convert alias/reduceSource paths to returnValue paths
1996
- let effectiveSubPath = subPath;
1997
- if (isAliasSub && !isReturnValueSub) {
1998
- // Replace the alias prefix with returnValue
1999
- effectiveSubPath =
2000
- 'returnValue' + subPath.substring(returnValueAlias!.length);
2001
- } else if (isReduceSourceSub && !isReturnValueSub && !isAliasSub) {
2002
- // Replace the reduce source prefix with returnValue
2003
- effectiveSubPath =
2004
- 'returnValue' + subPath.substring(reduceSourceVar!.length);
2005
- }
2006
- const subPropertyPath = effectiveSubPath.substring('returnValue'.length);
2007
- const newPath = cleanPath(path + subPropertyPath, allPaths);
2008
- let newEquivalentValue = cleanPath(
2009
- subValue.replace(/::cyDuplicateKey\d+::/g, ''),
2010
- allPaths,
2011
- );
2266
+ if (!isReturnValueSub && !isAliasSub && !isReduceSourceSub) continue;
2267
+
2268
+ for (const subValue of subValues) {
2269
+ if (typeof subValue !== 'string') continue;
2270
+
2271
+ // Convert alias/reduceSource paths to returnValue paths
2272
+ let effectiveSubPath = subPath;
2273
+ if (isAliasSub && !isReturnValueSub) {
2274
+ // Replace the alias prefix with returnValue
2275
+ effectiveSubPath =
2276
+ 'returnValue' + subPath.substring(returnValueAlias!.length);
2277
+ } else if (isReduceSourceSub && !isReturnValueSub && !isAliasSub) {
2278
+ // Replace the reduce source prefix with returnValue
2279
+ effectiveSubPath =
2280
+ 'returnValue' + subPath.substring(reduceSourceVar!.length);
2281
+ }
2282
+ const subPropertyPath = effectiveSubPath.substring(
2283
+ 'returnValue'.length,
2284
+ );
2285
+ const newPath = cleanPath(path + subPropertyPath, allPaths);
2286
+ let newEquivalentValue = cleanPath(
2287
+ subValue.replace(/::cyDuplicateKey\d+::/g, ''),
2288
+ allPaths,
2289
+ );
2012
2290
 
2013
- // Resolve variable references through parent scope equivalencies
2014
- const resolved = this.resolveVariableThroughParentScopes(
2015
- newEquivalentValue,
2016
- callbackScope,
2017
- allPaths,
2018
- );
2019
- newEquivalentValue = resolved.resolvedPath;
2020
- const equivalentScopeName = resolved.scopeName;
2291
+ // Resolve variable references through parent scope equivalencies
2292
+ const resolved = this.resolveVariableThroughParentScopes(
2293
+ newEquivalentValue,
2294
+ callbackScope,
2295
+ allPaths,
2296
+ );
2297
+ newEquivalentValue = resolved.resolvedPath;
2298
+ const equivalentScopeName = resolved.scopeName;
2021
2299
 
2022
- if (!newEquivalentValue || !this.isValidPath(newEquivalentValue))
2023
- continue;
2300
+ if (!newEquivalentValue || !this.isValidPath(newEquivalentValue))
2301
+ continue;
2024
2302
 
2025
- this.addEquivalency(
2026
- newPath,
2027
- newEquivalentValue,
2028
- equivalentScopeName,
2029
- scopeNode,
2030
- 'propagated function call return sub-property equivalency',
2031
- );
2303
+ this.addEquivalency(
2304
+ newPath,
2305
+ newEquivalentValue,
2306
+ equivalentScopeName,
2307
+ scopeNode,
2308
+ 'propagated function call return sub-property equivalency',
2309
+ );
2032
2310
 
2033
- // Ensure the database entry has the usage path
2034
- this.addUsageToEquivalencyDatabaseEntry(
2035
- newPath,
2036
- newEquivalentValue,
2037
- equivalentScopeName,
2038
- scopeNode.name,
2039
- );
2311
+ // Ensure the database entry has the usage path
2312
+ this.addUsageToEquivalencyDatabaseEntry(
2313
+ newPath,
2314
+ newEquivalentValue,
2315
+ equivalentScopeName,
2316
+ scopeNode.name,
2317
+ );
2318
+ }
2040
2319
  }
2041
2320
  }
2042
2321
 
@@ -2076,8 +2355,15 @@ export class ScopeDataStructure {
2076
2355
  const parentScope = this.scopeNodes[parentScopeName];
2077
2356
  if (!parentScope?.analysis?.isolatedEquivalentVariables) continue;
2078
2357
 
2079
- const rootEquiv =
2358
+ const rawRootEquiv =
2080
2359
  parentScope.analysis.isolatedEquivalentVariables[rootVar];
2360
+ // Normalize to array and use first string value
2361
+ const rootEquivs = Array.isArray(rawRootEquiv)
2362
+ ? rawRootEquiv
2363
+ : rawRootEquiv
2364
+ ? [rawRootEquiv]
2365
+ : [];
2366
+ const rootEquiv = rootEquivs.find((r) => typeof r === 'string');
2081
2367
  if (typeof rootEquiv === 'string') {
2082
2368
  return {
2083
2369
  resolvedPath: cleanPath(rootEquiv + restOfPath, allPaths),
@@ -2352,11 +2638,27 @@ export class ScopeDataStructure {
2352
2638
  relevantSubPathParts.every((part, i) => part === schemaPathParts[i]) &&
2353
2639
  equivalentValue.scopeNodeName === scopeNode.name
2354
2640
  ) {
2641
+ // DEBUG
2355
2642
  continue;
2356
2643
  }
2357
2644
 
2358
2645
  const newEquivalentPath = this.joinPathParts([schemaPath, remainingPath]);
2359
2646
 
2647
+ // PERF: Detect repeated patterns in paths to prevent exponential blowup
2648
+ // Paths like `signature[0].attributes.properties[].attributes.properties[]...`
2649
+ // indicate recursive type structures that cause exponential schema explosion
2650
+ if (this.hasExcessivePatternRepetition(newEquivalentPath)) {
2651
+ if (traceId && debugLevel > 0) {
2652
+ console.info(
2653
+ 'Debug: skipping path with excessive pattern repetition',
2654
+ {
2655
+ path: newEquivalentPath,
2656
+ },
2657
+ );
2658
+ }
2659
+ continue;
2660
+ }
2661
+
2360
2662
  if (!equivalentScopeNode) {
2361
2663
  if (traceId) {
2362
2664
  console.info('Debug Propagation: missing equivalent scope info', {
@@ -2523,6 +2825,8 @@ export class ScopeDataStructure {
2523
2825
  usageEquivalency.scopeNodeName,
2524
2826
  ) as ScopeNode;
2525
2827
 
2828
+ if (!usageScopeNode) continue;
2829
+
2526
2830
  // Guard against infinite recursion by tracking which paths we've already
2527
2831
  // added from addComplexSourcePathVariables
2528
2832
  if (
@@ -2602,6 +2906,8 @@ export class ScopeDataStructure {
2602
2906
  usageEquivalency.scopeNodeName,
2603
2907
  ) as ScopeNode;
2604
2908
 
2909
+ if (!usageScopeNode) continue;
2910
+
2605
2911
  // This is put in place to avoid propagating array functions like 'filter' through complex equivalencies
2606
2912
  // but may cause problems if the funtion call is not on a known object (e.g. string or array)
2607
2913
  if (
@@ -2728,10 +3034,105 @@ export class ScopeDataStructure {
2728
3034
  this.intermediatesOrderIndex.set(pathId, databaseEntry);
2729
3035
 
2730
3036
  if (intermediateIndex === 0) {
2731
- const isValidSourceCandidate =
3037
+ let isValidSourceCandidate =
2732
3038
  pathInfo.schemaPath.startsWith('signature[') ||
2733
3039
  pathInfo.schemaPath.includes('functionCallReturnValue');
2734
- if (isValidSourceCandidate) {
3040
+
3041
+ // Check if path STARTS with a spread pattern like [...var]
3042
+ // This handles cases like [...files][][0] or [...files].sort(...).functionCallReturnValue[][0]
3043
+ // where the spread source variable needs to be resolved to a signature path.
3044
+ // We do this REGARDLESS of isValidSourceCandidate because even paths containing
3045
+ // functionCallReturnValue may need spread resolution to trace back to the signature.
3046
+ const spreadMatch = pathInfo.schemaPath.match(/^\[\.\.\.(\w+)\]/);
3047
+ if (spreadMatch) {
3048
+ const spreadVar = spreadMatch[1];
3049
+ const spreadPattern = spreadMatch[0]; // The full [...var] match
3050
+ const scopeNode = this.scopeNodes[pathInfo.scopeNodeName];
3051
+
3052
+ if (scopeNode?.equivalencies) {
3053
+ // Follow the equivalency chain to find a signature path
3054
+ // e.g., files (cyScope1) → files (root) → signature[0].files
3055
+ const resolveToSignature = (
3056
+ varName: string,
3057
+ currentScopeName: string,
3058
+ visited: Set<string>,
3059
+ ): { schemaPath: string; scopeNodeName: string } | null => {
3060
+ const visitKey = `${currentScopeName}::${varName}`;
3061
+ if (visited.has(visitKey)) return null;
3062
+ visited.add(visitKey);
3063
+
3064
+ const currentScope = this.scopeNodes[currentScopeName];
3065
+ if (!currentScope?.equivalencies) return null;
3066
+
3067
+ const varEquivs = currentScope.equivalencies[varName];
3068
+ if (!varEquivs) return null;
3069
+
3070
+ // First check if any equivalency directly points to a signature path
3071
+ const signatureEquiv = varEquivs.find((eq) =>
3072
+ eq.schemaPath.startsWith('signature['),
3073
+ );
3074
+ if (signatureEquiv) {
3075
+ return signatureEquiv;
3076
+ }
3077
+
3078
+ // Otherwise, follow the chain to other scopes
3079
+ for (const equiv of varEquivs) {
3080
+ // If the equivalency points to the same variable in a different scope,
3081
+ // follow the chain
3082
+ if (
3083
+ equiv.schemaPath === varName &&
3084
+ equiv.scopeNodeName !== currentScopeName
3085
+ ) {
3086
+ const result = resolveToSignature(
3087
+ varName,
3088
+ equiv.scopeNodeName,
3089
+ visited,
3090
+ );
3091
+ if (result) return result;
3092
+ }
3093
+ }
3094
+
3095
+ return null;
3096
+ };
3097
+
3098
+ const signatureEquiv = resolveToSignature(
3099
+ spreadVar,
3100
+ pathInfo.scopeNodeName,
3101
+ new Set(),
3102
+ );
3103
+ if (signatureEquiv) {
3104
+ // Replace ONLY the [...var] part with the resolved signature path
3105
+ // This preserves any suffix like .sort(...).functionCallReturnValue[][0]
3106
+ const resolvedPath = pathInfo.schemaPath.replace(
3107
+ spreadPattern,
3108
+ signatureEquiv.schemaPath,
3109
+ );
3110
+ // Add the resolved path as a source candidate
3111
+ if (
3112
+ !databaseEntry.sourceCandidates.some(
3113
+ (sc) =>
3114
+ sc.schemaPath === resolvedPath &&
3115
+ sc.scopeNodeName === pathInfo.scopeNodeName,
3116
+ )
3117
+ ) {
3118
+ databaseEntry.sourceCandidates.push({
3119
+ scopeNodeName: pathInfo.scopeNodeName,
3120
+ schemaPath: resolvedPath,
3121
+ });
3122
+ }
3123
+ isValidSourceCandidate = true;
3124
+ }
3125
+ }
3126
+ }
3127
+
3128
+ if (
3129
+ isValidSourceCandidate &&
3130
+ !databaseEntry.sourceCandidates.some(
3131
+ (sc) =>
3132
+ sc.schemaPath === pathInfo.schemaPath &&
3133
+ sc.scopeNodeName === pathInfo.scopeNodeName,
3134
+ )
3135
+ ) {
2735
3136
  databaseEntry.sourceCandidates.push(pathInfo);
2736
3137
  }
2737
3138
  } else {
@@ -2959,6 +3360,14 @@ export class ScopeDataStructure {
2959
3360
  }
2960
3361
  }
2961
3362
 
3363
+ // Ensure parameter-to-signature equivalencies are fully propagated.
3364
+ // When a parameter variable (e.g., `node`) is equivalenced to `signature[N]`,
3365
+ // all sub-paths of that variable should also appear under `signature[N]`.
3366
+ // This handles cases where the sub-path was added to the schema via a propagation
3367
+ // chain that already included the variable↔signature equivalency, causing the
3368
+ // cycle detection to prevent the reverse mapping.
3369
+ this.propagateParameterToSignaturePaths(scopeNode);
3370
+
2962
3371
  fillInSchemaGapsAndUnknowns(scopeNode, fillInUnknowns);
2963
3372
 
2964
3373
  if (final) {
@@ -2973,10 +3382,101 @@ export class ScopeDataStructure {
2973
3382
  }
2974
3383
  }
2975
3384
 
2976
- private filterAndConvertSchema({
2977
- filterPath,
2978
- newPath,
2979
- schema,
3385
+ /**
3386
+ * For each equivalency where a simple variable maps to signature[N],
3387
+ * ensure all sub-paths of that variable are reflected under signature[N].
3388
+ */
3389
+ private propagateParameterToSignaturePaths(scopeNode: ScopeNode) {
3390
+ // Helper: check if a type is a concrete scalar that cannot have sub-properties.
3391
+ const SCALAR_TYPES = new Set([
3392
+ 'string',
3393
+ 'number',
3394
+ 'boolean',
3395
+ 'bigint',
3396
+ 'symbol',
3397
+ 'void',
3398
+ 'never',
3399
+ ]);
3400
+ const isDefinitelyScalar = (type: string): boolean => {
3401
+ const parts = type.split('|').map((s) => s.trim());
3402
+ const base = parts.filter((s) => s !== 'undefined' && s !== 'null');
3403
+ return base.length > 0 && base.every((b) => SCALAR_TYPES.has(b));
3404
+ };
3405
+
3406
+ // Find variable → signature[N] equivalencies
3407
+ for (const [varName, equivalencies] of Object.entries(
3408
+ scopeNode.equivalencies,
3409
+ )) {
3410
+ // Only process simple variable names (no dots, brackets, or parens)
3411
+ if (
3412
+ varName.includes('.') ||
3413
+ varName.includes('[') ||
3414
+ varName.includes('(')
3415
+ ) {
3416
+ continue;
3417
+ }
3418
+
3419
+ for (const equiv of equivalencies) {
3420
+ if (
3421
+ equiv.scopeNodeName === scopeNode.name &&
3422
+ equiv.schemaPath.startsWith('signature[')
3423
+ ) {
3424
+ const signaturePath = equiv.schemaPath;
3425
+ const varPrefix = varName + '.';
3426
+ const varBracketPrefix = varName + '[';
3427
+
3428
+ // Find all schema keys starting with the variable
3429
+ for (const key in scopeNode.schema) {
3430
+ if (key.startsWith(varPrefix) || key.startsWith(varBracketPrefix)) {
3431
+ const suffix = key.slice(varName.length);
3432
+ const sigKey = signaturePath + suffix;
3433
+
3434
+ // Only add if the signature path doesn't already exist
3435
+ if (!scopeNode.schema[sigKey]) {
3436
+ // Check if this path represents variable conflation:
3437
+ // When a standalone variable (e.g., showWorkoutForm from useState)
3438
+ // appears as a sub-property of a scalar-typed ancestor (e.g.,
3439
+ // activity_type = "string"), it's from scope conflation, not real
3440
+ // property access. Block these while allowing legitimate built-in
3441
+ // accesses like string.length or string.slice.
3442
+ let isConflatedPath = false;
3443
+ let checkPos = signaturePath.length;
3444
+ while (true) {
3445
+ checkPos = sigKey.indexOf('.', checkPos + 1);
3446
+ if (checkPos === -1) break;
3447
+ const ancestorPath = sigKey.substring(0, checkPos);
3448
+ const ancestorType = scopeNode.schema[ancestorPath];
3449
+ if (ancestorType && isDefinitelyScalar(ancestorType)) {
3450
+ // Ancestor is scalar — check if the immediate sub-property
3451
+ // is also a standalone variable (indicating conflation)
3452
+ const afterDot = sigKey.substring(checkPos + 1);
3453
+ const nextSep = afterDot.search(/[.\[]/);
3454
+ const subPropName =
3455
+ nextSep === -1
3456
+ ? afterDot
3457
+ : afterDot.substring(0, nextSep);
3458
+ if (scopeNode.schema[subPropName] !== undefined) {
3459
+ isConflatedPath = true;
3460
+ break;
3461
+ }
3462
+ }
3463
+ }
3464
+
3465
+ if (!isConflatedPath) {
3466
+ scopeNode.schema[sigKey] = scopeNode.schema[key];
3467
+ }
3468
+ }
3469
+ }
3470
+ }
3471
+ }
3472
+ }
3473
+ }
3474
+ }
3475
+
3476
+ private filterAndConvertSchema({
3477
+ filterPath,
3478
+ newPath,
3479
+ schema,
2980
3480
  }: {
2981
3481
  filterPath: string;
2982
3482
  newPath?: string;
@@ -3059,6 +3559,9 @@ export class ScopeDataStructure {
3059
3559
  equivalentValueSchemaPathParts.length,
3060
3560
  ),
3061
3561
  ]);
3562
+ // PERF: Skip keys with repeated function-call signature patterns
3563
+ // to prevent recursive type expansion (e.g., string.localeCompare returns string)
3564
+ if (this.hasExcessivePatternRepetition(newKey)) continue;
3062
3565
  resolvedSchema[newKey] = value;
3063
3566
  }
3064
3567
  }
@@ -3081,6 +3584,8 @@ export class ScopeDataStructure {
3081
3584
  if (!subSchema) continue;
3082
3585
 
3083
3586
  for (const resolvedKey in subSchema) {
3587
+ // PERF: Skip keys with repeated function-call signature patterns
3588
+ if (this.hasExcessivePatternRepetition(resolvedKey)) continue;
3084
3589
  if (
3085
3590
  !resolvedSchema[resolvedKey] ||
3086
3591
  subSchema[resolvedKey] === 'unknown'
@@ -3266,10 +3771,29 @@ export class ScopeDataStructure {
3266
3771
  }
3267
3772
  }
3268
3773
  }
3269
- return mergedSchema;
3774
+ return this.filterDuplicateKeys(mergedSchema);
3270
3775
  }
3271
3776
 
3272
- return schema;
3777
+ return this.filterDuplicateKeys(schema);
3778
+ }
3779
+
3780
+ /**
3781
+ * Filter out ::cyDuplicateKey:: entries from a schema.
3782
+ * These are internal markers for tracking variable reassignments
3783
+ * and should not appear in output schemas or LLM prompts.
3784
+ */
3785
+ private filterDuplicateKeys(
3786
+ schema: Record<string, string>,
3787
+ ): Record<string, string> {
3788
+ return Object.entries(schema).reduce(
3789
+ (acc, [key, value]) => {
3790
+ if (!key.includes('::cyDuplicateKey')) {
3791
+ acc[key] = value;
3792
+ }
3793
+ return acc;
3794
+ },
3795
+ {} as Record<string, string>,
3796
+ );
3273
3797
  }
3274
3798
 
3275
3799
  getEquivalencies(scopeName?: string) {
@@ -3299,26 +3823,270 @@ export class ScopeDataStructure {
3299
3823
  return {};
3300
3824
  }
3301
3825
 
3826
+ // Collect all descendant scope names (including the scope itself)
3827
+ // This ensures we include external calls from nested scopes like cyScope2
3828
+ const getAllDescendantScopeNames = (
3829
+ node: import('./helpers/ScopeTreeManager').ScopeTreeNode,
3830
+ ): Set<string> => {
3831
+ const names = new Set<string>([node.name]);
3832
+ for (const child of node.children) {
3833
+ for (const name of getAllDescendantScopeNames(child)) {
3834
+ names.add(name);
3835
+ }
3836
+ }
3837
+ return names;
3838
+ };
3839
+
3840
+ const treeNode = this.scopeTreeManager.findNode(scopeNode.name);
3841
+ const descendantScopeNames = treeNode
3842
+ ? getAllDescendantScopeNames(treeNode)
3843
+ : new Set<string>([scopeNode.name]);
3844
+
3845
+ // Get all external function calls made from this scope or any descendant scope
3846
+ // This allows us to include prop equivalencies from JSX components
3847
+ // that were rendered in nested scopes (e.g., FileTableRow called from cyScope2)
3848
+ const externalCallsFromScope = this.externalFunctionCalls.filter((efc) =>
3849
+ descendantScopeNames.has(efc.callScope),
3850
+ );
3851
+ const externalCallNames = new Set(
3852
+ externalCallsFromScope.map((efc) => efc.name),
3853
+ );
3854
+
3855
+ // Helper to check if a usage belongs to this scope (directly, via descendant, or via external call)
3856
+ const usageMatchesScope = (usage: { scopeNodeName: string }) =>
3857
+ descendantScopeNames.has(usage.scopeNodeName) ||
3858
+ externalCallNames.has(usage.scopeNodeName);
3859
+
3302
3860
  const entries = this.equivalencyDatabase.filter((entry) =>
3303
- entry.usages.some((usage) => usage.scopeNodeName === scopeNode.name),
3861
+ entry.usages.some(usageMatchesScope),
3304
3862
  );
3305
- return entries.reduce(
3306
- (acc, entry) => {
3307
- if (entry.sourceCandidates.length === 0) return acc;
3308
- const usages = entry.usages.filter(
3309
- (u) => u.scopeNodeName === scopeNode.name,
3310
- );
3863
+
3864
+ // Helper to resolve a source candidate through equivalency chains to find signature paths
3865
+ const resolveToSignature = (
3866
+ source: Pick<ScopeVariable, 'scopeNodeName' | 'schemaPath'>,
3867
+ visited: Set<string>,
3868
+ ): Pick<ScopeVariable, 'scopeNodeName' | 'schemaPath'>[] => {
3869
+ const visitKey = `${source.scopeNodeName}::${source.schemaPath}`;
3870
+ if (visited.has(visitKey)) return [];
3871
+ visited.add(visitKey);
3872
+
3873
+ // If already a signature path, return as-is
3874
+ if (source.schemaPath.startsWith('signature[')) {
3875
+ return [source];
3876
+ }
3877
+
3878
+ const currentScope = this.scopeNodes[source.scopeNodeName];
3879
+ if (!currentScope?.equivalencies) return [source];
3880
+
3881
+ // Check for direct equivalencies FIRST (full path match)
3882
+ // This ensures paths like "useMemo(...).functionCallReturnValue" follow to "cyScope1::returnValue"
3883
+ // before prefix matching tries "useMemo(...)" which goes to the useMemo scope
3884
+ const directEquivs = currentScope.equivalencies[source.schemaPath];
3885
+ if (directEquivs?.length > 0) {
3886
+ const results: Pick<ScopeVariable, 'scopeNodeName' | 'schemaPath'>[] =
3887
+ [];
3888
+ for (const equiv of directEquivs) {
3889
+ const resolved = resolveToSignature(
3890
+ {
3891
+ scopeNodeName: equiv.scopeNodeName,
3892
+ schemaPath: equiv.schemaPath,
3893
+ },
3894
+ visited,
3895
+ );
3896
+ results.push(...resolved);
3897
+ }
3898
+ if (results.length > 0) return results;
3899
+ }
3900
+
3901
+ // Handle spread patterns like [...items].sort().functionCallReturnValue
3902
+ // Extract the spread variable and resolve it through the equivalency chain
3903
+ const spreadMatch = source.schemaPath.match(/^\[\.\.\.(\w+)\]/);
3904
+ if (spreadMatch) {
3905
+ const spreadVar = spreadMatch[1];
3906
+ const spreadPattern = spreadMatch[0];
3907
+ const varEquivs = currentScope.equivalencies[spreadVar];
3908
+
3909
+ if (varEquivs?.length > 0) {
3910
+ const results: Pick<ScopeVariable, 'scopeNodeName' | 'schemaPath'>[] =
3911
+ [];
3912
+ for (const equiv of varEquivs) {
3913
+ // Follow the variable equivalency and then resolve from there
3914
+ const resolvedVar = resolveToSignature(
3915
+ {
3916
+ scopeNodeName: equiv.scopeNodeName,
3917
+ schemaPath: equiv.schemaPath,
3918
+ },
3919
+ visited,
3920
+ );
3921
+ // For each resolved variable path, create the full path with array element suffix
3922
+ for (const rv of resolvedVar) {
3923
+ if (rv.schemaPath.startsWith('signature[')) {
3924
+ // Get the suffix after the spread pattern
3925
+ let suffix = source.schemaPath.slice(spreadPattern.length);
3926
+
3927
+ // Clean the suffix: strip array method chains like .sort(...).functionCallReturnValue[]
3928
+ // These don't change the data identity, just transform it.
3929
+ // Keep only the final element access parts like [0], [1], etc.
3930
+ // Pattern: strip everything from a method call up through functionCallReturnValue[]
3931
+ suffix = suffix.replace(
3932
+ /\.\w+\([^)]*\)\.functionCallReturnValue\[\]/g,
3933
+ '',
3934
+ );
3935
+ // Also handle simpler case without nested parens
3936
+ suffix = suffix.replace(
3937
+ /\.sort\(\w*\(\)\)\.functionCallReturnValue\[\]/g,
3938
+ '',
3939
+ );
3940
+
3941
+ // Add [] to indicate array element access from the spread
3942
+ const resolvedPath = rv.schemaPath + '[]' + suffix;
3943
+ results.push({
3944
+ scopeNodeName: rv.scopeNodeName,
3945
+ schemaPath: resolvedPath,
3946
+ });
3947
+ }
3948
+ }
3949
+ }
3950
+ if (results.length > 0) return results;
3951
+ }
3952
+ }
3953
+
3954
+ // Try to find prefix equivalencies that can resolve this path
3955
+ // For path like "cyScope3().signature[0][0]", check "cyScope3().signature[0]", etc.
3956
+ const pathParts = this.splitPath(source.schemaPath);
3957
+ for (let i = pathParts.length - 1; i > 0; i--) {
3958
+ const prefix = this.joinPathParts(pathParts.slice(0, i));
3959
+ const suffix = this.joinPathParts(pathParts.slice(i));
3960
+ const prefixEquivs = currentScope.equivalencies[prefix];
3961
+
3962
+ if (prefixEquivs?.length > 0) {
3963
+ const results: Pick<ScopeVariable, 'scopeNodeName' | 'schemaPath'>[] =
3964
+ [];
3965
+ for (const equiv of prefixEquivs) {
3966
+ const newPath = this.joinPathParts([equiv.schemaPath, suffix]);
3967
+ const resolved = resolveToSignature(
3968
+ { scopeNodeName: equiv.scopeNodeName, schemaPath: newPath },
3969
+ visited,
3970
+ );
3971
+ results.push(...resolved);
3972
+ }
3973
+ if (results.length > 0) return results;
3974
+ }
3975
+ }
3976
+
3977
+ return [source];
3978
+ };
3979
+
3980
+ const acc = entries.reduce(
3981
+ (result, entry) => {
3982
+ if (entry.sourceCandidates.length === 0) return result;
3983
+ const usages = entry.usages.filter(usageMatchesScope);
3311
3984
  for (const usage of usages) {
3312
- acc[usage.schemaPath] ||= [];
3313
- acc[usage.schemaPath].push(...entry.sourceCandidates);
3985
+ result[usage.schemaPath] ||= [];
3986
+ // Resolve each source candidate through the equivalency chain
3987
+ for (const source of entry.sourceCandidates) {
3988
+ const resolvedSources = resolveToSignature(source, new Set());
3989
+ result[usage.schemaPath].push(...resolvedSources);
3990
+ }
3314
3991
  }
3315
- return acc;
3992
+ return result;
3316
3993
  },
3317
3994
  {} as Record<
3318
3995
  string,
3319
3996
  Pick<ScopeVariable, 'scopeNodeName' | 'schemaPath'>[]
3320
3997
  >,
3321
3998
  );
3999
+
4000
+ // Post-processing: enrich useState-backed sources with co-located external
4001
+ // function calls. When a useState value resolves to a setter variable that
4002
+ // lives in the same scope as a fetch/API call, that fetch is a data source.
4003
+ this.enrichUseStateSourcesWithCoLocatedCalls(acc);
4004
+
4005
+ return acc;
4006
+ }
4007
+
4008
+ /**
4009
+ * For each source that ends at a useState path, check if the setter was called
4010
+ * from a scope that also contains external function calls (like fetch).
4011
+ * If so, add those external calls as additional source candidates.
4012
+ */
4013
+ private enrichUseStateSourcesWithCoLocatedCalls(
4014
+ acc: Record<string, Pick<ScopeVariable, 'scopeNodeName' | 'schemaPath'>[]>,
4015
+ ) {
4016
+ const rootScopeName = this.scopeTreeManager.getRootName();
4017
+ const rootScope = this.scopeNodes[rootScopeName];
4018
+ if (!rootScope) return;
4019
+
4020
+ // Collect all descendants for each scope node
4021
+ const getAllDescendants = (
4022
+ node: import('./helpers/ScopeTreeManager').ScopeTreeNode,
4023
+ ): Set<string> => {
4024
+ const names = new Set<string>([node.name]);
4025
+ for (const child of node.children) {
4026
+ for (const name of getAllDescendants(child)) {
4027
+ names.add(name);
4028
+ }
4029
+ }
4030
+ return names;
4031
+ };
4032
+
4033
+ for (const [usagePath, sources] of Object.entries(acc)) {
4034
+ const additionalSources: Pick<
4035
+ ScopeVariable,
4036
+ 'scopeNodeName' | 'schemaPath'
4037
+ >[] = [];
4038
+
4039
+ for (const source of sources) {
4040
+ // Check if this source is a useState-related terminal path
4041
+ // (e.g., useState(X).functionCallReturnValue[1] or useState(X).signature[0])
4042
+ if (!source.schemaPath.match(/^useState\([^)]*\)\./)) continue;
4043
+
4044
+ // Find the useState call from the source path
4045
+ const useStateCallMatch = source.schemaPath.match(
4046
+ /^(useState\([^)]*\))\./,
4047
+ );
4048
+ if (!useStateCallMatch) continue;
4049
+ const useStateCall = useStateCallMatch[1];
4050
+
4051
+ // Look in the root scope for the useState value equivalency
4052
+ // which tells us where the setter was called from
4053
+ const valuePath = `${useStateCall}.functionCallReturnValue[0]`;
4054
+ const valueEquivs = rootScope.equivalencies[valuePath];
4055
+ if (!valueEquivs) continue;
4056
+
4057
+ for (const equiv of valueEquivs) {
4058
+ // Find the scope where the setter was called
4059
+ const setterScopeName = equiv.scopeNodeName;
4060
+ const setterScopeTree =
4061
+ this.scopeTreeManager.findNode(setterScopeName);
4062
+ if (!setterScopeTree) continue;
4063
+
4064
+ // Get all descendant scope names from the setter scope
4065
+ const relatedScopes = getAllDescendants(setterScopeTree);
4066
+
4067
+ // Find external function calls in those scopes whose return values
4068
+ // are actually consumed (assigned to a variable). This excludes
4069
+ // fire-and-forget calls like analytics.track() or console.log().
4070
+ const coLocatedCalls = this.externalFunctionCalls.filter(
4071
+ (efc) =>
4072
+ relatedScopes.has(efc.callScope) &&
4073
+ efc.receivingVariableNames &&
4074
+ efc.receivingVariableNames.length > 0,
4075
+ );
4076
+
4077
+ for (const call of coLocatedCalls) {
4078
+ additionalSources.push({
4079
+ scopeNodeName: call.callScope,
4080
+ schemaPath: `${call.callSignature}.functionCallReturnValue`,
4081
+ });
4082
+ }
4083
+ }
4084
+ }
4085
+
4086
+ if (additionalSources.length > 0) {
4087
+ acc[usagePath].push(...additionalSources);
4088
+ }
4089
+ }
3322
4090
  }
3323
4091
 
3324
4092
  getUsageEquivalencies(functionName?: string) {
@@ -3377,12 +4145,14 @@ export class ScopeDataStructure {
3377
4145
  );
3378
4146
 
3379
4147
  const equivalencies = this.getEquivalencies(functionName);
4148
+ const scopeName = functionName ?? this.scopeTreeManager.getRootName();
4149
+
3380
4150
  for (const equivalenceKey in equivalencies ?? {}) {
3381
4151
  for (const equivalenceValue of equivalencies[equivalenceKey]) {
3382
4152
  const schemaPath = equivalenceValue.schemaPath;
3383
4153
  if (
3384
4154
  schemaPath.startsWith('signature[') &&
3385
- equivalenceValue.scopeNodeName === functionName &&
4155
+ equivalenceValue.scopeNodeName === scopeName &&
3386
4156
  !signatureInSchema[schemaPath]
3387
4157
  ) {
3388
4158
  signatureInSchema[schemaPath] = 'unknown';
@@ -3396,16 +4166,190 @@ export class ScopeDataStructure {
3396
4166
  equivalencies,
3397
4167
  );
3398
4168
 
3399
- // CRITICAL: Set onlyEquivalencies to true to prevent database modifications
3400
- // during this "getter" method. validateSchema triggers manager.finalize which
3401
- // can call addToSchema -> addToEquivalencyDatabase -> mergeEquivalencyDatabaseEntries,
3402
- // which would incorrectly remove entries from the database.
3403
- const wasOnlyEquivalencies = this.onlyEquivalencies;
3404
- this.onlyEquivalencies = true;
3405
4169
  this.validateSchema(tempScopeNode, true, fillInUnknowns);
3406
- this.onlyEquivalencies = wasOnlyEquivalencies;
3407
4170
 
3408
- return tempScopeNode.schema;
4171
+ // After validateSchema has filled in types, propagate nested paths from
4172
+ // variables to their signature equivalents.
4173
+ // e.g., workouts[].activity_type -> signature[0].workouts[].activity_type
4174
+ //
4175
+ // Build a map of variable names that are equivalent to signature paths
4176
+ // e.g., { 'workouts': 'signature[0].workouts' }
4177
+ const variableToSignatureMap: Record<string, string> = {};
4178
+
4179
+ for (const equivalenceKey in equivalencies ?? {}) {
4180
+ for (const equivalenceValue of equivalencies[equivalenceKey]) {
4181
+ const schemaPath = equivalenceValue.schemaPath;
4182
+ // Track which variables map to signature paths
4183
+ // equivalenceKey is the variable name (e.g., 'workouts')
4184
+ // schemaPath is where it comes from (e.g., 'signature[0].workouts')
4185
+ if (
4186
+ schemaPath.startsWith('signature[') &&
4187
+ equivalenceValue.scopeNodeName === scopeName
4188
+ ) {
4189
+ variableToSignatureMap[equivalenceKey] = schemaPath;
4190
+ }
4191
+ }
4192
+ }
4193
+
4194
+ // Enrich schema with deeply nested paths from internal function call scopes.
4195
+ // When a function call like traverse(tree) exists, and traverse's scope has
4196
+ // signature[0].children[path][entityName] (from propagateParameterToSignaturePaths),
4197
+ // we need to map those paths back to the argument variable (tree) in this scope.
4198
+ // This handles cases where cycle detection prevented the equivalency chain from
4199
+ // propagating deep paths during Phase 2 batch queue processing.
4200
+ for (const equivalenceKey in equivalencies ?? {}) {
4201
+ // Look for keys matching function call pattern: funcName(...).signature[N]
4202
+ const funcCallMatch = equivalenceKey.match(
4203
+ /^([^(]+)\(.*?\)\.(signature\[\d+\])$/,
4204
+ );
4205
+ if (!funcCallMatch) continue;
4206
+
4207
+ const calledFunctionName = funcCallMatch[1];
4208
+ const signatureParam = funcCallMatch[2]; // e.g., "signature[0]"
4209
+
4210
+ for (const equivalenceValue of equivalencies[equivalenceKey]) {
4211
+ if (equivalenceValue.scopeNodeName !== scopeName) continue;
4212
+
4213
+ const targetVariable = equivalenceValue.schemaPath;
4214
+
4215
+ // Get the called function's schema (includes propagated parameter paths)
4216
+ const childSchema = this.getSchema({
4217
+ scopeName: calledFunctionName,
4218
+ });
4219
+ if (!childSchema) continue;
4220
+
4221
+ // Map child function's signature paths to parent variable paths
4222
+ const sigPrefix = signatureParam + '.';
4223
+ const sigBracketPrefix = signatureParam + '[';
4224
+ for (const childKey in childSchema) {
4225
+ let suffix: string | null = null;
4226
+ if (childKey.startsWith(sigPrefix)) {
4227
+ suffix = childKey.slice(signatureParam.length);
4228
+ } else if (childKey.startsWith(sigBracketPrefix)) {
4229
+ suffix = childKey.slice(signatureParam.length);
4230
+ }
4231
+
4232
+ if (suffix !== null) {
4233
+ const parentKey = targetVariable + suffix;
4234
+ if (!schema[parentKey]) {
4235
+ schema[parentKey] = childSchema[childKey];
4236
+ }
4237
+ }
4238
+ }
4239
+ }
4240
+ }
4241
+
4242
+ // Helper: check if a type is a concrete scalar that cannot have sub-properties.
4243
+ // e.g., "string", "number | undefined", "boolean | null" are scalar.
4244
+ // "object", "array", "function", "unknown", "Workout", etc. are NOT scalar.
4245
+ const SCALAR_TYPES = new Set([
4246
+ 'string',
4247
+ 'number',
4248
+ 'boolean',
4249
+ 'bigint',
4250
+ 'symbol',
4251
+ 'void',
4252
+ 'never',
4253
+ ]);
4254
+ const isDefinitelyScalarType = (type: string): boolean => {
4255
+ const parts = type.split('|').map((s) => s.trim());
4256
+ const base = parts.filter((s) => s !== 'undefined' && s !== 'null');
4257
+ return base.length > 0 && base.every((b) => SCALAR_TYPES.has(b));
4258
+ };
4259
+
4260
+ // Propagate nested paths from variables to their signature equivalents
4261
+ // e.g., if workouts = signature[0].workouts, then workouts[].title becomes
4262
+ // signature[0].workouts[].title
4263
+ for (const schemaKey in schema) {
4264
+ // Skip keys that already start with signature[
4265
+ if (schemaKey.startsWith('signature[')) continue;
4266
+
4267
+ // Check if this key starts with a variable that maps to a signature path
4268
+ for (const [variableName, signaturePath] of Object.entries(
4269
+ variableToSignatureMap,
4270
+ )) {
4271
+ // Check if schemaKey starts with variableName followed by a property accessor
4272
+ // e.g., 'workouts[]' starts with 'workouts'
4273
+ if (
4274
+ schemaKey === variableName ||
4275
+ schemaKey.startsWith(variableName + '.') ||
4276
+ schemaKey.startsWith(variableName + '[')
4277
+ ) {
4278
+ // Transform the path: replace the variable prefix with the signature path
4279
+ const suffix = schemaKey.slice(variableName.length);
4280
+ const signatureKey = signaturePath + suffix;
4281
+
4282
+ // Add to schema if not already present
4283
+ if (!tempScopeNode.schema[signatureKey]) {
4284
+ // Check if this path represents variable conflation:
4285
+ // When a standalone variable (e.g., showWorkoutForm from useState)
4286
+ // appears as a sub-property of a scalar-typed ancestor (e.g.,
4287
+ // activity_type = "string"), it's from scope conflation, not real
4288
+ // property access. Block these while allowing legitimate built-in
4289
+ // accesses like string.length or string.slice.
4290
+ let isConflatedPath = false;
4291
+ let checkPos = signaturePath.length;
4292
+ while (true) {
4293
+ checkPos = signatureKey.indexOf('.', checkPos + 1);
4294
+ if (checkPos === -1) break;
4295
+ const ancestorPath = signatureKey.substring(0, checkPos);
4296
+ const ancestorType = tempScopeNode.schema[ancestorPath];
4297
+ if (ancestorType && isDefinitelyScalarType(ancestorType)) {
4298
+ // Ancestor is scalar — check if the immediate sub-property
4299
+ // is also a standalone variable (indicating conflation)
4300
+ const afterDot = signatureKey.substring(checkPos + 1);
4301
+ const nextSep = afterDot.search(/[.\[]/);
4302
+ const subPropName =
4303
+ nextSep === -1 ? afterDot : afterDot.substring(0, nextSep);
4304
+ if (schema[subPropName] !== undefined) {
4305
+ isConflatedPath = true;
4306
+ break;
4307
+ }
4308
+ }
4309
+ }
4310
+
4311
+ if (!isConflatedPath) {
4312
+ tempScopeNode.schema[signatureKey] = schema[schemaKey];
4313
+ }
4314
+ }
4315
+ }
4316
+ }
4317
+ }
4318
+
4319
+ // Post-process: filter out conflated signature paths.
4320
+ // During phase 2 scope analysis, useState(false) conflation can create
4321
+ // bad paths like signature[0].mockWorkouts[].activity_type.showWorkoutForm
4322
+ // directly in scopeNode.schema. These flow through signatureInSchema into
4323
+ // tempScopeNode.schema without any guard. Filter them out here by checking:
4324
+ // 1. An ancestor in the path has a concrete scalar type (string, number, boolean, etc.)
4325
+ // 2. The immediate sub-property of that scalar ancestor is also a standalone
4326
+ // variable in the schema (indicating conflation, not a real property access)
4327
+ for (const key of Object.keys(tempScopeNode.schema)) {
4328
+ if (!key.startsWith('signature[')) continue;
4329
+
4330
+ // Walk through the path looking for scalar-typed ancestors
4331
+ let pos = 0;
4332
+ while (true) {
4333
+ pos = key.indexOf('.', pos + 1);
4334
+ if (pos === -1) break;
4335
+ const ancestorPath = key.substring(0, pos);
4336
+ const ancestorType = tempScopeNode.schema[ancestorPath];
4337
+ if (ancestorType && isDefinitelyScalarType(ancestorType)) {
4338
+ // Found a scalar ancestor — check if the sub-property name
4339
+ // is a standalone variable in the getSchema() result
4340
+ const afterDot = key.substring(pos + 1);
4341
+ const nextSep = afterDot.search(/[.\[]/);
4342
+ const subPropName =
4343
+ nextSep === -1 ? afterDot : afterDot.substring(0, nextSep);
4344
+ if (schema[subPropName] !== undefined) {
4345
+ delete tempScopeNode.schema[key];
4346
+ break;
4347
+ }
4348
+ }
4349
+ }
4350
+ }
4351
+
4352
+ return this.filterDuplicateKeys(tempScopeNode.schema);
3409
4353
  }
3410
4354
 
3411
4355
  getReturnValue({
@@ -3467,7 +4411,17 @@ export class ScopeDataStructure {
3467
4411
  // Include function paths even if their return value wasn't captured
3468
4412
  // This ensures methods like onAuthStateChange are included in the schema
3469
4413
  // But exclude signature entries (they should only be included via functionCallReturnValue paths)
3470
- (schema[key] === 'function' && key.indexOf('signature[') === -1),
4414
+ // Also exclude bare function call signatures - paths that are JUST a call like
4415
+ // "useCustomSizes(projectSlug)" should not be included as return values.
4416
+ // These represent "the function exists" not actual return data, and including
4417
+ // them causes nested path bugs in dependencySchemas.
4418
+ (schema[key] === 'function' &&
4419
+ key.indexOf('signature[') === -1 &&
4420
+ // Exclude bare call signatures: function calls with no dots OUTSIDE parentheses
4421
+ // e.g., "useCustomSizes(projectSlug)" is bare (exclude)
4422
+ // e.g., "loadProject({nested.property})" is bare - dots are inside args (exclude)
4423
+ // e.g., "getSupabase().auth.method()" has dots outside - method chain (include)
4424
+ !this.isBareCallSignature(key)),
3471
4425
  )
3472
4426
  .reduce(
3473
4427
  (acc, key) => {
@@ -3477,7 +4431,10 @@ export class ScopeDataStructure {
3477
4431
  for (const path in schema) {
3478
4432
  const pathParts = this.splitPath(path);
3479
4433
  if (pathParts.every((p, i) => keyParts[i] === p)) {
3480
- acc[path] = schema[path];
4434
+ // Also exclude bare call signatures from prefix paths
4435
+ if (!this.isBareCallSignature(path)) {
4436
+ acc[path] = schema[path];
4437
+ }
3481
4438
  }
3482
4439
  }
3483
4440
 
@@ -3498,7 +4455,59 @@ export class ScopeDataStructure {
3498
4455
  this.validateSchema(tempScopeNode, true, fillInUnknowns);
3499
4456
  this.onlyEquivalencies = wasOnlyEquivalencies;
3500
4457
 
3501
- return tempScopeNode.schema;
4458
+ // Remove bare call signatures from the return value schema.
4459
+ // fillInSchemaGapsAndUnknowns may add parent paths like "useCustomSizes(projectSlug)"
4460
+ // when it sees "useCustomSizes(projectSlug).functionCallReturnValue". These bare
4461
+ // call signatures represent "the function exists" not actual return data, and
4462
+ // including them causes nested path bugs in dependencySchemas.
4463
+ const resultSchema = tempScopeNode.schema;
4464
+ for (const key of Object.keys(resultSchema)) {
4465
+ if (this.isBareCallSignature(key)) {
4466
+ delete resultSchema[key];
4467
+ }
4468
+ }
4469
+
4470
+ return resultSchema;
4471
+ }
4472
+
4473
+ /**
4474
+ * Checks if a schema key is a "bare call signature" - a function call with no
4475
+ * method chain before it and no path segments after it.
4476
+ *
4477
+ * A bare call signature represents "this function exists" rather than actual
4478
+ * return data, and including them causes nested path bugs in dependencySchemas.
4479
+ *
4480
+ * Examples:
4481
+ * - "useCustomSizes(projectSlug)" -> bare (true)
4482
+ * - "loadProject({nested.property})" -> bare (dots are inside args, true)
4483
+ * - "getSupabase().auth.method()" -> not bare (has dots outside parens, false)
4484
+ * - "useProject().functionCallReturnValue" -> not bare (has path after, false)
4485
+ */
4486
+ private isBareCallSignature(key: string): boolean {
4487
+ // Must end with ) and contain ( to be a call
4488
+ if (!key.endsWith(')') || key.indexOf('(') === -1) {
4489
+ return false;
4490
+ }
4491
+
4492
+ // Check if there are any dots OUTSIDE of parentheses
4493
+ // Strip out content inside balanced parentheses, then check for dots
4494
+ let depth = 0;
4495
+ let hasDotsOutsideParens = false;
4496
+
4497
+ for (let i = 0; i < key.length; i++) {
4498
+ const char = key[i];
4499
+ if (char === '(') {
4500
+ depth++;
4501
+ } else if (char === ')') {
4502
+ depth--;
4503
+ } else if (char === '.' && depth === 0) {
4504
+ hasDotsOutsideParens = true;
4505
+ break;
4506
+ }
4507
+ }
4508
+
4509
+ // It's a bare call signature if there are no dots outside parentheses
4510
+ return !hasDotsOutsideParens;
3502
4511
  }
3503
4512
 
3504
4513
  /**
@@ -3582,59 +4591,469 @@ export class ScopeDataStructure {
3582
4591
  return scopeText;
3583
4592
  }
3584
4593
 
3585
- getEquivalentSignatureVariables() {
4594
+ getEquivalentSignatureVariables(): Record<string, string | string[]> {
3586
4595
  const scopeNode = this.scopeNodes[this.scopeTreeManager.getRootName()];
3587
4596
 
3588
- const equivalentSignatureVariables: Record<string, string> = {};
4597
+ const equivalentSignatureVariables: Record<string, string | string[]> = {};
4598
+
4599
+ // Helper to add equivalencies - accumulates into array if multiple values for same key
4600
+ // This is critical for OR expressions like `x = a || b` where x should map to both a and b
4601
+ const addEquivalency = (key: string, value: string) => {
4602
+ const existing = equivalentSignatureVariables[key];
4603
+ if (existing === undefined) {
4604
+ // First value - store as string
4605
+ equivalentSignatureVariables[key] = value;
4606
+ } else if (typeof existing === 'string') {
4607
+ if (existing !== value) {
4608
+ // Second different value - convert to array
4609
+ equivalentSignatureVariables[key] = [existing, value];
4610
+ }
4611
+ // Same value - no change needed
4612
+ } else {
4613
+ // Already an array - add if not already present
4614
+ if (!existing.includes(value)) {
4615
+ existing.push(value);
4616
+ }
4617
+ }
4618
+ };
4619
+
3589
4620
  for (const [path, equivalentValues] of Object.entries(
3590
4621
  scopeNode.equivalencies,
3591
4622
  )) {
3592
4623
  for (const equivalentValue of equivalentValues) {
4624
+ // Case 1: Props/signature equivalencies (existing behavior)
4625
+ // Maps local variable names to their signature paths
4626
+ // e.g., "propValue" -> "signature[0].prop"
3593
4627
  if (path.startsWith('signature[')) {
3594
- equivalentSignatureVariables[equivalentValue.schemaPath] = path;
4628
+ addEquivalency(equivalentValue.schemaPath, path);
3595
4629
  }
3596
- }
3597
- }
3598
4630
 
3599
- return equivalentSignatureVariables;
3600
- }
4631
+ // Case 2: Hook variable equivalencies (new behavior)
4632
+ // The equivalencies are stored as: path = variable name, schemaPath = data source
4633
+ // e.g., path = "debugFetcher", schemaPath = "useFetcher<...>().functionCallReturnValue"
4634
+ // We need to map: "debugFetcher" -> "useFetcher<...>()"
4635
+ // This enables resolving paths like "debugFetcher.state" to
4636
+ // "useFetcher<...>().state" for execution flow validation
4637
+ if (equivalentValue.schemaPath.endsWith('.functionCallReturnValue')) {
4638
+ // Extract the hook call path (everything before .functionCallReturnValue)
4639
+ let hookCallPath = equivalentValue.schemaPath.slice(
4640
+ 0,
4641
+ -'.functionCallReturnValue'.length,
4642
+ );
4643
+ // Only include if it looks like a hook call (contains parentheses)
4644
+ // and the variable name (path) is a simple identifier (no dots)
4645
+ if (hookCallPath.includes('(') && !path.includes('.')) {
4646
+ // Special case: If hookCallPath is a callback scope (cyScope pattern),
4647
+ // trace through it to find what the callback actually returns.
4648
+ // This handles useState(() => { return prop; }) patterns.
4649
+ const cyScopeMatch = hookCallPath.match(/^(cyScope\d+)\(\)$/);
4650
+ if (cyScopeMatch) {
4651
+ // Use the equivalency database to trace the callback's return value
4652
+ // to its actual source (e.g., viewModeFromUrl -> segments -> params -> useParams)
4653
+ const dbEntry = this.getEquivalenciesDatabaseEntry(
4654
+ scopeNode.name, // Component scope
4655
+ path, // variable name (e.g., viewMode)
4656
+ );
4657
+ if (dbEntry?.sourceCandidates?.length > 0) {
4658
+ // Use the traced source instead of the callback scope
4659
+ hookCallPath = dbEntry.sourceCandidates[0].schemaPath;
4660
+ }
4661
+ }
4662
+ addEquivalency(path, hookCallPath);
4663
+ }
4664
+ }
3601
4665
 
3602
- getVariableInfo(
3603
- variableName: string,
3604
- scopeName?: string,
3605
- final?: boolean,
3606
- ): VariableInfo | undefined {
3607
- const scopeNode = this.getScopeOrFunctionCallInfo(
3608
- scopeName ?? this.scopeTreeManager.getRootName(),
3609
- );
3610
- if (!scopeNode) return;
4666
+ // Case 3: Destructured variables from local variables
4667
+ // e.g., const { scenarios } = currentEntityAnalysis;
4668
+ // This creates: path = "scenarios", schemaPath = "currentEntityAnalysis.scenarios"
4669
+ // We need to map: "scenarios" -> "currentEntityAnalysis.scenarios"
4670
+ // AND resolve transitively if currentEntityAnalysis is itself equivalent to a hook call
4671
+ if (
4672
+ !path.includes('.') && // path is a simple identifier
4673
+ !equivalentValue.schemaPath.startsWith('signature[') && // not a signature path
4674
+ !equivalentValue.schemaPath.endsWith('.functionCallReturnValue') // not already handled above
4675
+ ) {
4676
+ // Skip bare "returnValue" from child scopes — this is the child's return value,
4677
+ // not a meaningful data source path in the parent scope
4678
+ if (
4679
+ equivalentValue.schemaPath === 'returnValue' &&
4680
+ equivalentValue.scopeNodeName !==
4681
+ this.scopeTreeManager.getRootName()
4682
+ ) {
4683
+ continue;
4684
+ }
4685
+ // Add equivalency (will accumulate if multiple values for OR expressions)
4686
+ addEquivalency(path, equivalentValue.schemaPath);
4687
+ }
3611
4688
 
3612
- let equivalents = scopeNode.equivalencies[variableName];
4689
+ // Case 4: Child component prop mappings (Fix 22)
4690
+ // When parent renders <ChildComponent prop={value} />, we get equivalencies like:
4691
+ // path = "ChildComponent().signature[0].prop"
4692
+ // schemaPath = "value" (the variable passed as the prop)
4693
+ // We need to include these so translateChildPathToParent can work.
4694
+ // Pattern: ComponentName().signature[N] or ComponentName().signature[N].propName
4695
+ if (
4696
+ path.includes('().signature[') &&
4697
+ !equivalentValue.schemaPath.includes('()') // schemaPath is a simple variable, not a function call
4698
+ ) {
4699
+ addEquivalency(path, equivalentValue.schemaPath);
4700
+ }
3613
4701
 
3614
- if (!equivalents || equivalents.length === 0) {
3615
- equivalents = [
3616
- {
3617
- id: -1,
3618
- scopeNodeName: scopeNode.name,
3619
- schemaPath: variableName,
3620
- equivalencyReason: 'missing equivalency',
3621
- },
3622
- ];
4702
+ // Case 5: Destructured function parameters (Fix 25)
4703
+ // When a function has destructured props: function Comp({ propA, propB }: Props)
4704
+ // We get equivalencies like:
4705
+ // path = "propA" (the destructured variable name)
4706
+ // schemaPath = "signature[0].propA" (the signature path)
4707
+ // We need to map: "propA" -> "signature[0].propA"
4708
+ // This enables translateChildPathToParent to resolve child variable paths
4709
+ // to their signature paths when merging execution flows.
4710
+ if (
4711
+ !path.includes('.') && // path is a simple identifier (destructured prop name)
4712
+ equivalentValue.schemaPath.startsWith('signature[') // schemaPath IS a signature path
4713
+ ) {
4714
+ addEquivalency(path, equivalentValue.schemaPath);
4715
+ }
4716
+
4717
+ // Case 7: Method calls on variables that result in .functionCallReturnValue (Fix 33)
4718
+ // When we have patterns like:
4719
+ // path = "segments" (simple identifier)
4720
+ // schemaPath = "splat.split('/').functionCallReturnValue"
4721
+ // This is a method call on a variable (not a hook call), but we still need to
4722
+ // track it so transitive resolution can resolve `splat` to its actual source.
4723
+ // E.g., if splat -> useParams().functionCallReturnValue['*'], then
4724
+ // segments -> useParams().functionCallReturnValue['*'].split('/').functionCallReturnValue
4725
+ if (
4726
+ !path.includes('.') && // path is a simple identifier
4727
+ equivalentValue.schemaPath.endsWith('.functionCallReturnValue') && // ends with function return
4728
+ equivalentValue.schemaPath.includes('.') // has property access (method call)
4729
+ ) {
4730
+ // Check if this looks like a method call on a variable (not a hook call)
4731
+ // Hook calls look like: hookName() or hookName<T>()
4732
+ // Method calls look like: variable.method() or variable.method<T>()
4733
+ const hookCallPath = equivalentValue.schemaPath.slice(
4734
+ 0,
4735
+ -'.functionCallReturnValue'.length,
4736
+ );
4737
+ // If it's a method call (contains a dot before the parenthesis), include it
4738
+ const dotBeforeParen = hookCallPath.indexOf('.');
4739
+ const parenPos = hookCallPath.indexOf('(');
4740
+ if (dotBeforeParen !== -1 && dotBeforeParen < parenPos) {
4741
+ // This is a method call like "splat.split('/')", not a hook call
4742
+ addEquivalency(path, equivalentValue.schemaPath);
4743
+ }
4744
+ }
4745
+ }
3623
4746
  }
3624
4747
 
3625
- const relevantSchema = equivalents.reduce(
3626
- (acc, eq) => {
3627
- const relevantSchema = this.getSchema({
3628
- scopeName: eq.scopeNodeName,
3629
- });
4748
+ // Case 6: Collect JSX child prop equivalencies from child scopes (Fix 26)
4749
+ // When a parent component renders <ChildComponent prop={value} />, the JSX
4750
+ // return statement may be in a child scope (e.g., cyScope2). The equivalencies
4751
+ // like ChildComponent().signature[0].prop -> value get stored in that child scope.
4752
+ // But translateChildPathToParent needs to find them from the parent scope's context.
4753
+ // So we collect Case 4 patterns from ALL child scopes that belong to this root scope.
4754
+ const rootName = this.scopeTreeManager.getRootName();
4755
+ for (const [scopeName, childScopeNode] of Object.entries(this.scopeNodes)) {
4756
+ // Skip the root scope (already processed above)
4757
+ if (scopeName === rootName) continue;
4758
+
4759
+ // Only include scopes that are children of the root (their tree includes root)
4760
+ if (!childScopeNode.tree?.includes(rootName)) continue;
4761
+
4762
+ // Look for Case 4 patterns in the child scope
4763
+ for (const [path, equivalentValues] of Object.entries(
4764
+ childScopeNode.equivalencies || {},
4765
+ )) {
4766
+ for (const equivalentValue of equivalentValues) {
4767
+ // Case 4 pattern: ChildComponent().signature[0].propName -> parentVariable
4768
+ if (
4769
+ path.includes('().signature[') &&
4770
+ !equivalentValue.schemaPath.includes('()') // schemaPath is a simple variable
4771
+ ) {
4772
+ // Only add if not already present from the root scope
4773
+ // Root scope values take precedence over child scope values
4774
+ if (!(path in equivalentSignatureVariables)) {
4775
+ addEquivalency(path, equivalentValue.schemaPath);
4776
+ }
4777
+ }
4778
+ }
4779
+ }
4780
+ }
3630
4781
 
3631
- if (!relevantSchema) return acc;
4782
+ // Transitive resolution: Resolve variable chains through multiple levels
4783
+ // E.g., analysis → currentEntityAnalysis → useLoaderData().functionCallReturnValue.currentEntityAnalysis
4784
+ // We need multiple passes because resolutions can depend on each other
4785
+ const maxIterations = 5; // Prevent infinite loops
4786
+
4787
+ // Helper function to resolve a single source path using equivalencies
4788
+ const resolveSourcePath = (
4789
+ sourcePath: string,
4790
+ equivMap: Record<string, string | string[]>,
4791
+ ): string | null => {
4792
+ // Extract base variable from the path
4793
+ const dotIndex = sourcePath.indexOf('.');
4794
+ const bracketIndex = sourcePath.indexOf('[');
4795
+
4796
+ let baseVar: string;
4797
+ let rest: string;
4798
+
4799
+ if (dotIndex === -1 && bracketIndex === -1) {
4800
+ baseVar = sourcePath;
4801
+ rest = '';
4802
+ } else if (dotIndex === -1) {
4803
+ baseVar = sourcePath.slice(0, bracketIndex);
4804
+ rest = sourcePath.slice(bracketIndex);
4805
+ } else if (bracketIndex === -1) {
4806
+ baseVar = sourcePath.slice(0, dotIndex);
4807
+ rest = sourcePath.slice(dotIndex);
4808
+ } else {
4809
+ const firstIndex = Math.min(dotIndex, bracketIndex);
4810
+ baseVar = sourcePath.slice(0, firstIndex);
4811
+ rest = sourcePath.slice(firstIndex);
4812
+ }
3632
4813
 
3633
- const filterdSchema = this.filterAndConvertSchema({
3634
- filterPath: eq.schemaPath,
3635
- newPath: variableName,
3636
- schema: relevantSchema,
3637
- });
4814
+ // Look up the base variable in equivalencies
4815
+ if (baseVar in equivMap && equivMap[baseVar] !== sourcePath) {
4816
+ const baseResolved = equivMap[baseVar];
4817
+ // Skip if baseResolved is an array (handle later)
4818
+ if (Array.isArray(baseResolved)) return null;
4819
+ // If it resolves to a signature path, build the full resolved path
4820
+ if (
4821
+ baseResolved.startsWith('signature[') ||
4822
+ baseResolved.includes('()')
4823
+ ) {
4824
+ if (baseResolved.endsWith('()')) {
4825
+ return baseResolved + '.functionCallReturnValue' + rest;
4826
+ }
4827
+ return baseResolved + rest;
4828
+ }
4829
+ }
4830
+ return null;
4831
+ };
4832
+
4833
+ for (let iteration = 0; iteration < maxIterations; iteration++) {
4834
+ let changed = false;
4835
+
4836
+ for (const [varName, sourcePathOrArray] of Object.entries(
4837
+ equivalentSignatureVariables,
4838
+ )) {
4839
+ // Handle arrays (OR expressions) by resolving each element
4840
+ if (Array.isArray(sourcePathOrArray)) {
4841
+ const resolvedArray: string[] = [];
4842
+ let arrayChanged = false;
4843
+ for (const sourcePath of sourcePathOrArray) {
4844
+ // Try to resolve this path using transitive resolution
4845
+ const resolved = resolveSourcePath(
4846
+ sourcePath,
4847
+ equivalentSignatureVariables,
4848
+ );
4849
+ if (resolved && resolved !== sourcePath) {
4850
+ resolvedArray.push(resolved);
4851
+ arrayChanged = true;
4852
+ } else {
4853
+ resolvedArray.push(sourcePath);
4854
+ }
4855
+ }
4856
+ if (arrayChanged) {
4857
+ equivalentSignatureVariables[varName] = resolvedArray;
4858
+ changed = true;
4859
+ }
4860
+ continue;
4861
+ }
4862
+ const sourcePath = sourcePathOrArray;
4863
+
4864
+ // Skip if already fully resolved (contains function call syntax)
4865
+ // BUT first check for computed value patterns that need resolution (Fix 28)
4866
+ // AND method call patterns that need base variable resolution (Fix 33)
4867
+ if (sourcePath.includes('()')) {
4868
+ // Fix 28: Handle computed value patterns with dependency arrays
4869
+ // Patterns like `functionName(arg, [dep1, dep2, ...])` are NOT controllable
4870
+ // data sources. We trace through the dependencies to find controllable sources.
4871
+ const bracketStart = sourcePath.indexOf('[');
4872
+ const bracketEnd = sourcePath.lastIndexOf(']');
4873
+
4874
+ if (bracketStart !== -1 && bracketEnd > bracketStart) {
4875
+ const arrayContent = sourcePath.slice(bracketStart + 1, bracketEnd);
4876
+ const items = arrayContent.split(',').map((s) => s.trim());
4877
+
4878
+ // Only process if this looks like a dependency array:
4879
+ // multiple items that are all simple identifiers (not numbers or expressions)
4880
+ const isIdentifier = (s: string) =>
4881
+ /^\w+$/.test(s) && !/^\d+$/.test(s);
4882
+ if (items.length > 1 && items.every(isIdentifier)) {
4883
+ // Look for a dependency that's already resolved to a controllable source
4884
+ for (const dep of items) {
4885
+ if (dep in equivalentSignatureVariables) {
4886
+ const resolvedDep = equivalentSignatureVariables[dep];
4887
+ // Use if it's a controllable path (contains hook call)
4888
+ // and is NOT another unresolved computed pattern (has comma-separated deps)
4889
+ const hasCommaInBrackets =
4890
+ resolvedDep.includes('[') &&
4891
+ resolvedDep.includes(',') &&
4892
+ resolvedDep.indexOf(',') > resolvedDep.indexOf('[');
4893
+ if (resolvedDep.includes('()') && !hasCommaInBrackets) {
4894
+ // Computed value is typically an element from an array
4895
+ equivalentSignatureVariables[varName] = resolvedDep + '[]';
4896
+ changed = true;
4897
+ break;
4898
+ }
4899
+ }
4900
+ }
4901
+ }
4902
+ }
4903
+
4904
+ // Fix 33: Handle method call patterns on variables
4905
+ // Patterns like: "splat.split('/').functionCallReturnValue"
4906
+ // We need to resolve the base variable (splat) to its actual source
4907
+ // Check if this is a method call on a variable (dot before first parenthesis)
4908
+ const dotIndex = sourcePath.indexOf('.');
4909
+ const parenIndex = sourcePath.indexOf('(');
4910
+ if (
4911
+ dotIndex !== -1 &&
4912
+ dotIndex < parenIndex &&
4913
+ !sourcePath.startsWith('use') // Not a hook call like useState()
4914
+ ) {
4915
+ // Extract the base variable (before the first dot)
4916
+ const baseVar = sourcePath.slice(0, dotIndex);
4917
+ const rest = sourcePath.slice(dotIndex); // includes ".method(...).functionCallReturnValue"
4918
+
4919
+ // Check if the base variable can be resolved
4920
+ if (
4921
+ baseVar in equivalentSignatureVariables &&
4922
+ baseVar !== varName
4923
+ ) {
4924
+ const baseResolved = equivalentSignatureVariables[baseVar];
4925
+ // Skip if baseResolved is an array (OR expression)
4926
+ if (Array.isArray(baseResolved)) continue;
4927
+ // Only resolve if the base resolved to something useful (contains () or .)
4928
+ if (baseResolved.includes('()') || baseResolved.includes('.')) {
4929
+ const newPath = baseResolved + rest;
4930
+ if (newPath !== equivalentSignatureVariables[varName]) {
4931
+ equivalentSignatureVariables[varName] = newPath;
4932
+ changed = true;
4933
+ }
4934
+ }
4935
+ }
4936
+ }
4937
+
4938
+ // Fix 38: Handle cyScope lazy initializer return values
4939
+ // When we have viewMode -> cyScope20(), trace through to find what cyScope20 returns.
4940
+ // The lazy initializer's return value should be the controllable data source.
4941
+ // Pattern: cyScopeN() where N is a number
4942
+ const cyScopeMatch = sourcePath.match(/^(cyScope\d+)\(\)$/);
4943
+ if (cyScopeMatch) {
4944
+ const cyScopeName = cyScopeMatch[1];
4945
+ const cyScopeNode = this.scopeNodes[cyScopeName];
4946
+
4947
+ if (cyScopeNode?.equivalencies) {
4948
+ // Look for returnValue equivalency in the cyScope
4949
+ const returnValueEquivs =
4950
+ cyScopeNode.equivalencies['returnValue'];
4951
+ if (returnValueEquivs && returnValueEquivs.length > 0) {
4952
+ // Get the first return value source
4953
+ const returnSource = returnValueEquivs[0].schemaPath;
4954
+
4955
+ // If the return source is a simple variable (not a complex path),
4956
+ // resolve varName directly to that variable
4957
+ if (
4958
+ returnSource &&
4959
+ !returnSource.includes('(') &&
4960
+ !returnSource.includes('[')
4961
+ ) {
4962
+ // Update varName to point to the return source
4963
+ if (equivalentSignatureVariables[varName] !== returnSource) {
4964
+ equivalentSignatureVariables[varName] = returnSource;
4965
+ changed = true;
4966
+ }
4967
+ }
4968
+ }
4969
+ }
4970
+ }
4971
+
4972
+ continue;
4973
+ }
4974
+
4975
+ // Check if the source path starts with a variable that's also in the map
4976
+ const dotIndex = sourcePath.indexOf('.');
4977
+ let baseVar: string;
4978
+ let rest: string;
4979
+
4980
+ if (dotIndex > 0) {
4981
+ // Path has a dot: "a.b.c" -> baseVar="a", rest=".b.c"
4982
+ baseVar = sourcePath.slice(0, dotIndex);
4983
+ rest = sourcePath.slice(dotIndex); // includes the leading dot
4984
+ } else {
4985
+ // Path is a simple identifier: "currentEntityAnalysis" -> baseVar="currentEntityAnalysis", rest=""
4986
+ baseVar = sourcePath;
4987
+ rest = '';
4988
+ }
4989
+
4990
+ if (baseVar in equivalentSignatureVariables && baseVar !== varName) {
4991
+ // Handle array case (OR expressions) - use first element
4992
+ const rawBaseResolved = equivalentSignatureVariables[baseVar];
4993
+ const baseResolved = Array.isArray(rawBaseResolved)
4994
+ ? rawBaseResolved[0]
4995
+ : rawBaseResolved;
4996
+ if (!baseResolved) continue;
4997
+ // If the base resolves to a hook call, add .functionCallReturnValue
4998
+ if (baseResolved.endsWith('()')) {
4999
+ const newPath = baseResolved + '.functionCallReturnValue' + rest;
5000
+ if (newPath !== equivalentSignatureVariables[varName]) {
5001
+ equivalentSignatureVariables[varName] = newPath;
5002
+ changed = true;
5003
+ }
5004
+ } else if (baseResolved !== sourcePath) {
5005
+ const newPath = baseResolved + rest;
5006
+ if (newPath !== equivalentSignatureVariables[varName]) {
5007
+ equivalentSignatureVariables[varName] = newPath;
5008
+ changed = true;
5009
+ }
5010
+ }
5011
+ }
5012
+ }
5013
+
5014
+ // Stop if no changes were made in this iteration
5015
+ if (!changed) break;
5016
+ }
5017
+
5018
+ return equivalentSignatureVariables;
5019
+ }
5020
+
5021
+ getVariableInfo(
5022
+ variableName: string,
5023
+ scopeName?: string,
5024
+ final?: boolean,
5025
+ ): VariableInfo | undefined {
5026
+ const scopeNode = this.getScopeOrFunctionCallInfo(
5027
+ scopeName ?? this.scopeTreeManager.getRootName(),
5028
+ );
5029
+ if (!scopeNode) return;
5030
+
5031
+ let equivalents = scopeNode.equivalencies[variableName];
5032
+
5033
+ if (!equivalents || equivalents.length === 0) {
5034
+ equivalents = [
5035
+ {
5036
+ id: -1,
5037
+ scopeNodeName: scopeNode.name,
5038
+ schemaPath: variableName,
5039
+ equivalencyReason: 'missing equivalency',
5040
+ },
5041
+ ];
5042
+ }
5043
+
5044
+ const relevantSchema = equivalents.reduce(
5045
+ (acc, eq) => {
5046
+ const relevantSchema = this.getSchema({
5047
+ scopeName: eq.scopeNodeName,
5048
+ });
5049
+
5050
+ if (!relevantSchema) return acc;
5051
+
5052
+ const filterdSchema = this.filterAndConvertSchema({
5053
+ filterPath: eq.schemaPath,
5054
+ newPath: variableName,
5055
+ schema: relevantSchema,
5056
+ });
3638
5057
 
3639
5058
  return { ...acc, ...filterdSchema };
3640
5059
  },
@@ -3664,9 +5083,109 @@ export class ScopeDataStructure {
3664
5083
  // Replace cyScope placeholders in all external function call data
3665
5084
  // This ensures call signatures and schema paths use actual callback text
3666
5085
  // instead of internal cyScope names, preventing mock data merge conflicts.
3667
- return this.externalFunctionCalls.map((efc) =>
3668
- this.cleanCyScopeFromFunctionCallInfo(efc),
3669
- );
5086
+ const rootScopeName = this.scopeTreeManager.getRootName();
5087
+ const rootSchema = this.scopeNodes[rootScopeName]?.schema ?? {};
5088
+
5089
+ return this.externalFunctionCalls.map((efc) => {
5090
+ const cleaned = this.cleanCyScopeFromFunctionCallInfo(efc);
5091
+ return this.filterConflatedExternalPaths(cleaned, rootSchema);
5092
+ });
5093
+ }
5094
+
5095
+ /**
5096
+ * Filters out conflated paths from external function call schemas.
5097
+ *
5098
+ * When multiple useState(false) calls create equivalency conflation during
5099
+ * Phase 1 analysis, standalone boolean state variables (like showWorkoutForm,
5100
+ * showGoalForm) can bleed into external function call schemas as sub-properties
5101
+ * of unrelated data fields (like data[].activity_type.showWorkoutForm).
5102
+ *
5103
+ * Detection: group sub-properties by parent path. If 2+ sub-properties of
5104
+ * the same parent all match standalone root scope variable names, treat them
5105
+ * as conflation artifacts and remove them.
5106
+ */
5107
+ private filterConflatedExternalPaths(
5108
+ efc: FunctionCallInfo,
5109
+ rootSchema: Record<string, string>,
5110
+ ): FunctionCallInfo {
5111
+ // Build a set of top-level root scope variable names (simple names, no dots/brackets)
5112
+ const topLevelRootVars = new Set<string>();
5113
+ for (const key of Object.keys(rootSchema)) {
5114
+ if (!key.includes('.') && !key.includes('[')) {
5115
+ topLevelRootVars.add(key);
5116
+ }
5117
+ }
5118
+
5119
+ if (topLevelRootVars.size === 0) return efc;
5120
+
5121
+ // Group sub-property matches by their parent path.
5122
+ // For a path like "...data[].activity_type.showWorkoutForm",
5123
+ // parent = "...data[].activity_type", child = "showWorkoutForm"
5124
+ const parentToConflatedKeys = new Map<string, string[]>();
5125
+
5126
+ for (const key of Object.keys(efc.schema)) {
5127
+ const lastDot = key.lastIndexOf('.');
5128
+ if (lastDot === -1) continue;
5129
+
5130
+ const parent = key.substring(0, lastDot);
5131
+ const child = key.substring(lastDot + 1);
5132
+
5133
+ // Skip array access or function call patterns
5134
+ if (child.includes('[') || child.includes('(')) continue;
5135
+
5136
+ // Only consider paths inside array element chains (contains []).
5137
+ // Direct children of functionCallReturnValue are legitimate destructured
5138
+ // return values, not conflation. Conflation happens deeper in the chain
5139
+ // when array element fields get corrupted sub-properties.
5140
+ if (!parent.includes('[')) continue;
5141
+
5142
+ if (topLevelRootVars.has(child)) {
5143
+ if (!parentToConflatedKeys.has(parent)) {
5144
+ parentToConflatedKeys.set(parent, []);
5145
+ }
5146
+ parentToConflatedKeys.get(parent)!.push(key);
5147
+ }
5148
+ }
5149
+
5150
+ // Only filter when 2+ sub-properties of the same parent match root scope vars.
5151
+ // This threshold avoids false positives from coincidental name matches.
5152
+ const keysToRemove = new Set<string>();
5153
+ const parentsToRestore = new Set<string>();
5154
+
5155
+ for (const [parent, conflatedKeys] of parentToConflatedKeys) {
5156
+ if (conflatedKeys.length >= 2) {
5157
+ for (const key of conflatedKeys) {
5158
+ keysToRemove.add(key);
5159
+ }
5160
+ parentsToRestore.add(parent);
5161
+ }
5162
+ }
5163
+
5164
+ if (keysToRemove.size === 0) return efc;
5165
+
5166
+ // Create a new schema without the conflated paths
5167
+ const newSchema: Record<string, string> = {};
5168
+ for (const [key, value] of Object.entries(efc.schema)) {
5169
+ if (keysToRemove.has(key)) continue;
5170
+
5171
+ // Restore parent type: if it was changed to "object" because of conflated
5172
+ // sub-properties, and now all those sub-properties are removed, change it
5173
+ // back to "unknown" (we don't know the original type)
5174
+ if (parentsToRestore.has(key) && value === 'object') {
5175
+ // Check if there are any remaining sub-properties
5176
+ const hasRemainingSubProps = Object.keys(efc.schema).some(
5177
+ (k) =>
5178
+ !keysToRemove.has(k) &&
5179
+ k !== key &&
5180
+ (k.startsWith(key + '.') || k.startsWith(key + '[')),
5181
+ );
5182
+ newSchema[key] = hasRemainingSubProps ? value : 'unknown';
5183
+ } else {
5184
+ newSchema[key] = value;
5185
+ }
5186
+ }
5187
+
5188
+ return { ...efc, schema: newSchema };
3670
5189
  }
3671
5190
 
3672
5191
  /**
@@ -3794,7 +5313,7 @@ export class ScopeDataStructure {
3794
5313
  path: string;
3795
5314
  conditionType: 'truthiness' | 'comparison' | 'switch';
3796
5315
  comparedValues?: string[];
3797
- location: 'if' | 'ternary' | 'logical-and' | 'switch';
5316
+ location: 'if' | 'ternary' | 'logical-and' | 'switch' | 'unconditional';
3798
5317
  }>
3799
5318
  >,
3800
5319
  ): void {
@@ -3819,29 +5338,149 @@ export class ScopeDataStructure {
3819
5338
  }
3820
5339
 
3821
5340
  /**
3822
- * Get enriched conditional usages with source tracing.
3823
- * Uses explainPath to trace each local variable back to its data source.
5341
+ * Add conditional effects from AST analysis.
5342
+ * Called during scope analysis to collect all setter calls inside conditionals.
3824
5343
  */
3825
- getEnrichedConditionalUsages(): Record<
5344
+ addConditionalEffects(
5345
+ effects: import('../astScopes/types').ConditionalEffect[],
5346
+ ): void {
5347
+ // Add effects, avoiding duplicates based on effect stateVariable and condition paths
5348
+ for (const effect of effects) {
5349
+ const exists = this.rawConditionalEffects.some((existing) => {
5350
+ // Same effect target (stateVariable + value)
5351
+ const sameEffect =
5352
+ existing.effect.stateVariable === effect.effect.stateVariable &&
5353
+ existing.effect.value === effect.effect.value;
5354
+ if (!sameEffect) return false;
5355
+
5356
+ // Same condition(s)
5357
+ if (existing.condition && effect.condition) {
5358
+ return (
5359
+ existing.condition.path === effect.condition.path &&
5360
+ existing.condition.requiredValue === effect.condition.requiredValue
5361
+ );
5362
+ }
5363
+ if (existing.conditions && effect.conditions) {
5364
+ if (existing.conditions.length !== effect.conditions.length)
5365
+ return false;
5366
+ return existing.conditions.every((ec, i) => {
5367
+ const newCond = effect.conditions![i];
5368
+ return (
5369
+ ec.path === newCond.path &&
5370
+ ec.requiredValue === newCond.requiredValue
5371
+ );
5372
+ });
5373
+ }
5374
+ return false;
5375
+ });
5376
+ if (!exists) {
5377
+ this.rawConditionalEffects.push(effect);
5378
+ }
5379
+ }
5380
+ }
5381
+
5382
+ /**
5383
+ * Get conditional effects collected during analysis.
5384
+ */
5385
+ getConditionalEffects(): import('../astScopes/types').ConditionalEffect[] {
5386
+ return this.rawConditionalEffects;
5387
+ }
5388
+
5389
+ /**
5390
+ * Add compound conditionals from AST analysis.
5391
+ * Called during scope analysis to collect grouped conditions (e.g., a && b && c).
5392
+ */
5393
+ addCompoundConditionals(
5394
+ compounds: import('../astScopes/types').CompoundConditional[],
5395
+ ): void {
5396
+ // Add compounds, avoiding duplicates based on chainId
5397
+ for (const compound of compounds) {
5398
+ const exists = this.rawCompoundConditionals.some(
5399
+ (existing) => existing.chainId === compound.chainId,
5400
+ );
5401
+ if (!exists) {
5402
+ this.rawCompoundConditionals.push(compound);
5403
+ }
5404
+ }
5405
+ }
5406
+
5407
+ /**
5408
+ * Get compound conditionals collected during analysis.
5409
+ */
5410
+ getCompoundConditionals(): import('../astScopes/types').CompoundConditional[] {
5411
+ return this.rawCompoundConditionals;
5412
+ }
5413
+
5414
+ /**
5415
+ * Add child boundary gating conditions from AST analysis.
5416
+ * These track which conditions must be true for a child component to render.
5417
+ */
5418
+ addChildBoundaryGatingConditions(
5419
+ conditions: Record<string, import('../astScopes/types').ConditionalUsage[]>,
5420
+ ): void {
5421
+ for (const [childName, usages] of Object.entries(conditions)) {
5422
+ if (!this.rawChildBoundaryGatingConditions[childName]) {
5423
+ this.rawChildBoundaryGatingConditions[childName] = [];
5424
+ }
5425
+ // Add usages, avoiding duplicates
5426
+ for (const usage of usages) {
5427
+ const exists = this.rawChildBoundaryGatingConditions[childName].some(
5428
+ (existing) =>
5429
+ existing.path === usage.path &&
5430
+ existing.conditionType === usage.conditionType &&
5431
+ existing.isNegated === usage.isNegated,
5432
+ );
5433
+ if (!exists) {
5434
+ this.rawChildBoundaryGatingConditions[childName].push(usage);
5435
+ }
5436
+ }
5437
+ }
5438
+ }
5439
+
5440
+ /**
5441
+ * Get enriched child boundary gating conditions with source tracing.
5442
+ * Similar to getEnrichedConditionalUsages but for gating conditions.
5443
+ */
5444
+ getEnrichedChildBoundaryGatingConditions(): Record<
3826
5445
  string,
3827
- Array<{
3828
- path: string;
3829
- conditionType: 'truthiness' | 'comparison' | 'switch';
3830
- comparedValues?: string[];
3831
- location: 'if' | 'ternary' | 'logical-and' | 'switch';
3832
- sourceDataPath?: string;
3833
- }>
5446
+ EnrichedConditionalUsage[]
3834
5447
  > {
3835
- const enriched: Record<
3836
- string,
3837
- Array<{
3838
- path: string;
3839
- conditionType: 'truthiness' | 'comparison' | 'switch';
3840
- comparedValues?: string[];
3841
- location: 'if' | 'ternary' | 'logical-and' | 'switch';
3842
- sourceDataPath?: string;
3843
- }>
3844
- > = {};
5448
+ const enriched: Record<string, EnrichedConditionalUsage[]> = {};
5449
+ const rootScopeName = this.scopeTreeManager.getTree().name;
5450
+
5451
+ for (const [childName, usages] of Object.entries(
5452
+ this.rawChildBoundaryGatingConditions,
5453
+ )) {
5454
+ enriched[childName] = usages.map((usage) => {
5455
+ // Try to trace this path back to a data source
5456
+ const explanation = this.explainPath(rootScopeName, usage.path);
5457
+
5458
+ let sourceDataPath: string | undefined;
5459
+ if (explanation.source) {
5460
+ sourceDataPath = `${explanation.source.scope}.${explanation.source.path}`;
5461
+ }
5462
+
5463
+ return {
5464
+ ...usage,
5465
+ sourceDataPath,
5466
+ };
5467
+ });
5468
+ }
5469
+
5470
+ return enriched;
5471
+ }
5472
+
5473
+ /**
5474
+ * Get enriched conditional usages with source tracing.
5475
+ * Uses explainPath to trace each local variable back to its data source.
5476
+ * Preserves all fields from the raw conditional usages including derivedFrom.
5477
+ */
5478
+ getEnrichedConditionalUsages(): Record<string, EnrichedConditionalUsage[]> {
5479
+ const enriched: Record<string, EnrichedConditionalUsage[]> = {};
5480
+
5481
+ console.log(
5482
+ `[getEnrichedConditionalUsages] Processing ${Object.keys(this.rawConditionalUsages).length} conditional paths: [${Object.keys(this.rawConditionalUsages).join(', ')}]`,
5483
+ );
3845
5484
 
3846
5485
  for (const [path, usages] of Object.entries(this.rawConditionalUsages)) {
3847
5486
  // Try to trace this path back to a data source
@@ -3851,10 +5490,69 @@ export class ScopeDataStructure {
3851
5490
 
3852
5491
  let sourceDataPath: string | undefined;
3853
5492
  if (explanation.source) {
3854
- // Build the full data path: scopeName.path
3855
- sourceDataPath = `${explanation.source.scope}.${explanation.source.path}`;
5493
+ const { scope, path: sourcePath } = explanation.source;
5494
+
5495
+ // Build initial path — avoid redundant prefix when path already contains the scope call
5496
+ let fullPath: string;
5497
+ if (sourcePath.startsWith(`${scope}(`)) {
5498
+ fullPath = sourcePath;
5499
+ } else {
5500
+ fullPath = `${scope}.${sourcePath}`;
5501
+ }
5502
+
5503
+ sourceDataPath = fullPath;
5504
+ console.log(
5505
+ `[getEnrichedConditionalUsages] "${path}" explainPath → scope="${scope}", sourcePath="${sourcePath}" → sourceDataPath="${sourceDataPath}"`,
5506
+ );
5507
+ } else {
5508
+ console.log(
5509
+ `[getEnrichedConditionalUsages] "${path}" explainPath → no source found`,
5510
+ );
5511
+ }
5512
+
5513
+ // If explainPath didn't find a useful external source (e.g., it traced to
5514
+ // useState or just to the component scope itself), check sourceEquivalencies
5515
+ // for an external function call source like a fetch call
5516
+ const hasExternalSource = sourceDataPath?.includes(
5517
+ '.functionCallReturnValue',
5518
+ );
5519
+ if (!hasExternalSource) {
5520
+ console.log(
5521
+ `[getEnrichedConditionalUsages] "${path}" no external source (sourceDataPath="${sourceDataPath}"), checking sourceEquivalencies fallback...`,
5522
+ );
5523
+ const sourceEquiv = this.getSourceEquivalencies();
5524
+ const returnValueKey = `returnValue.${path}`;
5525
+ const sources = sourceEquiv[returnValueKey];
5526
+ if (sources) {
5527
+ console.log(
5528
+ `[getEnrichedConditionalUsages] "${path}" sourceEquivalencies["${returnValueKey}"] has ${sources.length} sources: [${sources.map((s: { schemaPath: string }) => s.schemaPath).join(', ')}]`,
5529
+ );
5530
+ const externalSource = sources.find(
5531
+ (s: { schemaPath: string }) =>
5532
+ s.schemaPath.includes('.functionCallReturnValue') &&
5533
+ !s.schemaPath.startsWith('useState('),
5534
+ );
5535
+ if (externalSource) {
5536
+ console.log(
5537
+ `[getEnrichedConditionalUsages] "${path}" sourceEquivalencies fallback found external source: "${externalSource.schemaPath}"`,
5538
+ );
5539
+ sourceDataPath = externalSource.schemaPath;
5540
+ } else {
5541
+ console.log(
5542
+ `[getEnrichedConditionalUsages] "${path}" sourceEquivalencies fallback found no external function call source`,
5543
+ );
5544
+ }
5545
+ } else {
5546
+ console.log(
5547
+ `[getEnrichedConditionalUsages] "${path}" sourceEquivalencies["${returnValueKey}"] not found`,
5548
+ );
5549
+ }
3856
5550
  }
3857
5551
 
5552
+ console.log(
5553
+ `[getEnrichedConditionalUsages] "${path}" FINAL sourceDataPath="${sourceDataPath ?? '(none)'}" (${usages.length} usages)`,
5554
+ );
5555
+
3858
5556
  enriched[path] = usages.map((usage) => ({
3859
5557
  ...usage,
3860
5558
  sourceDataPath,
@@ -3864,10 +5562,37 @@ export class ScopeDataStructure {
3864
5562
  return enriched;
3865
5563
  }
3866
5564
 
5565
+ /**
5566
+ * Add JSX rendering usages from AST analysis.
5567
+ * These track arrays rendered via .map() and strings interpolated in JSX.
5568
+ */
5569
+ addJsxRenderingUsages(
5570
+ usages: import('../astScopes/types').JsxRenderingUsage[],
5571
+ ): void {
5572
+ // Add usages, avoiding duplicates based on path and renderingType
5573
+ for (const usage of usages) {
5574
+ const exists = this.rawJsxRenderingUsages.some(
5575
+ (existing) =>
5576
+ existing.path === usage.path &&
5577
+ existing.renderingType === usage.renderingType,
5578
+ );
5579
+ if (!exists) {
5580
+ this.rawJsxRenderingUsages.push(usage);
5581
+ }
5582
+ }
5583
+ }
5584
+
5585
+ /**
5586
+ * Get JSX rendering usages collected during analysis.
5587
+ */
5588
+ getJsxRenderingUsages(): import('../astScopes/types').JsxRenderingUsage[] {
5589
+ return this.rawJsxRenderingUsages;
5590
+ }
5591
+
3867
5592
  toSerializable(): SerializableDataStructure {
3868
- // Helper to clean cyScope from a string
5593
+ // Helper to clean cyScope and cyDuplicateKey from a string for output
3869
5594
  const cleanCyScope = (str: string): string =>
3870
- this.replaceCyScopeInString(str);
5595
+ this.replaceCyScopeInString(str).replace(/::cyDuplicateKey\d+::/g, '');
3871
5596
 
3872
5597
  // Helper to convert ScopeVariable to SerializableScopeVariable (with cyScope cleaned)
3873
5598
  const toSerializableVariable = (
@@ -3937,26 +5662,405 @@ export class ScopeDataStructure {
3937
5662
 
3938
5663
  // Convert external function calls - use getExternalFunctionCalls() which cleans cyScope
3939
5664
  const cleanedExternalCalls = this.getExternalFunctionCalls();
5665
+
5666
+ // Get root scope schema for building per-variable return value schemas
5667
+ const rootScopeName = this.scopeTreeManager.getRootName();
5668
+ const rootScope = this.scopeNodes[rootScopeName];
5669
+ const rootSchema = rootScope?.schema ?? {};
5670
+
3940
5671
  const externalFunctionCalls: SerializableFunctionCallInfo[] =
3941
- cleanedExternalCalls.map((efc) => ({
3942
- name: efc.name,
3943
- callSignature: efc.callSignature,
3944
- callScope: efc.callScope,
3945
- schema: efc.schema,
3946
- equivalencies: efc.equivalencies
3947
- ? Object.entries(efc.equivalencies).reduce(
3948
- (acc, [key, vars]) => {
3949
- // Clean cyScope from the key as well as variable properties
3950
- acc[cleanCyScope(key)] = toSerializableVariable(vars);
3951
- return acc;
3952
- },
3953
- {} as Record<string, SerializableScopeVariable[]>,
3954
- )
3955
- : undefined,
3956
- allCallSignatures: efc.allCallSignatures,
3957
- receivingVariableNames: efc.receivingVariableNames,
3958
- callSignatureToVariable: efc.callSignatureToVariable,
3959
- }));
5672
+ cleanedExternalCalls.map((efc) => {
5673
+ // Build perVariableSchemas from perCallSignatureSchemas when available.
5674
+ // This preserves distinct schemas per variable when the same function is called
5675
+ // multiple times with DIFFERENT call signatures (e.g., different type parameters).
5676
+ //
5677
+ // When field accesses happen in child scopes (like JSX expressions), the
5678
+ // rootSchema doesn't contain the detailed paths - they end up in child scope
5679
+ // schemas. Using perCallSignatureSchemas ensures we get the correct schema
5680
+ // for each call, regardless of where field accesses occur.
5681
+ let perVariableSchemas:
5682
+ | Record<string, Record<string, string>>
5683
+ | undefined;
5684
+
5685
+ // Use perCallSignatureSchemas only when:
5686
+ // 1. It exists and has distinct entries for different call signatures
5687
+ // 2. The number of distinct call signatures >= number of receiving variables
5688
+ //
5689
+ // This prevents using it when all calls have the same signature (e.g., useFetcher() x 2)
5690
+ // because in that case, perCallSignatureSchemas only has one entry.
5691
+ const numCallSignatures = efc.perCallSignatureSchemas
5692
+ ? Object.keys(efc.perCallSignatureSchemas).length
5693
+ : 0;
5694
+ const numReceivingVars = efc.receivingVariableNames?.length ?? 0;
5695
+ const hasDistinctSchemas =
5696
+ numCallSignatures >= numReceivingVars && numCallSignatures > 1;
5697
+
5698
+ // CASE 1: Multiple call signatures with distinct schemas - use indexed variable names
5699
+ if (
5700
+ hasDistinctSchemas &&
5701
+ efc.perCallSignatureSchemas &&
5702
+ efc.callSignatureToVariable
5703
+ ) {
5704
+ perVariableSchemas = {};
5705
+
5706
+ // Build a reverse map: variable -> array of call signatures (in order)
5707
+ // This handles the case where the same variable name is reused for different calls
5708
+ const varToCallSigs: Record<string, string[]> = {};
5709
+ for (const [callSig, varName] of Object.entries(
5710
+ efc.callSignatureToVariable,
5711
+ )) {
5712
+ if (!varToCallSigs[varName]) {
5713
+ varToCallSigs[varName] = [];
5714
+ }
5715
+ varToCallSigs[varName].push(callSig);
5716
+ }
5717
+
5718
+ // Track how many times each variable name has been seen
5719
+ const varNameCounts: Record<string, number> = {};
5720
+
5721
+ // For each receiving variable, get its original schema from perCallSignatureSchemas
5722
+ for (const varName of efc.receivingVariableNames ?? []) {
5723
+ const occurrence = varNameCounts[varName] ?? 0;
5724
+ varNameCounts[varName] = occurrence + 1;
5725
+
5726
+ const callSigs = varToCallSigs[varName];
5727
+ // Use the nth call signature for the nth occurrence of this variable
5728
+ const callSig = callSigs?.[occurrence];
5729
+
5730
+ if (callSig && efc.perCallSignatureSchemas[callSig]) {
5731
+ // Use indexed key if this variable name is reused (e.g., fetcher, fetcher[1])
5732
+ const key =
5733
+ occurrence === 0 ? varName : `${varName}[${occurrence}]`;
5734
+ // Clone the schema to avoid shared references
5735
+ perVariableSchemas[key] = {
5736
+ ...efc.perCallSignatureSchemas[callSig],
5737
+ };
5738
+ }
5739
+ }
5740
+
5741
+ // Only include if we have entries for ALL receiving variables
5742
+ if (Object.keys(perVariableSchemas).length < numReceivingVars) {
5743
+ // Not all variables have schemas - fall back to rootSchema extraction
5744
+ perVariableSchemas = undefined;
5745
+ } else {
5746
+ // Also check that at least one schema is non-empty
5747
+ // Bug fix: perCallSignatureSchemas may have entries but with empty schemas {}
5748
+ // In this case, we should fall through to Fallback which uses rootSchema
5749
+ const hasNonEmptySchema = Object.values(perVariableSchemas).some(
5750
+ (schema) => Object.keys(schema).length > 0,
5751
+ );
5752
+ if (!hasNonEmptySchema) {
5753
+ perVariableSchemas = undefined;
5754
+ }
5755
+ }
5756
+ }
5757
+
5758
+ // CASE 2: Single call signature with single variable - use perCallSignatureSchemas directly
5759
+ // This handles parameterized calls like useFetcher<ConfigData>() where each is a separate efc entry
5760
+ if (
5761
+ !perVariableSchemas &&
5762
+ efc.perCallSignatureSchemas &&
5763
+ numCallSignatures === 1 &&
5764
+ numReceivingVars === 1
5765
+ ) {
5766
+ const varName = efc.receivingVariableNames![0];
5767
+ const callSig = Object.keys(efc.perCallSignatureSchemas)[0];
5768
+ const schema = efc.perCallSignatureSchemas[callSig];
5769
+ if (schema && Object.keys(schema).length > 0) {
5770
+ perVariableSchemas = { [varName]: { ...schema } };
5771
+ }
5772
+ }
5773
+
5774
+ // CASE 3: Extract from efc.schema when perCallSignatureSchemas is missing or empty
5775
+ // This handles two scenarios:
5776
+ // 1. Parameterized calls that create SEPARATE efc entries (no perCallSignatureSchemas)
5777
+ // 2. Destructuring where perCallSignatureSchemas exists but has EMPTY schemas
5778
+ //
5779
+ // When useFetcher<ConfigData>() and useFetcher<SettingsData>() are called, they create separate
5780
+ // efc entries because getFunctionCallRoot preserves type parameters. Each entry has its own
5781
+ // `schema` field, but due to variable reassignment, the schema may be contaminated with paths
5782
+ // from other calls (the tracer attributes field accesses to ALL equivalencies).
5783
+ //
5784
+ // Solution: Filter efc.schema to only include paths that match THIS entry's call signature.
5785
+ // The schema paths include the full call signature prefix, so we can filter by it.
5786
+ //
5787
+ // Example: ConfigData entry has paths like:
5788
+ // "useFetcher<{ data: ConfigData | null }>().functionCallReturnValue.data.data.theme"
5789
+ // But also (contaminated):
5790
+ // "useFetcher<{ data: ConfigData | null }>().functionCallReturnValue.data.data.notifications"
5791
+ //
5792
+ // We filter to only keep paths that should belong to THIS call by checking if the
5793
+ // receiving variable's equivalency points to this call's return value.
5794
+ //
5795
+ // BUG FIX: The old condition `!efc.perCallSignatureSchemas` was FALSE when the object
5796
+ // existed (even with empty schemas), causing this case to be skipped. We now also check
5797
+ // if all schemas in perCallSignatureSchemas are empty.
5798
+ const hasNonEmptyPerCallSignatureSchemas =
5799
+ efc.perCallSignatureSchemas &&
5800
+ Object.values(efc.perCallSignatureSchemas).some(
5801
+ (schema) => Object.keys(schema).length > 0,
5802
+ );
5803
+
5804
+ // Build the call signature prefix that paths should start with
5805
+ const callSigPrefix = `${efc.callSignature}.functionCallReturnValue`;
5806
+
5807
+ // Check if efc.schema has variable-specific paths (indicating destructuring).
5808
+ // Destructuring: const { entities, gitStatus } = useLoaderData()
5809
+ // - efc.schema has paths like: useLoaderData().functionCallReturnValue.entities...
5810
+ // Multiple calls: const x = useFetcher(); const y = useFetcher();
5811
+ // - efc.schema has paths like: useFetcher().functionCallReturnValue.data...
5812
+ // CASE 3 should only run for destructuring (variable-specific paths exist).
5813
+ const hasVariableSpecificPaths = (
5814
+ efc.receivingVariableNames ?? []
5815
+ ).some((varName) =>
5816
+ Object.keys(efc.schema).some((path) =>
5817
+ path.startsWith(`${callSigPrefix}.${varName}`),
5818
+ ),
5819
+ );
5820
+
5821
+ if (
5822
+ !perVariableSchemas &&
5823
+ !hasNonEmptyPerCallSignatureSchemas &&
5824
+ numReceivingVars >= 1 &&
5825
+ hasVariableSpecificPaths
5826
+ ) {
5827
+ // Filter efc.schema to only include paths matching this call signature
5828
+ const filteredSchema: Record<string, string> = {};
5829
+ for (const [path, type] of Object.entries(efc.schema)) {
5830
+ if (path.startsWith(callSigPrefix) || path === efc.callSignature) {
5831
+ filteredSchema[path] = type;
5832
+ }
5833
+ }
5834
+
5835
+ // Build perVariableSchemas from the filtered schema
5836
+ // For destructuring, filter paths by variable name
5837
+ if (Object.keys(filteredSchema).length > 0) {
5838
+ perVariableSchemas = {};
5839
+ for (const varName of efc.receivingVariableNames ?? []) {
5840
+ // For destructuring, extract only paths specific to this variable
5841
+ const varSpecificPrefix = `${callSigPrefix}.${varName}`;
5842
+ const varSchema: Record<string, string> = {};
5843
+
5844
+ for (const [path, type] of Object.entries(filteredSchema)) {
5845
+ if (path.startsWith(varSpecificPrefix)) {
5846
+ // Transform: useLoaderData().functionCallReturnValue.entities.sha
5847
+ // -> functionCallReturnValue.entities.sha (keep the variable name)
5848
+ const suffix = path.slice(callSigPrefix.length);
5849
+ const returnValuePath = `functionCallReturnValue${suffix}`;
5850
+ varSchema[returnValuePath] = type;
5851
+ } else if (path === efc.callSignature) {
5852
+ // Include the function call type itself
5853
+ varSchema[path] = type;
5854
+ }
5855
+ }
5856
+ if (Object.keys(varSchema).length > 0) {
5857
+ perVariableSchemas[varName] = varSchema;
5858
+ }
5859
+ }
5860
+ // Only include if we have entries
5861
+ if (Object.keys(perVariableSchemas).length === 0) {
5862
+ perVariableSchemas = undefined;
5863
+ }
5864
+ }
5865
+ }
5866
+
5867
+ // Fallback: extract from root scope schema when perCallSignatureSchemas is not available
5868
+ // or doesn't have distinct entries for each variable.
5869
+ // This works when field accesses are in the root scope.
5870
+ if (
5871
+ !perVariableSchemas &&
5872
+ efc.receivingVariableNames &&
5873
+ efc.receivingVariableNames.length > 0
5874
+ ) {
5875
+ perVariableSchemas = {};
5876
+ for (const varName of efc.receivingVariableNames) {
5877
+ const varSchema: Record<string, string> = {};
5878
+ for (const [path, type] of Object.entries(rootSchema)) {
5879
+ // Check if path starts with this variable name
5880
+ if (
5881
+ path === varName ||
5882
+ path.startsWith(varName + '.') ||
5883
+ path.startsWith(varName + '[')
5884
+ ) {
5885
+ // Transform to functionCallReturnValue format
5886
+ // e.g., userFetcher.data.id -> functionCallReturnValue.data.id
5887
+ const suffix = path.slice(varName.length);
5888
+ const returnValuePath = `functionCallReturnValue${suffix}`;
5889
+ varSchema[returnValuePath] = type;
5890
+ }
5891
+ }
5892
+ if (Object.keys(varSchema).length > 0) {
5893
+ // Clean the variable name when using as key in output
5894
+ perVariableSchemas[cleanCyScope(varName)] = varSchema;
5895
+ }
5896
+ }
5897
+ // Only include if we have any entries
5898
+ if (Object.keys(perVariableSchemas).length === 0) {
5899
+ perVariableSchemas = undefined;
5900
+ }
5901
+ }
5902
+
5903
+ // Enrich the schema with inferred types by applying fillInSchemaGapsAndUnknowns.
5904
+ // This ensures the serialized schema has the same type inference as getReturnValue().
5905
+ // Without this, evidence like "entities[].analyses: array" becomes "unknown".
5906
+ const enrichedSchema = { ...efc.schema };
5907
+ const tempScopeNode = {
5908
+ name: efc.name,
5909
+ schema: enrichedSchema,
5910
+ equivalencies: efc.equivalencies ?? {},
5911
+ };
5912
+ fillInSchemaGapsAndUnknowns(tempScopeNode, true);
5913
+
5914
+ return {
5915
+ name: efc.name,
5916
+ callSignature: efc.callSignature,
5917
+ callScope: efc.callScope,
5918
+ schema: enrichedSchema,
5919
+ equivalencies: efc.equivalencies
5920
+ ? Object.entries(efc.equivalencies).reduce(
5921
+ (acc, [key, vars]) => {
5922
+ // Clean cyScope from the key as well as variable properties
5923
+ acc[cleanCyScope(key)] = toSerializableVariable(vars);
5924
+ return acc;
5925
+ },
5926
+ {} as Record<string, SerializableScopeVariable[]>,
5927
+ )
5928
+ : undefined,
5929
+ allCallSignatures: efc.allCallSignatures,
5930
+ receivingVariableNames: efc.receivingVariableNames?.map(cleanCyScope),
5931
+ callSignatureToVariable: efc.callSignatureToVariable
5932
+ ? Object.fromEntries(
5933
+ Object.entries(efc.callSignatureToVariable).map(([k, v]) => [
5934
+ k,
5935
+ cleanCyScope(v),
5936
+ ]),
5937
+ )
5938
+ : undefined,
5939
+ perVariableSchemas,
5940
+ };
5941
+ });
5942
+
5943
+ // POST-PROCESSING: Deduplicate schemas across parameterized calls to same base function
5944
+ // When useFetcher<ConfigData>() and useFetcher<SettingsData>() are called, they create
5945
+ // separate entries. Due to variable reassignment, BOTH entries may have ALL fields.
5946
+ // We deduplicate by assigning each field to ONLY ONE entry based on order of appearance.
5947
+ //
5948
+ // Strategy: Fields that appear first in order belong to the first entry,
5949
+ // fields that appear later belong to later entries (split evenly).
5950
+ const deduplicateParameterizedEntries = (
5951
+ entries: typeof externalFunctionCalls,
5952
+ ): typeof externalFunctionCalls => {
5953
+ // Group entries by base function name (without type parameters)
5954
+ const groups = new Map<string, typeof externalFunctionCalls>();
5955
+ for (const entry of entries) {
5956
+ // Extract base function name by stripping type parameters
5957
+ // e.g., "useFetcher<{ data: ConfigData | null }>" -> "useFetcher"
5958
+ const baseName = entry.name.replace(/<.*>$/, '');
5959
+ const group = groups.get(baseName) || [];
5960
+ group.push(entry);
5961
+ groups.set(baseName, group);
5962
+ }
5963
+
5964
+ // Process groups with multiple parameterized entries
5965
+ for (const [, group] of groups) {
5966
+ if (group.length <= 1) continue;
5967
+
5968
+ // Check if these are parameterized calls (have type parameters in name)
5969
+ const hasTypeParams = group.every((e) => e.name.includes('<'));
5970
+ if (!hasTypeParams) continue;
5971
+
5972
+ // Collect ALL unique field suffixes across all entries (in order of first appearance)
5973
+ // Field suffix is the path after functionCallReturnValue, e.g., ".data.data.theme"
5974
+ const allFieldSuffixes: string[] = [];
5975
+ for (const entry of group) {
5976
+ if (!entry.perVariableSchemas) continue;
5977
+ for (const varSchema of Object.values(entry.perVariableSchemas)) {
5978
+ for (const path of Object.keys(varSchema)) {
5979
+ // Skip the base "functionCallReturnValue" entry
5980
+ if (path === 'functionCallReturnValue') continue;
5981
+ // Extract field suffix
5982
+ const match = path.match(/functionCallReturnValue(.+)/);
5983
+ if (!match) continue;
5984
+ const fieldSuffix = match[1];
5985
+ if (!allFieldSuffixes.includes(fieldSuffix)) {
5986
+ allFieldSuffixes.push(fieldSuffix);
5987
+ }
5988
+ }
5989
+ }
5990
+ }
5991
+
5992
+ // Assign fields to entries: split evenly based on order
5993
+ // First N/2 fields go to first entry, remaining go to second entry
5994
+ const fieldToEntryMap = new Map<string, number>();
5995
+ const fieldsPerEntry = Math.ceil(
5996
+ allFieldSuffixes.length / group.length,
5997
+ );
5998
+ for (let i = 0; i < allFieldSuffixes.length; i++) {
5999
+ const fieldSuffix = allFieldSuffixes[i];
6000
+ const entryIdx = Math.min(
6001
+ Math.floor(i / fieldsPerEntry),
6002
+ group.length - 1,
6003
+ );
6004
+ fieldToEntryMap.set(fieldSuffix, entryIdx);
6005
+ }
6006
+
6007
+ // Filter each entry's perVariableSchemas to only include its assigned fields
6008
+ for (let i = 0; i < group.length; i++) {
6009
+ const entry = group[i];
6010
+ if (!entry.perVariableSchemas) continue;
6011
+
6012
+ const filteredPerVarSchemas: Record<
6013
+ string,
6014
+ Record<string, string>
6015
+ > = {};
6016
+ for (const [varName, varSchema] of Object.entries(
6017
+ entry.perVariableSchemas,
6018
+ )) {
6019
+ const filteredVarSchema: Record<string, string> = {};
6020
+ for (const [path, type] of Object.entries(varSchema)) {
6021
+ // Always keep the base functionCallReturnValue
6022
+ if (path === 'functionCallReturnValue') {
6023
+ filteredVarSchema[path] = type;
6024
+ continue;
6025
+ }
6026
+ // Extract field suffix
6027
+ const match = path.match(/functionCallReturnValue(.+)/);
6028
+ if (!match) {
6029
+ // Keep non-field paths
6030
+ filteredVarSchema[path] = type;
6031
+ continue;
6032
+ }
6033
+ const fieldSuffix = match[1];
6034
+ // Only include if this entry owns this field
6035
+ if (fieldToEntryMap.get(fieldSuffix) === i) {
6036
+ filteredVarSchema[path] = type;
6037
+ }
6038
+ }
6039
+ if (Object.keys(filteredVarSchema).length > 0) {
6040
+ filteredPerVarSchemas[varName] = filteredVarSchema;
6041
+ }
6042
+ }
6043
+ entry.perVariableSchemas =
6044
+ Object.keys(filteredPerVarSchemas).length > 0
6045
+ ? filteredPerVarSchemas
6046
+ : undefined;
6047
+ }
6048
+ }
6049
+
6050
+ return entries;
6051
+ };
6052
+
6053
+ // Apply deduplication
6054
+ const deduplicatedExternalFunctionCalls = deduplicateParameterizedEntries(
6055
+ externalFunctionCalls,
6056
+ );
6057
+
6058
+ // IMPORTANT: Get equivalent signature variables BEFORE calling getFunctionResult
6059
+ // because getFunctionResult calls validateSchema which may remove equivalencies
6060
+ // during the finalize step (e.g., cleanNonObjectFunctions removes method call
6061
+ // equivalencies like `segments -> splat.split('/').functionCallReturnValue`).
6062
+ // Fix 33: Move this call before any schema validation to preserve method call chains.
6063
+ const equivalentSignatureVariables = this.getEquivalentSignatureVariables();
3960
6064
 
3961
6065
  // Get root function result
3962
6066
  const rootFunction = getFunctionResult();
@@ -3967,9 +6071,6 @@ export class ScopeDataStructure {
3967
6071
  functionResults[efc.name] = getFunctionResult(efc.name);
3968
6072
  }
3969
6073
 
3970
- // Get equivalent signature variables
3971
- const equivalentSignatureVariables = this.getEquivalentSignatureVariables();
3972
-
3973
6074
  const environmentVariables = this.getEnvironmentVariables();
3974
6075
 
3975
6076
  // Get enriched conditional usages with source tracing
@@ -3979,13 +6080,43 @@ export class ScopeDataStructure {
3979
6080
  ? enrichedConditionalUsages
3980
6081
  : undefined;
3981
6082
 
6083
+ // Get conditional effects (setter calls inside conditionals)
6084
+ const conditionalEffects =
6085
+ this.rawConditionalEffects.length > 0
6086
+ ? this.rawConditionalEffects
6087
+ : undefined;
6088
+
6089
+ // Get compound conditionals (grouped conditions that must all be true)
6090
+ const compoundConditionals =
6091
+ this.rawCompoundConditionals.length > 0
6092
+ ? this.rawCompoundConditionals
6093
+ : undefined;
6094
+
6095
+ // Get child boundary gating conditions
6096
+ const enrichedGatingConditions =
6097
+ this.getEnrichedChildBoundaryGatingConditions();
6098
+ const childBoundaryGatingConditions =
6099
+ Object.keys(enrichedGatingConditions).length > 0
6100
+ ? enrichedGatingConditions
6101
+ : undefined;
6102
+
6103
+ // Get JSX rendering usages (arrays via .map(), strings via interpolation)
6104
+ const jsxRenderingUsages =
6105
+ this.rawJsxRenderingUsages.length > 0
6106
+ ? this.rawJsxRenderingUsages
6107
+ : undefined;
6108
+
3982
6109
  return {
3983
- externalFunctionCalls,
6110
+ externalFunctionCalls: deduplicatedExternalFunctionCalls,
3984
6111
  rootFunction,
3985
6112
  functionResults,
3986
6113
  equivalentSignatureVariables,
3987
6114
  environmentVariables,
3988
6115
  conditionalUsages,
6116
+ conditionalEffects,
6117
+ compoundConditionals,
6118
+ childBoundaryGatingConditions,
6119
+ jsxRenderingUsages,
3989
6120
  };
3990
6121
  }
3991
6122