ai-first-cli 1.2.2 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (475) hide show
  1. package/CHANGELOG.md +292 -6
  2. package/README.md +24 -4
  3. package/dist/analyzers/symbols.d.ts.map +1 -1
  4. package/dist/analyzers/symbols.js +9 -7
  5. package/dist/analyzers/symbols.js.map +1 -1
  6. package/dist/analyzers/techStack.d.ts.map +1 -1
  7. package/dist/analyzers/techStack.js +198 -3
  8. package/dist/analyzers/techStack.js.map +1 -1
  9. package/dist/commands/ai-first.d.ts.map +1 -1
  10. package/dist/commands/ai-first.js +14 -13
  11. package/dist/commands/ai-first.js.map +1 -1
  12. package/dist/core/adapters/baseAdapter.d.ts +1 -1
  13. package/dist/core/adapters/baseAdapter.d.ts.map +1 -1
  14. package/dist/core/adapters/baseAdapter.js +50 -12
  15. package/dist/core/adapters/baseAdapter.js.map +1 -1
  16. package/dist/core/analysis/architectureDetector.d.ts +37 -0
  17. package/dist/core/analysis/architectureDetector.d.ts.map +1 -0
  18. package/dist/core/analysis/architectureDetector.js +316 -0
  19. package/dist/core/analysis/architectureDetector.js.map +1 -0
  20. package/dist/core/analysis/callGraphBuilder.d.ts +37 -0
  21. package/dist/core/analysis/callGraphBuilder.d.ts.map +1 -0
  22. package/dist/core/analysis/callGraphBuilder.js +101 -0
  23. package/dist/core/analysis/callGraphBuilder.js.map +1 -0
  24. package/dist/core/analysis/dependencyAnalyzer.d.ts +45 -0
  25. package/dist/core/analysis/dependencyAnalyzer.d.ts.map +1 -0
  26. package/dist/core/analysis/dependencyAnalyzer.js +98 -0
  27. package/dist/core/analysis/dependencyAnalyzer.js.map +1 -0
  28. package/dist/core/analysis/index.d.ts +5 -0
  29. package/dist/core/analysis/index.d.ts.map +1 -0
  30. package/dist/core/analysis/index.js +5 -0
  31. package/dist/core/analysis/index.js.map +1 -0
  32. package/dist/core/analysis/inheritanceAnalyzer.d.ts +35 -0
  33. package/dist/core/analysis/inheritanceAnalyzer.d.ts.map +1 -0
  34. package/dist/core/analysis/inheritanceAnalyzer.js +115 -0
  35. package/dist/core/analysis/inheritanceAnalyzer.js.map +1 -0
  36. package/dist/core/ccp.d.ts.map +1 -1
  37. package/dist/core/ccp.js +3 -2
  38. package/dist/core/ccp.js.map +1 -1
  39. package/dist/core/generation/aiContextGenerator.d.ts +71 -0
  40. package/dist/core/generation/aiContextGenerator.d.ts.map +1 -0
  41. package/dist/core/generation/aiContextGenerator.js +217 -0
  42. package/dist/core/generation/aiContextGenerator.js.map +1 -0
  43. package/dist/core/generation/architectureGenerator.d.ts +17 -0
  44. package/dist/core/generation/architectureGenerator.d.ts.map +1 -0
  45. package/dist/core/generation/architectureGenerator.js +160 -0
  46. package/dist/core/generation/architectureGenerator.js.map +1 -0
  47. package/dist/core/generation/flowGenerator.d.ts +52 -0
  48. package/dist/core/generation/flowGenerator.d.ts.map +1 -0
  49. package/dist/core/generation/flowGenerator.js +164 -0
  50. package/dist/core/generation/flowGenerator.js.map +1 -0
  51. package/dist/core/generation/index.d.ts +4 -0
  52. package/dist/core/generation/index.d.ts.map +1 -0
  53. package/dist/core/generation/index.js +4 -0
  54. package/dist/core/generation/index.js.map +1 -0
  55. package/dist/core/hierarchyGenerator.d.ts.map +1 -1
  56. package/dist/core/hierarchyGenerator.js +3 -2
  57. package/dist/core/hierarchyGenerator.js.map +1 -1
  58. package/dist/core/parsers/index.d.ts +20 -0
  59. package/dist/core/parsers/index.d.ts.map +1 -0
  60. package/dist/core/parsers/index.js +76 -0
  61. package/dist/core/parsers/index.js.map +1 -0
  62. package/dist/core/parsers/pythonParser.d.ts +37 -0
  63. package/dist/core/parsers/pythonParser.d.ts.map +1 -0
  64. package/dist/core/parsers/pythonParser.js +229 -0
  65. package/dist/core/parsers/pythonParser.js.map +1 -0
  66. package/dist/core/parsers/typescriptParser.d.ts +54 -0
  67. package/dist/core/parsers/typescriptParser.d.ts.map +1 -0
  68. package/dist/core/parsers/typescriptParser.js +291 -0
  69. package/dist/core/parsers/typescriptParser.js.map +1 -0
  70. package/dist/core/pipeline.d.ts +42 -0
  71. package/dist/core/pipeline.d.ts.map +1 -0
  72. package/dist/core/pipeline.js +172 -0
  73. package/dist/core/pipeline.js.map +1 -0
  74. package/dist/core/semanticContexts.d.ts.map +1 -1
  75. package/dist/core/semanticContexts.js +23 -61
  76. package/dist/core/semanticContexts.js.map +1 -1
  77. package/dist/utils/constants.d.ts +46 -0
  78. package/dist/utils/constants.d.ts.map +1 -0
  79. package/dist/utils/constants.js +67 -0
  80. package/dist/utils/constants.js.map +1 -0
  81. package/install.sh +143 -17
  82. package/package.json +1 -1
  83. package/run-all-tests.sh +184 -0
  84. package/src/analyzers/symbols.ts +12 -7
  85. package/src/analyzers/techStack.ts +203 -3
  86. package/src/commands/ai-first.ts +14 -13
  87. package/src/core/adapters/baseAdapter.ts +61 -12
  88. package/src/core/analysis/architectureDetector.ts +487 -0
  89. package/src/core/analysis/callGraphBuilder.ts +158 -0
  90. package/src/core/analysis/dependencyAnalyzer.ts +167 -0
  91. package/src/core/analysis/index.ts +28 -0
  92. package/src/core/analysis/inheritanceAnalyzer.ts +169 -0
  93. package/src/core/ccp.ts +3 -2
  94. package/src/core/generation/aiContextGenerator.ts +335 -0
  95. package/src/core/generation/architectureGenerator.ts +200 -0
  96. package/src/core/generation/flowGenerator.ts +238 -0
  97. package/src/core/generation/index.ts +16 -0
  98. package/src/core/hierarchyGenerator.ts +3 -2
  99. package/src/core/parsers/index.ts +99 -0
  100. package/src/core/parsers/pythonParser.ts +302 -0
  101. package/src/core/parsers/typescriptParser.ts +445 -0
  102. package/src/core/pipeline.ts +241 -0
  103. package/src/core/semanticContexts.ts +25 -67
  104. package/src/utils/constants.ts +78 -0
  105. package/tests/analysis.test.ts +283 -0
  106. package/tests/architectureDetector.test.ts +137 -0
  107. package/tests/generation.test.ts +216 -0
  108. package/tests/parserRegistry.test.ts +139 -0
  109. package/tests/pipeline.integration.test.ts +245 -0
  110. package/tests/pythonParser.test.ts +210 -0
  111. package/tests/typescriptParser.test.ts +197 -0
  112. package/.ai-dev/index.db +0 -0
  113. package/ANALISIS_COMPLETO.md +0 -424
  114. package/ANALISIS_MEJORAS.md +0 -327
  115. package/BUGS.md +0 -455
  116. package/PLAN_MEJORAS.md +0 -216
  117. package/STATUS_ADAPTADORES +0 -126
  118. package/TEST_RESULTS.md +0 -198
  119. package/TEST_RESULTS_COMPARATIVE.md +0 -159
  120. package/TEST_RESULTS_COMPLETE.md +0 -127
  121. package/TEST_RESULTS_COMPREHENSIVE.md +0 -208
  122. package/TEST_RESULTS_PHASE1.md +0 -420
  123. package/ai-context/ai_context.md +0 -130
  124. package/ai-context/ai_rules.md +0 -54
  125. package/ai-context/architecture.md +0 -136
  126. package/ai-context/cache.json +0 -2349
  127. package/ai-context/ccp/jira-123/context.json +0 -7
  128. package/ai-context/context/features/commands.json +0 -18
  129. package/ai-context/context/features/src.json +0 -61
  130. package/ai-context/context/features/test-projects.json +0 -69
  131. package/ai-context/context/flows/account.json +0 -9
  132. package/ai-context/context/flows/ai-first.json +0 -9
  133. package/ai-context/context/flows/api.json +0 -9
  134. package/ai-context/context/flows/auth.json +0 -13
  135. package/ai-context/context/flows/category.json +0 -12
  136. package/ai-context/context/flows/comment.json +0 -16
  137. package/ai-context/context/flows/dashboard.json +0 -9
  138. package/ai-context/context/flows/doctor.json +0 -9
  139. package/ai-context/context/flows/explore.json +0 -9
  140. package/ai-context/context/flows/login.json +0 -9
  141. package/ai-context/context/flows/opportunity.json +0 -9
  142. package/ai-context/context/flows/post.json +0 -18
  143. package/ai-context/context/flows/routes.json +0 -19
  144. package/ai-context/context/flows/user.json +0 -20
  145. package/ai-context/context/flows/users.json +0 -9
  146. package/ai-context/context/flows/views.json +0 -14
  147. package/ai-context/context/repo.json +0 -56
  148. package/ai-context/context/utils.json +0 -7
  149. package/ai-context/conventions.md +0 -53
  150. package/ai-context/dependencies.json +0 -2946
  151. package/ai-context/embeddings.json +0 -23828
  152. package/ai-context/entrypoints.md +0 -42
  153. package/ai-context/files.json +0 -2944
  154. package/ai-context/git/commit-activity.json +0 -8646
  155. package/ai-context/git/recent-features.json +0 -1
  156. package/ai-context/git/recent-files.json +0 -52
  157. package/ai-context/git/recent-flows.json +0 -1
  158. package/ai-context/graph/knowledge-graph.json +0 -44314
  159. package/ai-context/graph/module-graph.json +0 -866
  160. package/ai-context/graph/symbol-graph.json +0 -200622
  161. package/ai-context/graph/symbol-references.json +0 -6778
  162. package/ai-context/hierarchy.json +0 -20
  163. package/ai-context/index-state.json +0 -4340
  164. package/ai-context/index.db +0 -0
  165. package/ai-context/modules.json +0 -532
  166. package/ai-context/project.json +0 -30
  167. package/ai-context/repo_map.json +0 -5818
  168. package/ai-context/repo_map.md +0 -1327
  169. package/ai-context/schema.json +0 -5
  170. package/ai-context/summary.md +0 -42
  171. package/ai-context/symbols.json +0 -7
  172. package/ai-context/tech_stack.md +0 -46
  173. package/ai-context/tools.json +0 -10
  174. package/test-projects/django-app/.ai-dev/index.db +0 -0
  175. package/test-projects/django-app/ai-context/ai_context.md +0 -92
  176. package/test-projects/django-app/ai-context/ai_rules.md +0 -47
  177. package/test-projects/django-app/ai-context/architecture.md +0 -57
  178. package/test-projects/django-app/ai-context/cache.json +0 -169
  179. package/test-projects/django-app/ai-context/context/flows/views.json +0 -10
  180. package/test-projects/django-app/ai-context/conventions.md +0 -51
  181. package/test-projects/django-app/ai-context/dependencies.json +0 -312
  182. package/test-projects/django-app/ai-context/entrypoints.md +0 -4
  183. package/test-projects/django-app/ai-context/files.json +0 -209
  184. package/test-projects/django-app/ai-context/graph/knowledge-graph.json +0 -36
  185. package/test-projects/django-app/ai-context/graph/module-graph.json +0 -145
  186. package/test-projects/django-app/ai-context/graph/symbol-graph.json +0 -1488
  187. package/test-projects/django-app/ai-context/graph/symbol-references.json +0 -1
  188. package/test-projects/django-app/ai-context/index-state.json +0 -294
  189. package/test-projects/django-app/ai-context/index.db +0 -0
  190. package/test-projects/django-app/ai-context/modules.json +0 -35
  191. package/test-projects/django-app/ai-context/project.json +0 -11
  192. package/test-projects/django-app/ai-context/repo_map.json +0 -412
  193. package/test-projects/django-app/ai-context/repo_map.md +0 -105
  194. package/test-projects/django-app/ai-context/schema.json +0 -5
  195. package/test-projects/django-app/ai-context/summary.md +0 -15
  196. package/test-projects/django-app/ai-context/symbols.json +0 -1
  197. package/test-projects/django-app/ai-context/tech_stack.md +0 -32
  198. package/test-projects/django-app/ai-context/tools.json +0 -10
  199. package/test-projects/express-api/ai-context/ai_context.md +0 -112
  200. package/test-projects/express-api/ai-context/ai_rules.md +0 -50
  201. package/test-projects/express-api/ai-context/architecture.md +0 -62
  202. package/test-projects/express-api/ai-context/context/features/controllers.json +0 -13
  203. package/test-projects/express-api/ai-context/context/features/services.json +0 -13
  204. package/test-projects/express-api/ai-context/context/flows/auth.json +0 -12
  205. package/test-projects/express-api/ai-context/context/flows/user.json +0 -13
  206. package/test-projects/express-api/ai-context/conventions.md +0 -51
  207. package/test-projects/express-api/ai-context/dependencies.json +0 -54
  208. package/test-projects/express-api/ai-context/entrypoints.md +0 -17
  209. package/test-projects/express-api/ai-context/modules.json +0 -30
  210. package/test-projects/express-api/ai-context/project.json +0 -15
  211. package/test-projects/express-api/ai-context/repo_map.json +0 -100
  212. package/test-projects/express-api/ai-context/repo_map.md +0 -36
  213. package/test-projects/express-api/ai-context/schema.json +0 -5
  214. package/test-projects/express-api/ai-context/summary.md +0 -14
  215. package/test-projects/express-api/ai-context/symbols.json +0 -7
  216. package/test-projects/express-api/ai-context/tech_stack.md +0 -38
  217. package/test-projects/express-api/ai-context/tools.json +0 -10
  218. package/test-projects/fastapi-app/.ai-dev/index.db +0 -0
  219. package/test-projects/fastapi-app/ai-context/ai_context.md +0 -89
  220. package/test-projects/fastapi-app/ai-context/ai_rules.md +0 -47
  221. package/test-projects/fastapi-app/ai-context/architecture.md +0 -39
  222. package/test-projects/fastapi-app/ai-context/cache.json +0 -125
  223. package/test-projects/fastapi-app/ai-context/conventions.md +0 -51
  224. package/test-projects/fastapi-app/ai-context/dependencies.json +0 -244
  225. package/test-projects/fastapi-app/ai-context/entrypoints.md +0 -4
  226. package/test-projects/fastapi-app/ai-context/files.json +0 -154
  227. package/test-projects/fastapi-app/ai-context/graph/knowledge-graph.json +0 -15
  228. package/test-projects/fastapi-app/ai-context/graph/module-graph.json +0 -78
  229. package/test-projects/fastapi-app/ai-context/graph/symbol-graph.json +0 -1724
  230. package/test-projects/fastapi-app/ai-context/graph/symbol-references.json +0 -51
  231. package/test-projects/fastapi-app/ai-context/index-state.json +0 -217
  232. package/test-projects/fastapi-app/ai-context/index.db +0 -0
  233. package/test-projects/fastapi-app/ai-context/modules.json +0 -16
  234. package/test-projects/fastapi-app/ai-context/project.json +0 -9
  235. package/test-projects/fastapi-app/ai-context/repo_map.json +0 -298
  236. package/test-projects/fastapi-app/ai-context/repo_map.md +0 -74
  237. package/test-projects/fastapi-app/ai-context/schema.json +0 -5
  238. package/test-projects/fastapi-app/ai-context/summary.md +0 -12
  239. package/test-projects/fastapi-app/ai-context/symbols.json +0 -1
  240. package/test-projects/fastapi-app/ai-context/tech_stack.md +0 -32
  241. package/test-projects/fastapi-app/ai-context/tools.json +0 -10
  242. package/test-projects/flask-app/.ai-dev/index.db +0 -0
  243. package/test-projects/flask-app/ai-context/ai_context.md +0 -94
  244. package/test-projects/flask-app/ai-context/ai_rules.md +0 -47
  245. package/test-projects/flask-app/ai-context/architecture.md +0 -49
  246. package/test-projects/flask-app/ai-context/cache.json +0 -157
  247. package/test-projects/flask-app/ai-context/context/features/app.json +0 -25
  248. package/test-projects/flask-app/ai-context/context/flows/routes.json +0 -14
  249. package/test-projects/flask-app/ai-context/conventions.md +0 -51
  250. package/test-projects/flask-app/ai-context/dependencies.json +0 -298
  251. package/test-projects/flask-app/ai-context/entrypoints.md +0 -4
  252. package/test-projects/flask-app/ai-context/files.json +0 -194
  253. package/test-projects/flask-app/ai-context/graph/knowledge-graph.json +0 -60
  254. package/test-projects/flask-app/ai-context/graph/module-graph.json +0 -95
  255. package/test-projects/flask-app/ai-context/graph/symbol-graph.json +0 -1448
  256. package/test-projects/flask-app/ai-context/graph/symbol-references.json +0 -45
  257. package/test-projects/flask-app/ai-context/index-state.json +0 -273
  258. package/test-projects/flask-app/ai-context/index.db +0 -0
  259. package/test-projects/flask-app/ai-context/modules.json +0 -21
  260. package/test-projects/flask-app/ai-context/project.json +0 -13
  261. package/test-projects/flask-app/ai-context/repo_map.json +0 -400
  262. package/test-projects/flask-app/ai-context/repo_map.md +0 -98
  263. package/test-projects/flask-app/ai-context/schema.json +0 -5
  264. package/test-projects/flask-app/ai-context/summary.md +0 -13
  265. package/test-projects/flask-app/ai-context/symbols.json +0 -1
  266. package/test-projects/flask-app/ai-context/tech_stack.md +0 -32
  267. package/test-projects/flask-app/ai-context/tools.json +0 -10
  268. package/test-projects/laravel-app/.ai-dev/index.db +0 -0
  269. package/test-projects/laravel-app/ai-context/ai_context.md +0 -97
  270. package/test-projects/laravel-app/ai-context/ai_rules.md +0 -47
  271. package/test-projects/laravel-app/ai-context/architecture.md +0 -60
  272. package/test-projects/laravel-app/ai-context/cache.json +0 -161
  273. package/test-projects/laravel-app/ai-context/context/features/app.json +0 -21
  274. package/test-projects/laravel-app/ai-context/context/flows/.json +0 -9
  275. package/test-projects/laravel-app/ai-context/context/flows/category.json +0 -12
  276. package/test-projects/laravel-app/ai-context/context/flows/comment.json +0 -12
  277. package/test-projects/laravel-app/ai-context/context/flows/post.json +0 -12
  278. package/test-projects/laravel-app/ai-context/context/flows/unnamed.json +0 -9
  279. package/test-projects/laravel-app/ai-context/conventions.md +0 -51
  280. package/test-projects/laravel-app/ai-context/dependencies.json +0 -6
  281. package/test-projects/laravel-app/ai-context/entrypoints.md +0 -4
  282. package/test-projects/laravel-app/ai-context/files.json +0 -199
  283. package/test-projects/laravel-app/ai-context/graph/knowledge-graph.json +0 -98
  284. package/test-projects/laravel-app/ai-context/graph/module-graph.json +0 -30
  285. package/test-projects/laravel-app/ai-context/graph/symbol-graph.json +0 -5
  286. package/test-projects/laravel-app/ai-context/graph/symbol-references.json +0 -1
  287. package/test-projects/laravel-app/ai-context/index-state.json +0 -280
  288. package/test-projects/laravel-app/ai-context/index.db +0 -0
  289. package/test-projects/laravel-app/ai-context/modules.json +0 -29
  290. package/test-projects/laravel-app/ai-context/project.json +0 -17
  291. package/test-projects/laravel-app/ai-context/repo_map.json +0 -419
  292. package/test-projects/laravel-app/ai-context/repo_map.md +0 -106
  293. package/test-projects/laravel-app/ai-context/schema.json +0 -5
  294. package/test-projects/laravel-app/ai-context/summary.md +0 -15
  295. package/test-projects/laravel-app/ai-context/symbols.json +0 -1
  296. package/test-projects/laravel-app/ai-context/tech_stack.md +0 -34
  297. package/test-projects/laravel-app/ai-context/tools.json +0 -10
  298. package/test-projects/nestjs-backend/.ai-dev/index.db +0 -0
  299. package/test-projects/nestjs-backend/ai-context/ai_context.md +0 -111
  300. package/test-projects/nestjs-backend/ai-context/ai_rules.md +0 -52
  301. package/test-projects/nestjs-backend/ai-context/architecture.md +0 -49
  302. package/test-projects/nestjs-backend/ai-context/cache.json +0 -169
  303. package/test-projects/nestjs-backend/ai-context/context/features/src.json +0 -23
  304. package/test-projects/nestjs-backend/ai-context/context/flows/auth.controller.json +0 -14
  305. package/test-projects/nestjs-backend/ai-context/context/flows/auth.json +0 -10
  306. package/test-projects/nestjs-backend/ai-context/context/flows/users..json +0 -10
  307. package/test-projects/nestjs-backend/ai-context/context/flows/users.controller.json +0 -14
  308. package/test-projects/nestjs-backend/ai-context/context/flows/users.json +0 -10
  309. package/test-projects/nestjs-backend/ai-context/conventions.md +0 -52
  310. package/test-projects/nestjs-backend/ai-context/dependencies.json +0 -152
  311. package/test-projects/nestjs-backend/ai-context/entrypoints.md +0 -18
  312. package/test-projects/nestjs-backend/ai-context/files.json +0 -209
  313. package/test-projects/nestjs-backend/ai-context/graph/knowledge-graph.json +0 -132
  314. package/test-projects/nestjs-backend/ai-context/graph/module-graph.json +0 -29
  315. package/test-projects/nestjs-backend/ai-context/graph/symbol-graph.json +0 -304
  316. package/test-projects/nestjs-backend/ai-context/graph/symbol-references.json +0 -5
  317. package/test-projects/nestjs-backend/ai-context/index-state.json +0 -294
  318. package/test-projects/nestjs-backend/ai-context/index.db +0 -0
  319. package/test-projects/nestjs-backend/ai-context/modules.json +0 -19
  320. package/test-projects/nestjs-backend/ai-context/project.json +0 -18
  321. package/test-projects/nestjs-backend/ai-context/repo_map.json +0 -427
  322. package/test-projects/nestjs-backend/ai-context/repo_map.md +0 -104
  323. package/test-projects/nestjs-backend/ai-context/schema.json +0 -5
  324. package/test-projects/nestjs-backend/ai-context/summary.md +0 -13
  325. package/test-projects/nestjs-backend/ai-context/symbols.json +0 -1
  326. package/test-projects/nestjs-backend/ai-context/tech_stack.md +0 -38
  327. package/test-projects/nestjs-backend/ai-context/tools.json +0 -10
  328. package/test-projects/python-cli/.ai-dev/index.db +0 -0
  329. package/test-projects/python-cli/ai-context/ai_context.md +0 -95
  330. package/test-projects/python-cli/ai-context/ai_rules.md +0 -47
  331. package/test-projects/python-cli/ai-context/architecture.md +0 -55
  332. package/test-projects/python-cli/ai-context/cache.json +0 -149
  333. package/test-projects/python-cli/ai-context/context/features/cli.json +0 -16
  334. package/test-projects/python-cli/ai-context/context/flows/list_.json +0 -9
  335. package/test-projects/python-cli/ai-context/context/flows/remove_.json +0 -9
  336. package/test-projects/python-cli/ai-context/conventions.md +0 -51
  337. package/test-projects/python-cli/ai-context/dependencies.json +0 -66
  338. package/test-projects/python-cli/ai-context/entrypoints.md +0 -4
  339. package/test-projects/python-cli/ai-context/files.json +0 -184
  340. package/test-projects/python-cli/ai-context/graph/knowledge-graph.json +0 -83
  341. package/test-projects/python-cli/ai-context/graph/module-graph.json +0 -31
  342. package/test-projects/python-cli/ai-context/graph/symbol-graph.json +0 -358
  343. package/test-projects/python-cli/ai-context/graph/symbol-references.json +0 -11
  344. package/test-projects/python-cli/ai-context/index-state.json +0 -259
  345. package/test-projects/python-cli/ai-context/index.db +0 -0
  346. package/test-projects/python-cli/ai-context/modules.json +0 -21
  347. package/test-projects/python-cli/ai-context/project.json +0 -15
  348. package/test-projects/python-cli/ai-context/repo_map.json +0 -367
  349. package/test-projects/python-cli/ai-context/repo_map.md +0 -93
  350. package/test-projects/python-cli/ai-context/schema.json +0 -5
  351. package/test-projects/python-cli/ai-context/summary.md +0 -14
  352. package/test-projects/python-cli/ai-context/symbols.json +0 -1
  353. package/test-projects/python-cli/ai-context/tech_stack.md +0 -32
  354. package/test-projects/python-cli/ai-context/tools.json +0 -10
  355. package/test-projects/rails-app/.ai-dev/index.db +0 -0
  356. package/test-projects/rails-app/ai-context/ai_context.md +0 -94
  357. package/test-projects/rails-app/ai-context/ai_rules.md +0 -47
  358. package/test-projects/rails-app/ai-context/architecture.md +0 -49
  359. package/test-projects/rails-app/ai-context/cache.json +0 -193
  360. package/test-projects/rails-app/ai-context/context/features/app.json +0 -24
  361. package/test-projects/rails-app/ai-context/context/features/config.json +0 -13
  362. package/test-projects/rails-app/ai-context/context/flows/application.json +0 -9
  363. package/test-projects/rails-app/ai-context/context/flows/application_.json +0 -9
  364. package/test-projects/rails-app/ai-context/context/flows/comments.json +0 -11
  365. package/test-projects/rails-app/ai-context/context/flows/comments_.json +0 -11
  366. package/test-projects/rails-app/ai-context/context/flows/posts.json +0 -11
  367. package/test-projects/rails-app/ai-context/context/flows/posts_.json +0 -11
  368. package/test-projects/rails-app/ai-context/context/flows/routes.json +0 -9
  369. package/test-projects/rails-app/ai-context/context/flows/users.json +0 -11
  370. package/test-projects/rails-app/ai-context/context/flows/users_.json +0 -11
  371. package/test-projects/rails-app/ai-context/conventions.md +0 -51
  372. package/test-projects/rails-app/ai-context/dependencies.json +0 -6
  373. package/test-projects/rails-app/ai-context/entrypoints.md +0 -4
  374. package/test-projects/rails-app/ai-context/files.json +0 -239
  375. package/test-projects/rails-app/ai-context/graph/knowledge-graph.json +0 -130
  376. package/test-projects/rails-app/ai-context/graph/module-graph.json +0 -27
  377. package/test-projects/rails-app/ai-context/graph/symbol-graph.json +0 -5
  378. package/test-projects/rails-app/ai-context/graph/symbol-references.json +0 -1
  379. package/test-projects/rails-app/ai-context/index-state.json +0 -336
  380. package/test-projects/rails-app/ai-context/index.db +0 -0
  381. package/test-projects/rails-app/ai-context/modules.json +0 -26
  382. package/test-projects/rails-app/ai-context/project.json +0 -22
  383. package/test-projects/rails-app/ai-context/repo_map.json +0 -486
  384. package/test-projects/rails-app/ai-context/repo_map.md +0 -117
  385. package/test-projects/rails-app/ai-context/schema.json +0 -5
  386. package/test-projects/rails-app/ai-context/summary.md +0 -13
  387. package/test-projects/rails-app/ai-context/symbols.json +0 -1
  388. package/test-projects/rails-app/ai-context/tech_stack.md +0 -32
  389. package/test-projects/rails-app/ai-context/tools.json +0 -10
  390. package/test-projects/react-app/.ai-dev/index.db +0 -0
  391. package/test-projects/react-app/ai-context/ai_context.md +0 -96
  392. package/test-projects/react-app/ai-context/ai_rules.md +0 -49
  393. package/test-projects/react-app/ai-context/architecture.md +0 -39
  394. package/test-projects/react-app/ai-context/cache.json +0 -153
  395. package/test-projects/react-app/ai-context/context/features/src.json +0 -18
  396. package/test-projects/react-app/ai-context/context/flows/UsersPage.json +0 -14
  397. package/test-projects/react-app/ai-context/context/flows/dashboard.json +0 -9
  398. package/test-projects/react-app/ai-context/context/flows/login.json +0 -9
  399. package/test-projects/react-app/ai-context/context/flows/users.json +0 -9
  400. package/test-projects/react-app/ai-context/conventions.md +0 -52
  401. package/test-projects/react-app/ai-context/dependencies.json +0 -128
  402. package/test-projects/react-app/ai-context/entrypoints.md +0 -4
  403. package/test-projects/react-app/ai-context/files.json +0 -189
  404. package/test-projects/react-app/ai-context/graph/knowledge-graph.json +0 -112
  405. package/test-projects/react-app/ai-context/graph/module-graph.json +0 -31
  406. package/test-projects/react-app/ai-context/graph/symbol-graph.json +0 -868
  407. package/test-projects/react-app/ai-context/graph/symbol-references.json +0 -31
  408. package/test-projects/react-app/ai-context/index-state.json +0 -266
  409. package/test-projects/react-app/ai-context/index.db +0 -0
  410. package/test-projects/react-app/ai-context/modules.json +0 -17
  411. package/test-projects/react-app/ai-context/project.json +0 -16
  412. package/test-projects/react-app/ai-context/repo_map.json +0 -391
  413. package/test-projects/react-app/ai-context/repo_map.md +0 -94
  414. package/test-projects/react-app/ai-context/schema.json +0 -5
  415. package/test-projects/react-app/ai-context/summary.md +0 -13
  416. package/test-projects/react-app/ai-context/symbols.json +0 -1
  417. package/test-projects/react-app/ai-context/tech_stack.md +0 -39
  418. package/test-projects/react-app/ai-context/tools.json +0 -10
  419. package/test-projects/salesforce-cli/.ai-dev/index.db +0 -0
  420. package/test-projects/salesforce-cli/ai-context/ai_context.md +0 -89
  421. package/test-projects/salesforce-cli/ai-context/ai_rules.md +0 -47
  422. package/test-projects/salesforce-cli/ai-context/architecture.md +0 -39
  423. package/test-projects/salesforce-cli/ai-context/cache.json +0 -125
  424. package/test-projects/salesforce-cli/ai-context/context/features/force-app.json +0 -14
  425. package/test-projects/salesforce-cli/ai-context/context/flows/account.json +0 -9
  426. package/test-projects/salesforce-cli/ai-context/context/flows/opportunity.json +0 -9
  427. package/test-projects/salesforce-cli/ai-context/conventions.md +0 -51
  428. package/test-projects/salesforce-cli/ai-context/dependencies.json +0 -6
  429. package/test-projects/salesforce-cli/ai-context/entrypoints.md +0 -4
  430. package/test-projects/salesforce-cli/ai-context/files.json +0 -154
  431. package/test-projects/salesforce-cli/ai-context/graph/knowledge-graph.json +0 -64
  432. package/test-projects/salesforce-cli/ai-context/graph/module-graph.json +0 -13
  433. package/test-projects/salesforce-cli/ai-context/graph/symbol-graph.json +0 -148
  434. package/test-projects/salesforce-cli/ai-context/graph/symbol-references.json +0 -1
  435. package/test-projects/salesforce-cli/ai-context/index-state.json +0 -217
  436. package/test-projects/salesforce-cli/ai-context/index.db +0 -0
  437. package/test-projects/salesforce-cli/ai-context/modules.json +0 -12
  438. package/test-projects/salesforce-cli/ai-context/project.json +0 -14
  439. package/test-projects/salesforce-cli/ai-context/repo_map.json +0 -328
  440. package/test-projects/salesforce-cli/ai-context/repo_map.md +0 -80
  441. package/test-projects/salesforce-cli/ai-context/schema.json +0 -5
  442. package/test-projects/salesforce-cli/ai-context/summary.md +0 -13
  443. package/test-projects/salesforce-cli/ai-context/symbols.json +0 -1
  444. package/test-projects/salesforce-cli/ai-context/tech_stack.md +0 -31
  445. package/test-projects/salesforce-cli/ai-context/tools.json +0 -10
  446. package/test-projects/spring-boot-app/.ai-dev/index.db +0 -0
  447. package/test-projects/spring-boot-app/ai-context/ai_context.md +0 -91
  448. package/test-projects/spring-boot-app/ai-context/ai_rules.md +0 -48
  449. package/test-projects/spring-boot-app/ai-context/architecture.md +0 -39
  450. package/test-projects/spring-boot-app/ai-context/cache.json +0 -173
  451. package/test-projects/spring-boot-app/ai-context/context/features/src.json +0 -26
  452. package/test-projects/spring-boot-app/ai-context/context/flows/PostController.json +0 -19
  453. package/test-projects/spring-boot-app/ai-context/context/flows/UserController.json +0 -19
  454. package/test-projects/spring-boot-app/ai-context/context/flows/comment.json +0 -11
  455. package/test-projects/spring-boot-app/ai-context/context/flows/post.json +0 -14
  456. package/test-projects/spring-boot-app/ai-context/context/flows/user.json +0 -14
  457. package/test-projects/spring-boot-app/ai-context/conventions.md +0 -52
  458. package/test-projects/spring-boot-app/ai-context/dependencies.json +0 -326
  459. package/test-projects/spring-boot-app/ai-context/entrypoints.md +0 -4
  460. package/test-projects/spring-boot-app/ai-context/files.json +0 -214
  461. package/test-projects/spring-boot-app/ai-context/graph/knowledge-graph.json +0 -231
  462. package/test-projects/spring-boot-app/ai-context/graph/module-graph.json +0 -22
  463. package/test-projects/spring-boot-app/ai-context/graph/symbol-graph.json +0 -794
  464. package/test-projects/spring-boot-app/ai-context/graph/symbol-references.json +0 -70
  465. package/test-projects/spring-boot-app/ai-context/index-state.json +0 -301
  466. package/test-projects/spring-boot-app/ai-context/index.db +0 -0
  467. package/test-projects/spring-boot-app/ai-context/modules.json +0 -21
  468. package/test-projects/spring-boot-app/ai-context/project.json +0 -17
  469. package/test-projects/spring-boot-app/ai-context/repo_map.json +0 -461
  470. package/test-projects/spring-boot-app/ai-context/repo_map.md +0 -109
  471. package/test-projects/spring-boot-app/ai-context/schema.json +0 -5
  472. package/test-projects/spring-boot-app/ai-context/summary.md +0 -12
  473. package/test-projects/spring-boot-app/ai-context/symbols.json +0 -1
  474. package/test-projects/spring-boot-app/ai-context/tech_stack.md +0 -32
  475. package/test-projects/spring-boot-app/ai-context/tools.json +0 -10
@@ -1,2946 +0,0 @@
1
- {
2
- "totalDependencies": 452,
3
- "totalModules": 113,
4
- "dependencies": [
5
- {
6
- "source": "docs/.vitepress/theme/index.ts",
7
- "target": "docs/.vitepress/theme/custom.css",
8
- "type": "import"
9
- },
10
- {
11
- "source": "src/analyzers/aiRules.ts",
12
- "target": "src/core/repoScanner.js",
13
- "type": "import"
14
- },
15
- {
16
- "source": "src/analyzers/aiRules.ts",
17
- "target": "src/analyzers/conventions.js",
18
- "type": "import"
19
- },
20
- {
21
- "source": "src/analyzers/aiRules.ts",
22
- "target": "src/analyzers/entrypoints.js",
23
- "type": "import"
24
- },
25
- {
26
- "source": "src/analyzers/aiRules.ts",
27
- "target": "src/analyzers/techStack.js",
28
- "type": "import"
29
- },
30
- {
31
- "source": "src/analyzers/aiRules.ts",
32
- "target": "src/analyzers/architecture.js",
33
- "type": "import"
34
- },
35
- {
36
- "source": "src/analyzers/aiRules.ts",
37
- "target": "src/core/repoScanner.js",
38
- "type": "import"
39
- },
40
- {
41
- "source": "src/analyzers/aiRules.ts",
42
- "target": "src/analyzers/conventions.js",
43
- "type": "import"
44
- },
45
- {
46
- "source": "src/analyzers/aiRules.ts",
47
- "target": "src/analyzers/entrypoints.js",
48
- "type": "import"
49
- },
50
- {
51
- "source": "src/analyzers/aiRules.ts",
52
- "target": "src/analyzers/techStack.js",
53
- "type": "import"
54
- },
55
- {
56
- "source": "src/analyzers/aiRules.ts",
57
- "target": "src/analyzers/architecture.js",
58
- "type": "import"
59
- },
60
- {
61
- "source": "src/analyzers/androidResources.ts",
62
- "target": "src/core/repoScanner.js",
63
- "type": "import"
64
- },
65
- {
66
- "source": "src/analyzers/androidResources.ts",
67
- "target": "src/core/repoScanner.js",
68
- "type": "import"
69
- },
70
- {
71
- "source": "src/analyzers/architecture.ts",
72
- "target": "src/core/repoScanner.js",
73
- "type": "import"
74
- },
75
- {
76
- "source": "src/analyzers/architecture.ts",
77
- "target": "src/utils/fileUtils.js",
78
- "type": "import"
79
- },
80
- {
81
- "source": "src/analyzers/architecture.ts",
82
- "target": "src/core/repoScanner.js",
83
- "type": "import"
84
- },
85
- {
86
- "source": "src/analyzers/architecture.ts",
87
- "target": "src/utils/fileUtils.js",
88
- "type": "import"
89
- },
90
- {
91
- "source": "src/analyzers/conventions.ts",
92
- "target": "src/core/repoScanner.js",
93
- "type": "import"
94
- },
95
- {
96
- "source": "src/analyzers/conventions.ts",
97
- "target": "src/utils/fileUtils.js",
98
- "type": "import"
99
- },
100
- {
101
- "source": "src/analyzers/conventions.ts",
102
- "target": "src/core/repoScanner.js",
103
- "type": "import"
104
- },
105
- {
106
- "source": "src/analyzers/conventions.ts",
107
- "target": "src/utils/fileUtils.js",
108
- "type": "import"
109
- },
110
- {
111
- "source": "src/analyzers/dependencies.ts",
112
- "target": "src/core/repoScanner.js",
113
- "type": "import"
114
- },
115
- {
116
- "source": "src/analyzers/dependencies.ts",
117
- "target": "src/utils/fileUtils.js",
118
- "type": "import"
119
- },
120
- {
121
- "source": "src/analyzers/dependencies.ts",
122
- "target": "src/core/repoScanner.js",
123
- "type": "import"
124
- },
125
- {
126
- "source": "src/analyzers/dependencies.ts",
127
- "target": "src/utils/fileUtils.js",
128
- "type": "import"
129
- },
130
- {
131
- "source": "src/analyzers/entrypoints.ts",
132
- "target": "src/core/repoScanner.js",
133
- "type": "import"
134
- },
135
- {
136
- "source": "src/analyzers/entrypoints.ts",
137
- "target": "src/utils/fileUtils.js",
138
- "type": "import"
139
- },
140
- {
141
- "source": "src/analyzers/entrypoints.ts",
142
- "target": "src/core/repoScanner.js",
143
- "type": "import"
144
- },
145
- {
146
- "source": "src/analyzers/entrypoints.ts",
147
- "target": "src/utils/fileUtils.js",
148
- "type": "import"
149
- },
150
- {
151
- "source": "src/analyzers/gradleModules.ts",
152
- "target": "src/core/repoScanner.js",
153
- "type": "import"
154
- },
155
- {
156
- "source": "src/analyzers/gradleModules.ts",
157
- "target": "src/utils/fileUtils.js",
158
- "type": "import"
159
- },
160
- {
161
- "source": "src/analyzers/gradleModules.ts",
162
- "target": "src/core/repoScanner.js",
163
- "type": "import"
164
- },
165
- {
166
- "source": "src/analyzers/gradleModules.ts",
167
- "target": "src/utils/fileUtils.js",
168
- "type": "import"
169
- },
170
- {
171
- "source": "src/analyzers/symbols.ts",
172
- "target": "src/core/repoScanner.js",
173
- "type": "import"
174
- },
175
- {
176
- "source": "src/analyzers/symbols.ts",
177
- "target": "src/utils/fileUtils.js",
178
- "type": "import"
179
- },
180
- {
181
- "source": "src/analyzers/symbols.ts",
182
- "target": "src/core/repoScanner.js",
183
- "type": "import"
184
- },
185
- {
186
- "source": "src/analyzers/symbols.ts",
187
- "target": "src/utils/fileUtils.js",
188
- "type": "import"
189
- },
190
- {
191
- "source": "src/analyzers/techStack.ts",
192
- "target": "src/core/repoScanner.js",
193
- "type": "import"
194
- },
195
- {
196
- "source": "src/analyzers/techStack.ts",
197
- "target": "src/utils/fileUtils.js",
198
- "type": "import"
199
- },
200
- {
201
- "source": "src/analyzers/techStack.ts",
202
- "target": "src/core/repoScanner.js",
203
- "type": "import"
204
- },
205
- {
206
- "source": "src/analyzers/techStack.ts",
207
- "target": "src/utils/fileUtils.js",
208
- "type": "import"
209
- },
210
- {
211
- "source": "src/commands/ai-first.ts",
212
- "target": "src/core/repoScanner.js",
213
- "type": "import"
214
- },
215
- {
216
- "source": "src/commands/ai-first.ts",
217
- "target": "src/core/repoMapper.js",
218
- "type": "import"
219
- },
220
- {
221
- "source": "src/commands/ai-first.ts",
222
- "target": "src/core/indexer.js",
223
- "type": "import"
224
- },
225
- {
226
- "source": "src/commands/ai-first.ts",
227
- "target": "src/core/aiContextGenerator.js",
228
- "type": "import"
229
- },
230
- {
231
- "source": "src/commands/ai-first.ts",
232
- "target": "src/core/hierarchyGenerator.js",
233
- "type": "import"
234
- },
235
- {
236
- "source": "src/commands/ai-first.ts",
237
- "target": "src/utils/fileUtils.js",
238
- "type": "import"
239
- },
240
- {
241
- "source": "src/commands/ai-first.ts",
242
- "target": "src/analyzers/architecture.js",
243
- "type": "import"
244
- },
245
- {
246
- "source": "src/commands/ai-first.ts",
247
- "target": "src/analyzers/techStack.js",
248
- "type": "import"
249
- },
250
- {
251
- "source": "src/commands/ai-first.ts",
252
- "target": "src/analyzers/entrypoints.js",
253
- "type": "import"
254
- },
255
- {
256
- "source": "src/commands/ai-first.ts",
257
- "target": "src/analyzers/conventions.js",
258
- "type": "import"
259
- },
260
- {
261
- "source": "src/commands/ai-first.ts",
262
- "target": "src/analyzers/symbols.js",
263
- "type": "import"
264
- },
265
- {
266
- "source": "src/commands/ai-first.ts",
267
- "target": "src/analyzers/dependencies.js",
268
- "type": "import"
269
- },
270
- {
271
- "source": "src/commands/ai-first.ts",
272
- "target": "src/analyzers/aiRules.js",
273
- "type": "import"
274
- },
275
- {
276
- "source": "src/commands/ai-first.ts",
277
- "target": "src/core/moduleGraph.js",
278
- "type": "import"
279
- },
280
- {
281
- "source": "src/commands/ai-first.ts",
282
- "target": "src/core/indexState.js",
283
- "type": "import"
284
- },
285
- {
286
- "source": "src/commands/ai-first.ts",
287
- "target": "src/core/chunker.js",
288
- "type": "import"
289
- },
290
- {
291
- "source": "src/commands/ai-first.ts",
292
- "target": "src/core/embeddings.js",
293
- "type": "import"
294
- },
295
- {
296
- "source": "src/commands/ai-first.ts",
297
- "target": "src/core/ccp.js",
298
- "type": "import"
299
- },
300
- {
301
- "source": "src/commands/ai-first.ts",
302
- "target": "src/core/semanticContexts.js",
303
- "type": "import"
304
- },
305
- {
306
- "source": "src/commands/ai-first.ts",
307
- "target": "src/commands/doctor.js",
308
- "type": "import"
309
- },
310
- {
311
- "source": "src/commands/ai-first.ts",
312
- "target": "src/commands/explore.js",
313
- "type": "import"
314
- },
315
- {
316
- "source": "src/commands/ai-first.ts",
317
- "target": "src/core/adapters/index.js",
318
- "type": "import"
319
- },
320
- {
321
- "source": "src/commands/ai-first.ts",
322
- "target": "src/core/gitAnalyzer.js",
323
- "type": "import"
324
- },
325
- {
326
- "source": "src/commands/ai-first.ts",
327
- "target": "src/core/knowledgeGraphBuilder.js",
328
- "type": "import"
329
- },
330
- {
331
- "source": "src/commands/ai-first.ts",
332
- "target": "src/core/incrementalAnalyzer.js",
333
- "type": "import"
334
- },
335
- {
336
- "source": "src/commands/ai-first.ts",
337
- "target": "src/core/schema.js",
338
- "type": "import"
339
- },
340
- {
341
- "source": "src/commands/ai-first.ts",
342
- "target": "src/core/repoScanner.js",
343
- "type": "import"
344
- },
345
- {
346
- "source": "src/commands/ai-first.ts",
347
- "target": "src/core/repoMapper.js",
348
- "type": "import"
349
- },
350
- {
351
- "source": "src/commands/ai-first.ts",
352
- "target": "src/core/indexer.js",
353
- "type": "import"
354
- },
355
- {
356
- "source": "src/commands/ai-first.ts",
357
- "target": "src/core/aiContextGenerator.js",
358
- "type": "import"
359
- },
360
- {
361
- "source": "src/commands/ai-first.ts",
362
- "target": "src/core/hierarchyGenerator.js",
363
- "type": "import"
364
- },
365
- {
366
- "source": "src/commands/ai-first.ts",
367
- "target": "src/utils/fileUtils.js",
368
- "type": "import"
369
- },
370
- {
371
- "source": "src/commands/ai-first.ts",
372
- "target": "src/analyzers/architecture.js",
373
- "type": "import"
374
- },
375
- {
376
- "source": "src/commands/ai-first.ts",
377
- "target": "src/analyzers/techStack.js",
378
- "type": "import"
379
- },
380
- {
381
- "source": "src/commands/ai-first.ts",
382
- "target": "src/analyzers/entrypoints.js",
383
- "type": "import"
384
- },
385
- {
386
- "source": "src/commands/ai-first.ts",
387
- "target": "src/analyzers/conventions.js",
388
- "type": "import"
389
- },
390
- {
391
- "source": "src/commands/ai-first.ts",
392
- "target": "src/analyzers/symbols.js",
393
- "type": "import"
394
- },
395
- {
396
- "source": "src/commands/ai-first.ts",
397
- "target": "src/analyzers/dependencies.js",
398
- "type": "import"
399
- },
400
- {
401
- "source": "src/commands/ai-first.ts",
402
- "target": "src/analyzers/aiRules.js",
403
- "type": "import"
404
- },
405
- {
406
- "source": "src/commands/ai-first.ts",
407
- "target": "src/core/moduleGraph.js",
408
- "type": "import"
409
- },
410
- {
411
- "source": "src/commands/ai-first.ts",
412
- "target": "src/core/indexState.js",
413
- "type": "import"
414
- },
415
- {
416
- "source": "src/commands/ai-first.ts",
417
- "target": "src/core/chunker.js",
418
- "type": "import"
419
- },
420
- {
421
- "source": "src/commands/ai-first.ts",
422
- "target": "src/core/embeddings.js",
423
- "type": "import"
424
- },
425
- {
426
- "source": "src/commands/ai-first.ts",
427
- "target": "src/core/ccp.js",
428
- "type": "import"
429
- },
430
- {
431
- "source": "src/commands/ai-first.ts",
432
- "target": "src/core/semanticContexts.js",
433
- "type": "import"
434
- },
435
- {
436
- "source": "src/commands/ai-first.ts",
437
- "target": "src/commands/doctor.js",
438
- "type": "import"
439
- },
440
- {
441
- "source": "src/commands/ai-first.ts",
442
- "target": "src/commands/explore.js",
443
- "type": "import"
444
- },
445
- {
446
- "source": "src/commands/ai-first.ts",
447
- "target": "src/core/adapters/index.js",
448
- "type": "import"
449
- },
450
- {
451
- "source": "src/commands/ai-first.ts",
452
- "target": "src/core/gitAnalyzer.js",
453
- "type": "import"
454
- },
455
- {
456
- "source": "src/commands/ai-first.ts",
457
- "target": "src/core/knowledgeGraphBuilder.js",
458
- "type": "import"
459
- },
460
- {
461
- "source": "src/commands/ai-first.ts",
462
- "target": "src/core/incrementalAnalyzer.js",
463
- "type": "import"
464
- },
465
- {
466
- "source": "src/commands/ai-first.ts",
467
- "target": "src/core/schema.js",
468
- "type": "import"
469
- },
470
- {
471
- "source": "src/commands/doctor.ts",
472
- "target": "src/core/repoScanner.js",
473
- "type": "import"
474
- },
475
- {
476
- "source": "src/commands/doctor.ts",
477
- "target": "src/core/repoScanner.js",
478
- "type": "import"
479
- },
480
- {
481
- "source": "src/commands/explore.ts",
482
- "target": "src/core/repoScanner.js",
483
- "type": "import"
484
- },
485
- {
486
- "source": "src/commands/explore.ts",
487
- "target": "src/core/moduleGraph.js",
488
- "type": "import"
489
- },
490
- {
491
- "source": "src/commands/explore.ts",
492
- "target": "src/core/repoScanner.js",
493
- "type": "import"
494
- },
495
- {
496
- "source": "src/commands/explore.ts",
497
- "target": "src/core/moduleGraph.js",
498
- "type": "import"
499
- },
500
- {
501
- "source": "src/core/adapters/adapterRegistry.ts",
502
- "target": "src/core/adapters/baseAdapter.js",
503
- "type": "import"
504
- },
505
- {
506
- "source": "src/core/adapters/adapterRegistry.ts",
507
- "target": "src/core/adapters/javascriptAdapter.js",
508
- "type": "import"
509
- },
510
- {
511
- "source": "src/core/adapters/adapterRegistry.ts",
512
- "target": "src/core/adapters/pythonAdapter.js",
513
- "type": "import"
514
- },
515
- {
516
- "source": "src/core/adapters/adapterRegistry.ts",
517
- "target": "src/core/adapters/railsAdapter.js",
518
- "type": "import"
519
- },
520
- {
521
- "source": "src/core/adapters/adapterRegistry.ts",
522
- "target": "src/core/adapters/salesforceAdapter.js",
523
- "type": "import"
524
- },
525
- {
526
- "source": "src/core/adapters/adapterRegistry.ts",
527
- "target": "src/core/adapters/dotnetAdapter.js",
528
- "type": "import"
529
- },
530
- {
531
- "source": "src/core/adapters/adapterRegistry.ts",
532
- "target": "src/core/adapters/community/index.js",
533
- "type": "import"
534
- },
535
- {
536
- "source": "src/core/adapters/adapterRegistry.ts",
537
- "target": "src/core/adapters/baseAdapter.js",
538
- "type": "import"
539
- },
540
- {
541
- "source": "src/core/adapters/adapterRegistry.ts",
542
- "target": "src/core/adapters/javascriptAdapter.js",
543
- "type": "import"
544
- },
545
- {
546
- "source": "src/core/adapters/adapterRegistry.ts",
547
- "target": "src/core/adapters/pythonAdapter.js",
548
- "type": "import"
549
- },
550
- {
551
- "source": "src/core/adapters/adapterRegistry.ts",
552
- "target": "src/core/adapters/railsAdapter.js",
553
- "type": "import"
554
- },
555
- {
556
- "source": "src/core/adapters/adapterRegistry.ts",
557
- "target": "src/core/adapters/salesforceAdapter.js",
558
- "type": "import"
559
- },
560
- {
561
- "source": "src/core/adapters/adapterRegistry.ts",
562
- "target": "src/core/adapters/dotnetAdapter.js",
563
- "type": "import"
564
- },
565
- {
566
- "source": "src/core/adapters/adapterRegistry.ts",
567
- "target": "src/core/adapters/community/index.js",
568
- "type": "import"
569
- },
570
- {
571
- "source": "src/core/adapters/community/fastapiAdapter.ts",
572
- "target": "src/core/adapters/sdk.js",
573
- "type": "import"
574
- },
575
- {
576
- "source": "src/core/adapters/community/fastapiAdapter.ts",
577
- "target": "src/core/adapters/sdk.js",
578
- "type": "import"
579
- },
580
- {
581
- "source": "src/core/adapters/community/laravelAdapter.ts",
582
- "target": "src/core/adapters/sdk.js",
583
- "type": "import"
584
- },
585
- {
586
- "source": "src/core/adapters/community/laravelAdapter.ts",
587
- "target": "src/core/adapters/sdk.js",
588
- "type": "import"
589
- },
590
- {
591
- "source": "src/core/adapters/community/nestjsAdapter.ts",
592
- "target": "src/core/adapters/sdk.js",
593
- "type": "import"
594
- },
595
- {
596
- "source": "src/core/adapters/community/nestjsAdapter.ts",
597
- "target": "src/core/adapters/sdk.js",
598
- "type": "import"
599
- },
600
- {
601
- "source": "src/core/adapters/community/phoenixAdapter.ts",
602
- "target": "src/core/adapters/sdk.js",
603
- "type": "import"
604
- },
605
- {
606
- "source": "src/core/adapters/community/phoenixAdapter.ts",
607
- "target": "src/core/adapters/sdk.js",
608
- "type": "import"
609
- },
610
- {
611
- "source": "src/core/adapters/community/springBootAdapter.ts",
612
- "target": "src/core/adapters/sdk.js",
613
- "type": "import"
614
- },
615
- {
616
- "source": "src/core/adapters/community/springBootAdapter.ts",
617
- "target": "src/core/adapters/sdk.js",
618
- "type": "import"
619
- },
620
- {
621
- "source": "src/core/adapters/dotnetAdapter.ts",
622
- "target": "src/core/adapters/baseAdapter.js",
623
- "type": "import"
624
- },
625
- {
626
- "source": "src/core/adapters/dotnetAdapter.ts",
627
- "target": "src/core/adapters/baseAdapter.js",
628
- "type": "import"
629
- },
630
- {
631
- "source": "src/core/adapters/javascriptAdapter.ts",
632
- "target": "src/core/adapters/baseAdapter.js",
633
- "type": "import"
634
- },
635
- {
636
- "source": "src/core/adapters/javascriptAdapter.ts",
637
- "target": "src/core/adapters/baseAdapter.js",
638
- "type": "import"
639
- },
640
- {
641
- "source": "src/core/adapters/pythonAdapter.ts",
642
- "target": "src/core/adapters/baseAdapter.js",
643
- "type": "import"
644
- },
645
- {
646
- "source": "src/core/adapters/pythonAdapter.ts",
647
- "target": "src/core/adapters/baseAdapter.js",
648
- "type": "import"
649
- },
650
- {
651
- "source": "src/core/adapters/railsAdapter.ts",
652
- "target": "src/core/adapters/baseAdapter.js",
653
- "type": "import"
654
- },
655
- {
656
- "source": "src/core/adapters/railsAdapter.ts",
657
- "target": "src/core/adapters/baseAdapter.js",
658
- "type": "import"
659
- },
660
- {
661
- "source": "src/core/adapters/salesforceAdapter.ts",
662
- "target": "src/core/adapters/baseAdapter.js",
663
- "type": "import"
664
- },
665
- {
666
- "source": "src/core/adapters/salesforceAdapter.ts",
667
- "target": "src/core/adapters/baseAdapter.js",
668
- "type": "import"
669
- },
670
- {
671
- "source": "src/core/adapters/sdk.ts",
672
- "target": "src/core/adapters/baseAdapter.js",
673
- "type": "import"
674
- },
675
- {
676
- "source": "src/core/adapters/sdk.ts",
677
- "target": "src/core/adapters/adapters/sdk.js",
678
- "type": "import"
679
- },
680
- {
681
- "source": "src/core/adapters/sdk.ts",
682
- "target": "src/core/adapters/baseAdapter.js",
683
- "type": "import"
684
- },
685
- {
686
- "source": "src/core/adapters/sdk.ts",
687
- "target": "src/core/adapters/adapters/sdk.js",
688
- "type": "import"
689
- },
690
- {
691
- "source": "src/core/aiContextGenerator.ts",
692
- "target": "src/core/repoScanner.js",
693
- "type": "import"
694
- },
695
- {
696
- "source": "src/core/aiContextGenerator.ts",
697
- "target": "src/utils/fileUtils.js",
698
- "type": "import"
699
- },
700
- {
701
- "source": "src/core/aiContextGenerator.ts",
702
- "target": "src/core/repoScanner.js",
703
- "type": "import"
704
- },
705
- {
706
- "source": "src/core/aiContextGenerator.ts",
707
- "target": "src/utils/fileUtils.js",
708
- "type": "import"
709
- },
710
- {
711
- "source": "src/core/ccp.ts",
712
- "target": "src/utils/fileUtils.js",
713
- "type": "import"
714
- },
715
- {
716
- "source": "src/core/ccp.ts",
717
- "target": "src/utils/fileUtils.js",
718
- "type": "import"
719
- },
720
- {
721
- "source": "src/core/contextPacket.ts",
722
- "target": "src/core/symbolGraph.js",
723
- "type": "import"
724
- },
725
- {
726
- "source": "src/core/contextPacket.ts",
727
- "target": "src/utils/fileUtils.js",
728
- "type": "import"
729
- },
730
- {
731
- "source": "src/core/contextPacket.ts",
732
- "target": "src/core/symbolGraph.js",
733
- "type": "import"
734
- },
735
- {
736
- "source": "src/core/contextPacket.ts",
737
- "target": "src/utils/fileUtils.js",
738
- "type": "import"
739
- },
740
- {
741
- "source": "src/core/embeddings.ts",
742
- "target": "src/core/chunker.js",
743
- "type": "import"
744
- },
745
- {
746
- "source": "src/core/embeddings.ts",
747
- "target": "src/core/chunker.js",
748
- "type": "import"
749
- },
750
- {
751
- "source": "src/core/gitAnalyzer.ts",
752
- "target": "src/utils/fileUtils.js",
753
- "type": "import"
754
- },
755
- {
756
- "source": "src/core/gitAnalyzer.ts",
757
- "target": "src/utils/fileUtils.js",
758
- "type": "import"
759
- },
760
- {
761
- "source": "src/core/hierarchyGenerator.ts",
762
- "target": "src/utils/fileUtils.js",
763
- "type": "import"
764
- },
765
- {
766
- "source": "src/core/hierarchyGenerator.ts",
767
- "target": "src/utils/fileUtils.js",
768
- "type": "import"
769
- },
770
- {
771
- "source": "src/core/incrementalAnalyzer.ts",
772
- "target": "src/utils/fileUtils.js",
773
- "type": "import"
774
- },
775
- {
776
- "source": "src/core/incrementalAnalyzer.ts",
777
- "target": "src/core/indexState.js",
778
- "type": "import"
779
- },
780
- {
781
- "source": "src/core/incrementalAnalyzer.ts",
782
- "target": "src/analyzers/symbols.js",
783
- "type": "import"
784
- },
785
- {
786
- "source": "src/core/incrementalAnalyzer.ts",
787
- "target": "src/core/repoScanner.js",
788
- "type": "import"
789
- },
790
- {
791
- "source": "src/core/incrementalAnalyzer.ts",
792
- "target": "src/core/knowledgeGraphBuilder.js",
793
- "type": "import"
794
- },
795
- {
796
- "source": "src/core/incrementalAnalyzer.ts",
797
- "target": "src/utils/fileUtils.js",
798
- "type": "import"
799
- },
800
- {
801
- "source": "src/core/incrementalAnalyzer.ts",
802
- "target": "src/core/indexState.js",
803
- "type": "import"
804
- },
805
- {
806
- "source": "src/core/incrementalAnalyzer.ts",
807
- "target": "src/analyzers/symbols.js",
808
- "type": "import"
809
- },
810
- {
811
- "source": "src/core/incrementalAnalyzer.ts",
812
- "target": "src/core/repoScanner.js",
813
- "type": "import"
814
- },
815
- {
816
- "source": "src/core/incrementalAnalyzer.ts",
817
- "target": "src/core/knowledgeGraphBuilder.js",
818
- "type": "import"
819
- },
820
- {
821
- "source": "src/core/indexer.ts",
822
- "target": "src/core/repoScanner.js",
823
- "type": "import"
824
- },
825
- {
826
- "source": "src/core/indexer.ts",
827
- "target": "src/utils/fileUtils.js",
828
- "type": "import"
829
- },
830
- {
831
- "source": "src/core/indexer.ts",
832
- "target": "src/core/repoScanner.js",
833
- "type": "import"
834
- },
835
- {
836
- "source": "src/core/indexer.ts",
837
- "target": "src/utils/fileUtils.js",
838
- "type": "import"
839
- },
840
- {
841
- "source": "src/core/knowledgeGraphBuilder.ts",
842
- "target": "src/utils/fileUtils.js",
843
- "type": "import"
844
- },
845
- {
846
- "source": "src/core/knowledgeGraphBuilder.ts",
847
- "target": "src/utils/fileUtils.js",
848
- "type": "import"
849
- },
850
- {
851
- "source": "src/core/lazyAnalyzer.ts",
852
- "target": "src/utils/fileUtils.js",
853
- "type": "import"
854
- },
855
- {
856
- "source": "src/core/lazyAnalyzer.ts",
857
- "target": "src/core/repoScanner.js",
858
- "type": "import"
859
- },
860
- {
861
- "source": "src/core/lazyAnalyzer.ts",
862
- "target": "src/core/repoMapper.js",
863
- "type": "import"
864
- },
865
- {
866
- "source": "src/core/lazyAnalyzer.ts",
867
- "target": "src/analyzers/techStack.js",
868
- "type": "import"
869
- },
870
- {
871
- "source": "src/core/lazyAnalyzer.ts",
872
- "target": "src/analyzers/entrypoints.js",
873
- "type": "import"
874
- },
875
- {
876
- "source": "src/core/lazyAnalyzer.ts",
877
- "target": "src/analyzers/symbols.js",
878
- "type": "import"
879
- },
880
- {
881
- "source": "src/core/lazyAnalyzer.ts",
882
- "target": "src/analyzers/dependencies.js",
883
- "type": "import"
884
- },
885
- {
886
- "source": "src/core/lazyAnalyzer.ts",
887
- "target": "src/core/semanticContexts.js",
888
- "type": "import"
889
- },
890
- {
891
- "source": "src/core/lazyAnalyzer.ts",
892
- "target": "src/core/knowledgeGraphBuilder.js",
893
- "type": "import"
894
- },
895
- {
896
- "source": "src/core/lazyAnalyzer.ts",
897
- "target": "src/utils/fileUtils.js",
898
- "type": "import"
899
- },
900
- {
901
- "source": "src/core/lazyAnalyzer.ts",
902
- "target": "src/core/repoScanner.js",
903
- "type": "import"
904
- },
905
- {
906
- "source": "src/core/lazyAnalyzer.ts",
907
- "target": "src/core/repoMapper.js",
908
- "type": "import"
909
- },
910
- {
911
- "source": "src/core/lazyAnalyzer.ts",
912
- "target": "src/analyzers/techStack.js",
913
- "type": "import"
914
- },
915
- {
916
- "source": "src/core/lazyAnalyzer.ts",
917
- "target": "src/analyzers/entrypoints.js",
918
- "type": "import"
919
- },
920
- {
921
- "source": "src/core/lazyAnalyzer.ts",
922
- "target": "src/analyzers/symbols.js",
923
- "type": "import"
924
- },
925
- {
926
- "source": "src/core/lazyAnalyzer.ts",
927
- "target": "src/analyzers/dependencies.js",
928
- "type": "import"
929
- },
930
- {
931
- "source": "src/core/lazyAnalyzer.ts",
932
- "target": "src/core/semanticContexts.js",
933
- "type": "import"
934
- },
935
- {
936
- "source": "src/core/lazyAnalyzer.ts",
937
- "target": "src/core/knowledgeGraphBuilder.js",
938
- "type": "import"
939
- },
940
- {
941
- "source": "src/core/moduleGraph.ts",
942
- "target": "src/core/repoScanner.js",
943
- "type": "import"
944
- },
945
- {
946
- "source": "src/core/moduleGraph.ts",
947
- "target": "src/core/repoScanner.js",
948
- "type": "import"
949
- },
950
- {
951
- "source": "src/core/repoMapper.ts",
952
- "target": "src/core/repoScanner.js",
953
- "type": "import"
954
- },
955
- {
956
- "source": "src/core/repoMapper.ts",
957
- "target": "src/core/repoScanner.js",
958
- "type": "import"
959
- },
960
- {
961
- "source": "src/core/repoScanner.ts",
962
- "target": "src/utils/fileUtils.js",
963
- "type": "import"
964
- },
965
- {
966
- "source": "src/core/repoScanner.ts",
967
- "target": "src/utils/fileUtils.js",
968
- "type": "import"
969
- },
970
- {
971
- "source": "src/core/schema.ts",
972
- "target": "src/utils/fileUtils.js",
973
- "type": "import"
974
- },
975
- {
976
- "source": "src/core/schema.ts",
977
- "target": "src/utils/fileUtils.js",
978
- "type": "import"
979
- },
980
- {
981
- "source": "src/core/semanticContexts.ts",
982
- "target": "src/utils/fileUtils.js",
983
- "type": "import"
984
- },
985
- {
986
- "source": "src/core/semanticContexts.ts",
987
- "target": "src/utils/fileUtils.js",
988
- "type": "import"
989
- },
990
- {
991
- "source": "src/core/symbolGraph.ts",
992
- "target": "src/core/repoScanner.js",
993
- "type": "import"
994
- },
995
- {
996
- "source": "src/core/symbolGraph.ts",
997
- "target": "src/analyzers/symbols.js",
998
- "type": "import"
999
- },
1000
- {
1001
- "source": "src/core/symbolGraph.ts",
1002
- "target": "src/analyzers/dependencies.js",
1003
- "type": "import"
1004
- },
1005
- {
1006
- "source": "src/core/symbolGraph.ts",
1007
- "target": "src/utils/fileUtils.js",
1008
- "type": "import"
1009
- },
1010
- {
1011
- "source": "src/core/symbolGraph.ts",
1012
- "target": "src/core/repoScanner.js",
1013
- "type": "import"
1014
- },
1015
- {
1016
- "source": "src/core/symbolGraph.ts",
1017
- "target": "src/analyzers/symbols.js",
1018
- "type": "import"
1019
- },
1020
- {
1021
- "source": "src/core/symbolGraph.ts",
1022
- "target": "src/analyzers/dependencies.js",
1023
- "type": "import"
1024
- },
1025
- {
1026
- "source": "src/core/symbolGraph.ts",
1027
- "target": "src/utils/fileUtils.js",
1028
- "type": "import"
1029
- },
1030
- {
1031
- "source": "test-projects/django-app/blog/admin.py",
1032
- "target": "django/contrib.py",
1033
- "type": "from"
1034
- },
1035
- {
1036
- "source": "test-projects/django-app/blog/admin.py",
1037
- "target": "/models.py",
1038
- "type": "from"
1039
- },
1040
- {
1041
- "source": "test-projects/django-app/blog/models.py",
1042
- "target": "django/db.py",
1043
- "type": "from"
1044
- },
1045
- {
1046
- "source": "test-projects/django-app/blog/models.py",
1047
- "target": "django/contrib/auth/models.py",
1048
- "type": "from"
1049
- },
1050
- {
1051
- "source": "test-projects/django-app/blog/serializers.py",
1052
- "target": "rest_framework.py",
1053
- "type": "from"
1054
- },
1055
- {
1056
- "source": "test-projects/django-app/blog/serializers.py",
1057
- "target": "django/contrib/auth/models.py",
1058
- "type": "from"
1059
- },
1060
- {
1061
- "source": "test-projects/django-app/blog/serializers.py",
1062
- "target": "/models.py",
1063
- "type": "from"
1064
- },
1065
- {
1066
- "source": "test-projects/django-app/blog/urls.py",
1067
- "target": "django/urls.py",
1068
- "type": "from"
1069
- },
1070
- {
1071
- "source": "test-projects/django-app/blog/urls.py",
1072
- "target": "rest_framework/routers.py",
1073
- "type": "from"
1074
- },
1075
- {
1076
- "source": "test-projects/django-app/blog/urls.py",
1077
- "target": "/views.py",
1078
- "type": "from"
1079
- },
1080
- {
1081
- "source": "test-projects/django-app/blog/views.py",
1082
- "target": "rest_framework.py",
1083
- "type": "from"
1084
- },
1085
- {
1086
- "source": "test-projects/django-app/blog/views.py",
1087
- "target": "rest_framework/decorators.py",
1088
- "type": "from"
1089
- },
1090
- {
1091
- "source": "test-projects/django-app/blog/views.py",
1092
- "target": "rest_framework/response.py",
1093
- "type": "from"
1094
- },
1095
- {
1096
- "source": "test-projects/django-app/blog/views.py",
1097
- "target": "rest_framework/permissions.py",
1098
- "type": "from"
1099
- },
1100
- {
1101
- "source": "test-projects/django-app/blog/views.py",
1102
- "target": "django/contrib/auth/models.py",
1103
- "type": "from"
1104
- },
1105
- {
1106
- "source": "test-projects/django-app/blog/views.py",
1107
- "target": "/models.py",
1108
- "type": "from"
1109
- },
1110
- {
1111
- "source": "test-projects/django-app/blog/views.py",
1112
- "target": "/serializers.py",
1113
- "type": "from"
1114
- },
1115
- {
1116
- "source": "test-projects/django-app/django_app/settings.py",
1117
- "target": "pathlib.py",
1118
- "type": "from"
1119
- },
1120
- {
1121
- "source": "test-projects/django-app/django_app/urls.py",
1122
- "target": "django/contrib.py",
1123
- "type": "from"
1124
- },
1125
- {
1126
- "source": "test-projects/django-app/django_app/urls.py",
1127
- "target": "django/urls.py",
1128
- "type": "from"
1129
- },
1130
- {
1131
- "source": "test-projects/django-app/django_app/wsgi.py",
1132
- "target": "django/core/wsgi.py",
1133
- "type": "from"
1134
- },
1135
- {
1136
- "source": "test-projects/django-app/django_app/wsgi.py",
1137
- "target": "os.py",
1138
- "type": "import"
1139
- },
1140
- {
1141
- "source": "test-projects/django-app/manage.py",
1142
- "target": "os.py",
1143
- "type": "import"
1144
- },
1145
- {
1146
- "source": "test-projects/django-app/manage.py",
1147
- "target": "sys.py",
1148
- "type": "import"
1149
- },
1150
- {
1151
- "source": "test-projects/django-app/users/admin.py",
1152
- "target": "django/contrib.py",
1153
- "type": "from"
1154
- },
1155
- {
1156
- "source": "test-projects/django-app/users/admin.py",
1157
- "target": "django/contrib/auth/admin.py",
1158
- "type": "from"
1159
- },
1160
- {
1161
- "source": "test-projects/django-app/users/admin.py",
1162
- "target": "django/contrib/auth/models.py",
1163
- "type": "from"
1164
- },
1165
- {
1166
- "source": "test-projects/django-app/users/admin.py",
1167
- "target": "/models.py",
1168
- "type": "from"
1169
- },
1170
- {
1171
- "source": "test-projects/django-app/users/models.py",
1172
- "target": "django/db.py",
1173
- "type": "from"
1174
- },
1175
- {
1176
- "source": "test-projects/django-app/users/models.py",
1177
- "target": "django/contrib/auth/models.py",
1178
- "type": "from"
1179
- },
1180
- {
1181
- "source": "test-projects/django-app/users/models.py",
1182
- "target": "django/db/models/signals.py",
1183
- "type": "from"
1184
- },
1185
- {
1186
- "source": "test-projects/django-app/users/models.py",
1187
- "target": "django/dispatch.py",
1188
- "type": "from"
1189
- },
1190
- {
1191
- "source": "test-projects/django-app/users/serializers.py",
1192
- "target": "rest_framework.py",
1193
- "type": "from"
1194
- },
1195
- {
1196
- "source": "test-projects/django-app/users/serializers.py",
1197
- "target": "django/contrib/auth/models.py",
1198
- "type": "from"
1199
- },
1200
- {
1201
- "source": "test-projects/django-app/users/serializers.py",
1202
- "target": "/models.py",
1203
- "type": "from"
1204
- },
1205
- {
1206
- "source": "test-projects/django-app/users/urls.py",
1207
- "target": "django/urls.py",
1208
- "type": "from"
1209
- },
1210
- {
1211
- "source": "test-projects/django-app/users/urls.py",
1212
- "target": "rest_framework/routers.py",
1213
- "type": "from"
1214
- },
1215
- {
1216
- "source": "test-projects/django-app/users/urls.py",
1217
- "target": "/views.py",
1218
- "type": "from"
1219
- },
1220
- {
1221
- "source": "test-projects/django-app/users/views.py",
1222
- "target": "rest_framework.py",
1223
- "type": "from"
1224
- },
1225
- {
1226
- "source": "test-projects/django-app/users/views.py",
1227
- "target": "rest_framework/decorators.py",
1228
- "type": "from"
1229
- },
1230
- {
1231
- "source": "test-projects/django-app/users/views.py",
1232
- "target": "rest_framework/response.py",
1233
- "type": "from"
1234
- },
1235
- {
1236
- "source": "test-projects/django-app/users/views.py",
1237
- "target": "rest_framework/permissions.py",
1238
- "type": "from"
1239
- },
1240
- {
1241
- "source": "test-projects/django-app/users/views.py",
1242
- "target": "django/contrib/auth/models.py",
1243
- "type": "from"
1244
- },
1245
- {
1246
- "source": "test-projects/django-app/users/views.py",
1247
- "target": "django/contrib/auth.py",
1248
- "type": "from"
1249
- },
1250
- {
1251
- "source": "test-projects/django-app/users/views.py",
1252
- "target": "/models.py",
1253
- "type": "from"
1254
- },
1255
- {
1256
- "source": "test-projects/django-app/users/views.py",
1257
- "target": "/serializers.py",
1258
- "type": "from"
1259
- },
1260
- {
1261
- "source": "test-projects/express-api/controllers/authController.js",
1262
- "target": "test-projects/express-api/services/authService",
1263
- "type": "require"
1264
- },
1265
- {
1266
- "source": "test-projects/express-api/controllers/userController.js",
1267
- "target": "test-projects/express-api/services/userService",
1268
- "type": "require"
1269
- },
1270
- {
1271
- "source": "test-projects/express-api/index.js",
1272
- "target": "test-projects/express-api/controllers/authController",
1273
- "type": "require"
1274
- },
1275
- {
1276
- "source": "test-projects/express-api/index.js",
1277
- "target": "test-projects/express-api/controllers/userController",
1278
- "type": "require"
1279
- },
1280
- {
1281
- "source": "test-projects/express-api/services/authService.js",
1282
- "target": "test-projects/express-api/models/userRepository",
1283
- "type": "require"
1284
- },
1285
- {
1286
- "source": "test-projects/express-api/services/userService.js",
1287
- "target": "test-projects/express-api/models/userRepository",
1288
- "type": "require"
1289
- },
1290
- {
1291
- "source": "test-projects/fastapi-app/app/database.py",
1292
- "target": "sqlalchemy.py",
1293
- "type": "from"
1294
- },
1295
- {
1296
- "source": "test-projects/fastapi-app/app/database.py",
1297
- "target": "sqlalchemy/ext/declarative.py",
1298
- "type": "from"
1299
- },
1300
- {
1301
- "source": "test-projects/fastapi-app/app/database.py",
1302
- "target": "sqlalchemy/orm.py",
1303
- "type": "from"
1304
- },
1305
- {
1306
- "source": "test-projects/fastapi-app/app/dependencies.py",
1307
- "target": "datetime.py",
1308
- "type": "from"
1309
- },
1310
- {
1311
- "source": "test-projects/fastapi-app/app/dependencies.py",
1312
- "target": "typing.py",
1313
- "type": "from"
1314
- },
1315
- {
1316
- "source": "test-projects/fastapi-app/app/dependencies.py",
1317
- "target": "jose.py",
1318
- "type": "from"
1319
- },
1320
- {
1321
- "source": "test-projects/fastapi-app/app/dependencies.py",
1322
- "target": "passlib/context.py",
1323
- "type": "from"
1324
- },
1325
- {
1326
- "source": "test-projects/fastapi-app/app/dependencies.py",
1327
- "target": "sqlalchemy/orm.py",
1328
- "type": "from"
1329
- },
1330
- {
1331
- "source": "test-projects/fastapi-app/app/dependencies.py",
1332
- "target": "fastapi.py",
1333
- "type": "from"
1334
- },
1335
- {
1336
- "source": "test-projects/fastapi-app/app/dependencies.py",
1337
- "target": "fastapi/security.py",
1338
- "type": "from"
1339
- },
1340
- {
1341
- "source": "test-projects/fastapi-app/app/dependencies.py",
1342
- "target": "app.py",
1343
- "type": "from"
1344
- },
1345
- {
1346
- "source": "test-projects/fastapi-app/app/dependencies.py",
1347
- "target": "app/database.py",
1348
- "type": "from"
1349
- },
1350
- {
1351
- "source": "test-projects/fastapi-app/app/main.py",
1352
- "target": "fastapi.py",
1353
- "type": "from"
1354
- },
1355
- {
1356
- "source": "test-projects/fastapi-app/app/main.py",
1357
- "target": "fastapi/middleware/cors.py",
1358
- "type": "from"
1359
- },
1360
- {
1361
- "source": "test-projects/fastapi-app/app/main.py",
1362
- "target": "app/database.py",
1363
- "type": "from"
1364
- },
1365
- {
1366
- "source": "test-projects/fastapi-app/app/main.py",
1367
- "target": "app/routers.py",
1368
- "type": "from"
1369
- },
1370
- {
1371
- "source": "test-projects/fastapi-app/app/models.py",
1372
- "target": "sqlalchemy.py",
1373
- "type": "from"
1374
- },
1375
- {
1376
- "source": "test-projects/fastapi-app/app/models.py",
1377
- "target": "sqlalchemy/orm.py",
1378
- "type": "from"
1379
- },
1380
- {
1381
- "source": "test-projects/fastapi-app/app/models.py",
1382
- "target": "sqlalchemy/sql.py",
1383
- "type": "from"
1384
- },
1385
- {
1386
- "source": "test-projects/fastapi-app/app/models.py",
1387
- "target": "app/database.py",
1388
- "type": "from"
1389
- },
1390
- {
1391
- "source": "test-projects/fastapi-app/app/routers/auth.py",
1392
- "target": "datetime.py",
1393
- "type": "from"
1394
- },
1395
- {
1396
- "source": "test-projects/fastapi-app/app/routers/auth.py",
1397
- "target": "typing.py",
1398
- "type": "from"
1399
- },
1400
- {
1401
- "source": "test-projects/fastapi-app/app/routers/auth.py",
1402
- "target": "fastapi.py",
1403
- "type": "from"
1404
- },
1405
- {
1406
- "source": "test-projects/fastapi-app/app/routers/auth.py",
1407
- "target": "sqlalchemy/orm.py",
1408
- "type": "from"
1409
- },
1410
- {
1411
- "source": "test-projects/fastapi-app/app/routers/auth.py",
1412
- "target": "app.py",
1413
- "type": "from"
1414
- },
1415
- {
1416
- "source": "test-projects/fastapi-app/app/routers/auth.py",
1417
- "target": "app/database.py",
1418
- "type": "from"
1419
- },
1420
- {
1421
- "source": "test-projects/fastapi-app/app/routers/auth.py",
1422
- "target": "app/dependencies.py",
1423
- "type": "from"
1424
- },
1425
- {
1426
- "source": "test-projects/fastapi-app/app/routers/posts.py",
1427
- "target": "typing.py",
1428
- "type": "from"
1429
- },
1430
- {
1431
- "source": "test-projects/fastapi-app/app/routers/posts.py",
1432
- "target": "fastapi.py",
1433
- "type": "from"
1434
- },
1435
- {
1436
- "source": "test-projects/fastapi-app/app/routers/posts.py",
1437
- "target": "sqlalchemy/orm.py",
1438
- "type": "from"
1439
- },
1440
- {
1441
- "source": "test-projects/fastapi-app/app/routers/posts.py",
1442
- "target": "sqlalchemy.py",
1443
- "type": "from"
1444
- },
1445
- {
1446
- "source": "test-projects/fastapi-app/app/routers/posts.py",
1447
- "target": "app.py",
1448
- "type": "from"
1449
- },
1450
- {
1451
- "source": "test-projects/fastapi-app/app/routers/posts.py",
1452
- "target": "app/database.py",
1453
- "type": "from"
1454
- },
1455
- {
1456
- "source": "test-projects/fastapi-app/app/routers/posts.py",
1457
- "target": "app/dependencies.py",
1458
- "type": "from"
1459
- },
1460
- {
1461
- "source": "test-projects/fastapi-app/app/schemas.py",
1462
- "target": "datetime.py",
1463
- "type": "from"
1464
- },
1465
- {
1466
- "source": "test-projects/fastapi-app/app/schemas.py",
1467
- "target": "typing.py",
1468
- "type": "from"
1469
- },
1470
- {
1471
- "source": "test-projects/fastapi-app/app/schemas.py",
1472
- "target": "pydantic.py",
1473
- "type": "from"
1474
- },
1475
- {
1476
- "source": "test-projects/flask-app/app/__init__.py",
1477
- "target": "flask.py",
1478
- "type": "from"
1479
- },
1480
- {
1481
- "source": "test-projects/flask-app/app/__init__.py",
1482
- "target": "flask_sqlalchemy.py",
1483
- "type": "from"
1484
- },
1485
- {
1486
- "source": "test-projects/flask-app/app/__init__.py",
1487
- "target": "flask_migrate.py",
1488
- "type": "from"
1489
- },
1490
- {
1491
- "source": "test-projects/flask-app/app/__init__.py",
1492
- "target": "flask_login.py",
1493
- "type": "from"
1494
- },
1495
- {
1496
- "source": "test-projects/flask-app/app/__init__.py",
1497
- "target": "config.py",
1498
- "type": "from"
1499
- },
1500
- {
1501
- "source": "test-projects/flask-app/app/__init__.py",
1502
- "target": "app.py",
1503
- "type": "from"
1504
- },
1505
- {
1506
- "source": "test-projects/flask-app/app/api/__init__.py",
1507
- "target": "flask.py",
1508
- "type": "from"
1509
- },
1510
- {
1511
- "source": "test-projects/flask-app/app/api/__init__.py",
1512
- "target": "app/api.py",
1513
- "type": "from"
1514
- },
1515
- {
1516
- "source": "test-projects/flask-app/app/api/routes.py",
1517
- "target": "flask.py",
1518
- "type": "from"
1519
- },
1520
- {
1521
- "source": "test-projects/flask-app/app/api/routes.py",
1522
- "target": "app.py",
1523
- "type": "from"
1524
- },
1525
- {
1526
- "source": "test-projects/flask-app/app/api/routes.py",
1527
- "target": "app/models.py",
1528
- "type": "from"
1529
- },
1530
- {
1531
- "source": "test-projects/flask-app/app/auth/__init__.py",
1532
- "target": "flask.py",
1533
- "type": "from"
1534
- },
1535
- {
1536
- "source": "test-projects/flask-app/app/auth/__init__.py",
1537
- "target": "app/auth.py",
1538
- "type": "from"
1539
- },
1540
- {
1541
- "source": "test-projects/flask-app/app/auth/forms.py",
1542
- "target": "flask_wtf.py",
1543
- "type": "from"
1544
- },
1545
- {
1546
- "source": "test-projects/flask-app/app/auth/forms.py",
1547
- "target": "wtforms.py",
1548
- "type": "from"
1549
- },
1550
- {
1551
- "source": "test-projects/flask-app/app/auth/forms.py",
1552
- "target": "wtforms/validators.py",
1553
- "type": "from"
1554
- },
1555
- {
1556
- "source": "test-projects/flask-app/app/auth/forms.py",
1557
- "target": "app/models.py",
1558
- "type": "from"
1559
- },
1560
- {
1561
- "source": "test-projects/flask-app/app/auth/routes.py",
1562
- "target": "flask.py",
1563
- "type": "from"
1564
- },
1565
- {
1566
- "source": "test-projects/flask-app/app/auth/routes.py",
1567
- "target": "flask_login.py",
1568
- "type": "from"
1569
- },
1570
- {
1571
- "source": "test-projects/flask-app/app/auth/routes.py",
1572
- "target": "werkzeug/urls.py",
1573
- "type": "from"
1574
- },
1575
- {
1576
- "source": "test-projects/flask-app/app/auth/routes.py",
1577
- "target": "app.py",
1578
- "type": "from"
1579
- },
1580
- {
1581
- "source": "test-projects/flask-app/app/auth/routes.py",
1582
- "target": "app/models.py",
1583
- "type": "from"
1584
- },
1585
- {
1586
- "source": "test-projects/flask-app/app/auth/routes.py",
1587
- "target": "app/auth/forms.py",
1588
- "type": "from"
1589
- },
1590
- {
1591
- "source": "test-projects/flask-app/app/blog/__init__.py",
1592
- "target": "flask.py",
1593
- "type": "from"
1594
- },
1595
- {
1596
- "source": "test-projects/flask-app/app/blog/__init__.py",
1597
- "target": "app/blog.py",
1598
- "type": "from"
1599
- },
1600
- {
1601
- "source": "test-projects/flask-app/app/blog/forms.py",
1602
- "target": "flask_wtf.py",
1603
- "type": "from"
1604
- },
1605
- {
1606
- "source": "test-projects/flask-app/app/blog/forms.py",
1607
- "target": "wtforms.py",
1608
- "type": "from"
1609
- },
1610
- {
1611
- "source": "test-projects/flask-app/app/blog/forms.py",
1612
- "target": "wtforms/validators.py",
1613
- "type": "from"
1614
- },
1615
- {
1616
- "source": "test-projects/flask-app/app/blog/routes.py",
1617
- "target": "flask.py",
1618
- "type": "from"
1619
- },
1620
- {
1621
- "source": "test-projects/flask-app/app/blog/routes.py",
1622
- "target": "flask_login.py",
1623
- "type": "from"
1624
- },
1625
- {
1626
- "source": "test-projects/flask-app/app/blog/routes.py",
1627
- "target": "app.py",
1628
- "type": "from"
1629
- },
1630
- {
1631
- "source": "test-projects/flask-app/app/blog/routes.py",
1632
- "target": "app/models.py",
1633
- "type": "from"
1634
- },
1635
- {
1636
- "source": "test-projects/flask-app/app/blog/routes.py",
1637
- "target": "app/blog/forms.py",
1638
- "type": "from"
1639
- },
1640
- {
1641
- "source": "test-projects/flask-app/app/main/__init__.py",
1642
- "target": "flask.py",
1643
- "type": "from"
1644
- },
1645
- {
1646
- "source": "test-projects/flask-app/app/main/__init__.py",
1647
- "target": "app/main.py",
1648
- "type": "from"
1649
- },
1650
- {
1651
- "source": "test-projects/flask-app/app/main/routes.py",
1652
- "target": "flask.py",
1653
- "type": "from"
1654
- },
1655
- {
1656
- "source": "test-projects/flask-app/app/main/routes.py",
1657
- "target": "app/models.py",
1658
- "type": "from"
1659
- },
1660
- {
1661
- "source": "test-projects/flask-app/app/main/routes.py",
1662
- "target": "app.py",
1663
- "type": "from"
1664
- },
1665
- {
1666
- "source": "test-projects/flask-app/app/models.py",
1667
- "target": "datetime.py",
1668
- "type": "from"
1669
- },
1670
- {
1671
- "source": "test-projects/flask-app/app/models.py",
1672
- "target": "werkzeug/security.py",
1673
- "type": "from"
1674
- },
1675
- {
1676
- "source": "test-projects/flask-app/app/models.py",
1677
- "target": "flask_login.py",
1678
- "type": "from"
1679
- },
1680
- {
1681
- "source": "test-projects/flask-app/app/models.py",
1682
- "target": "app.py",
1683
- "type": "from"
1684
- },
1685
- {
1686
- "source": "test-projects/flask-app/config.py",
1687
- "target": "dotenv.py",
1688
- "type": "from"
1689
- },
1690
- {
1691
- "source": "test-projects/flask-app/config.py",
1692
- "target": "os.py",
1693
- "type": "import"
1694
- },
1695
- {
1696
- "source": "test-projects/nestjs-backend/src/app.module.ts",
1697
- "target": "test-projects/nestjs-backend/src/auth/auth.module",
1698
- "type": "import"
1699
- },
1700
- {
1701
- "source": "test-projects/nestjs-backend/src/app.module.ts",
1702
- "target": "test-projects/nestjs-backend/src/users/users.module",
1703
- "type": "import"
1704
- },
1705
- {
1706
- "source": "test-projects/nestjs-backend/src/app.module.ts",
1707
- "target": "test-projects/nestjs-backend/src/auth/auth.module",
1708
- "type": "import"
1709
- },
1710
- {
1711
- "source": "test-projects/nestjs-backend/src/app.module.ts",
1712
- "target": "test-projects/nestjs-backend/src/users/users.module",
1713
- "type": "import"
1714
- },
1715
- {
1716
- "source": "test-projects/nestjs-backend/src/auth/auth.controller.ts",
1717
- "target": "test-projects/nestjs-backend/src/auth/auth.service",
1718
- "type": "import"
1719
- },
1720
- {
1721
- "source": "test-projects/nestjs-backend/src/auth/auth.controller.ts",
1722
- "target": "test-projects/nestjs-backend/src/auth/dto/login.dto",
1723
- "type": "import"
1724
- },
1725
- {
1726
- "source": "test-projects/nestjs-backend/src/auth/auth.controller.ts",
1727
- "target": "test-projects/nestjs-backend/src/auth/auth.service",
1728
- "type": "import"
1729
- },
1730
- {
1731
- "source": "test-projects/nestjs-backend/src/auth/auth.controller.ts",
1732
- "target": "test-projects/nestjs-backend/src/auth/dto/login.dto",
1733
- "type": "import"
1734
- },
1735
- {
1736
- "source": "test-projects/nestjs-backend/src/auth/auth.module.ts",
1737
- "target": "test-projects/nestjs-backend/src/auth/auth.controller",
1738
- "type": "import"
1739
- },
1740
- {
1741
- "source": "test-projects/nestjs-backend/src/auth/auth.module.ts",
1742
- "target": "test-projects/nestjs-backend/src/auth/auth.service",
1743
- "type": "import"
1744
- },
1745
- {
1746
- "source": "test-projects/nestjs-backend/src/auth/auth.module.ts",
1747
- "target": "test-projects/nestjs-backend/src/auth/strategies/jwt.strategy",
1748
- "type": "import"
1749
- },
1750
- {
1751
- "source": "test-projects/nestjs-backend/src/auth/auth.module.ts",
1752
- "target": "test-projects/nestjs-backend/src/auth/auth.controller",
1753
- "type": "import"
1754
- },
1755
- {
1756
- "source": "test-projects/nestjs-backend/src/auth/auth.module.ts",
1757
- "target": "test-projects/nestjs-backend/src/auth/auth.service",
1758
- "type": "import"
1759
- },
1760
- {
1761
- "source": "test-projects/nestjs-backend/src/auth/auth.module.ts",
1762
- "target": "test-projects/nestjs-backend/src/auth/strategies/jwt.strategy",
1763
- "type": "import"
1764
- },
1765
- {
1766
- "source": "test-projects/nestjs-backend/src/main.ts",
1767
- "target": "test-projects/nestjs-backend/src/app.module",
1768
- "type": "import"
1769
- },
1770
- {
1771
- "source": "test-projects/nestjs-backend/src/main.ts",
1772
- "target": "test-projects/nestjs-backend/src/app.module",
1773
- "type": "import"
1774
- },
1775
- {
1776
- "source": "test-projects/nestjs-backend/src/users/users.controller.ts",
1777
- "target": "test-projects/nestjs-backend/src/users/users.service",
1778
- "type": "import"
1779
- },
1780
- {
1781
- "source": "test-projects/nestjs-backend/src/users/users.controller.ts",
1782
- "target": "test-projects/nestjs-backend/src/users/users.service",
1783
- "type": "import"
1784
- },
1785
- {
1786
- "source": "test-projects/nestjs-backend/src/users/users.module.ts",
1787
- "target": "test-projects/nestjs-backend/src/users/users.controller",
1788
- "type": "import"
1789
- },
1790
- {
1791
- "source": "test-projects/nestjs-backend/src/users/users.module.ts",
1792
- "target": "test-projects/nestjs-backend/src/users/users.service",
1793
- "type": "import"
1794
- },
1795
- {
1796
- "source": "test-projects/nestjs-backend/src/users/users.module.ts",
1797
- "target": "test-projects/nestjs-backend/src/users/users.controller",
1798
- "type": "import"
1799
- },
1800
- {
1801
- "source": "test-projects/nestjs-backend/src/users/users.module.ts",
1802
- "target": "test-projects/nestjs-backend/src/users/users.service",
1803
- "type": "import"
1804
- },
1805
- {
1806
- "source": "test-projects/python-cli/cli/__init__.py",
1807
- "target": "/.py",
1808
- "type": "from"
1809
- },
1810
- {
1811
- "source": "test-projects/python-cli/main.py",
1812
- "target": "cli/commands.py",
1813
- "type": "from"
1814
- },
1815
- {
1816
- "source": "test-projects/python-cli/main.py",
1817
- "target": "argparse.py",
1818
- "type": "import"
1819
- },
1820
- {
1821
- "source": "test-projects/python-cli/models/__init__.py",
1822
- "target": "/task.py",
1823
- "type": "from"
1824
- },
1825
- {
1826
- "source": "test-projects/python-cli/models/__init__.py",
1827
- "target": "/task_repository.py",
1828
- "type": "from"
1829
- },
1830
- {
1831
- "source": "test-projects/python-cli/models/task.py",
1832
- "target": "datetime.py",
1833
- "type": "from"
1834
- },
1835
- {
1836
- "source": "test-projects/python-cli/models/task_repository.py",
1837
- "target": "models/task.py",
1838
- "type": "from"
1839
- },
1840
- {
1841
- "source": "test-projects/python-cli/models/task_repository.py",
1842
- "target": "datetime.py",
1843
- "type": "from"
1844
- },
1845
- {
1846
- "source": "test-projects/react-app/src/App.tsx",
1847
- "target": "test-projects/react-app/src/context/AuthContext",
1848
- "type": "import"
1849
- },
1850
- {
1851
- "source": "test-projects/react-app/src/App.tsx",
1852
- "target": "test-projects/react-app/src/pages/LoginPage",
1853
- "type": "import"
1854
- },
1855
- {
1856
- "source": "test-projects/react-app/src/App.tsx",
1857
- "target": "test-projects/react-app/src/pages/DashboardPage",
1858
- "type": "import"
1859
- },
1860
- {
1861
- "source": "test-projects/react-app/src/App.tsx",
1862
- "target": "test-projects/react-app/src/pages/UsersPage",
1863
- "type": "import"
1864
- },
1865
- {
1866
- "source": "test-projects/react-app/src/App.tsx",
1867
- "target": "test-projects/react-app/src/context/AuthContext",
1868
- "type": "import"
1869
- },
1870
- {
1871
- "source": "test-projects/react-app/src/App.tsx",
1872
- "target": "test-projects/react-app/src/pages/LoginPage",
1873
- "type": "import"
1874
- },
1875
- {
1876
- "source": "test-projects/react-app/src/App.tsx",
1877
- "target": "test-projects/react-app/src/pages/DashboardPage",
1878
- "type": "import"
1879
- },
1880
- {
1881
- "source": "test-projects/react-app/src/App.tsx",
1882
- "target": "test-projects/react-app/src/pages/UsersPage",
1883
- "type": "import"
1884
- },
1885
- {
1886
- "source": "test-projects/react-app/src/hooks/useAuth.ts",
1887
- "target": "test-projects/react-app/src/context/AuthContext",
1888
- "type": "import"
1889
- },
1890
- {
1891
- "source": "test-projects/react-app/src/hooks/useAuth.ts",
1892
- "target": "test-projects/react-app/src/context/AuthContext",
1893
- "type": "import"
1894
- },
1895
- {
1896
- "source": "test-projects/react-app/src/main.tsx",
1897
- "target": "test-projects/react-app/src/App",
1898
- "type": "import"
1899
- },
1900
- {
1901
- "source": "test-projects/react-app/src/main.tsx",
1902
- "target": "test-projects/react-app/src/App",
1903
- "type": "import"
1904
- },
1905
- {
1906
- "source": "test-projects/react-app/src/pages/DashboardPage.tsx",
1907
- "target": "test-projects/react-app/src/hooks/useAuth",
1908
- "type": "import"
1909
- },
1910
- {
1911
- "source": "test-projects/react-app/src/pages/DashboardPage.tsx",
1912
- "target": "test-projects/react-app/src/hooks/useAuth",
1913
- "type": "import"
1914
- },
1915
- {
1916
- "source": "test-projects/react-app/src/pages/LoginPage.tsx",
1917
- "target": "test-projects/react-app/src/hooks/useAuth",
1918
- "type": "import"
1919
- },
1920
- {
1921
- "source": "test-projects/react-app/src/pages/LoginPage.tsx",
1922
- "target": "test-projects/react-app/src/hooks/useAuth",
1923
- "type": "import"
1924
- },
1925
- {
1926
- "source": "test-projects/react-app/src/pages/UsersPage.tsx",
1927
- "target": "test-projects/react-app/src/services/userService",
1928
- "type": "import"
1929
- },
1930
- {
1931
- "source": "test-projects/react-app/src/pages/UsersPage.tsx",
1932
- "target": "test-projects/react-app/src/services/userService",
1933
- "type": "import"
1934
- },
1935
- {
1936
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/DemoApplication.java",
1937
- "target": "org/springframework/boot/SpringApplication.java",
1938
- "type": "import"
1939
- },
1940
- {
1941
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/DemoApplication.java",
1942
- "target": "org/springframework/boot/autoconfigure/SpringBootApplication.java",
1943
- "type": "import"
1944
- },
1945
- {
1946
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/CommentController.java",
1947
- "target": "com/example/demo/models/Comment.java",
1948
- "type": "import"
1949
- },
1950
- {
1951
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/CommentController.java",
1952
- "target": "com/example/demo/repositories/CommentRepository.java",
1953
- "type": "import"
1954
- },
1955
- {
1956
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/CommentController.java",
1957
- "target": "jakarta/validation/Valid.java",
1958
- "type": "import"
1959
- },
1960
- {
1961
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/CommentController.java",
1962
- "target": "jakarta/validation/constraints/NotBlank.java",
1963
- "type": "import"
1964
- },
1965
- {
1966
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/CommentController.java",
1967
- "target": "jakarta/validation/constraints/NotNull.java",
1968
- "type": "import"
1969
- },
1970
- {
1971
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/CommentController.java",
1972
- "target": "lombok/RequiredArgsConstructor.java",
1973
- "type": "import"
1974
- },
1975
- {
1976
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/CommentController.java",
1977
- "target": "org/springframework/http/HttpStatus.java",
1978
- "type": "import"
1979
- },
1980
- {
1981
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/CommentController.java",
1982
- "target": "org/springframework/http/ResponseEntity.java",
1983
- "type": "import"
1984
- },
1985
- {
1986
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/PostController.java",
1987
- "target": "com/example/demo/models/Post.java",
1988
- "type": "import"
1989
- },
1990
- {
1991
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/PostController.java",
1992
- "target": "com/example/demo/services/PostService.java",
1993
- "type": "import"
1994
- },
1995
- {
1996
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/PostController.java",
1997
- "target": "jakarta/validation/Valid.java",
1998
- "type": "import"
1999
- },
2000
- {
2001
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/PostController.java",
2002
- "target": "jakarta/validation/constraints/NotBlank.java",
2003
- "type": "import"
2004
- },
2005
- {
2006
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/PostController.java",
2007
- "target": "jakarta/validation/constraints/NotNull.java",
2008
- "type": "import"
2009
- },
2010
- {
2011
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/PostController.java",
2012
- "target": "lombok/RequiredArgsConstructor.java",
2013
- "type": "import"
2014
- },
2015
- {
2016
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/PostController.java",
2017
- "target": "org/springframework/http/HttpStatus.java",
2018
- "type": "import"
2019
- },
2020
- {
2021
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/PostController.java",
2022
- "target": "org/springframework/http/ResponseEntity.java",
2023
- "type": "import"
2024
- },
2025
- {
2026
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/UserController.java",
2027
- "target": "com/example/demo/models/User.java",
2028
- "type": "import"
2029
- },
2030
- {
2031
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/UserController.java",
2032
- "target": "com/example/demo/services/UserService.java",
2033
- "type": "import"
2034
- },
2035
- {
2036
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/UserController.java",
2037
- "target": "jakarta/validation/Valid.java",
2038
- "type": "import"
2039
- },
2040
- {
2041
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/UserController.java",
2042
- "target": "jakarta/validation/constraints/Email.java",
2043
- "type": "import"
2044
- },
2045
- {
2046
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/UserController.java",
2047
- "target": "jakarta/validation/constraints/NotBlank.java",
2048
- "type": "import"
2049
- },
2050
- {
2051
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/UserController.java",
2052
- "target": "lombok/RequiredArgsConstructor.java",
2053
- "type": "import"
2054
- },
2055
- {
2056
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/UserController.java",
2057
- "target": "org/springframework/http/HttpStatus.java",
2058
- "type": "import"
2059
- },
2060
- {
2061
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/UserController.java",
2062
- "target": "org/springframework/http/ResponseEntity.java",
2063
- "type": "import"
2064
- },
2065
- {
2066
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/CommentRepository.java",
2067
- "target": "com/example/demo/models/Comment.java",
2068
- "type": "import"
2069
- },
2070
- {
2071
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/CommentRepository.java",
2072
- "target": "com/example/demo/models/Post.java",
2073
- "type": "import"
2074
- },
2075
- {
2076
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/CommentRepository.java",
2077
- "target": "com/example/demo/models/User.java",
2078
- "type": "import"
2079
- },
2080
- {
2081
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/CommentRepository.java",
2082
- "target": "org/springframework/data/jpa/repository/JpaRepository.java",
2083
- "type": "import"
2084
- },
2085
- {
2086
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/CommentRepository.java",
2087
- "target": "org/springframework/stereotype/Repository.java",
2088
- "type": "import"
2089
- },
2090
- {
2091
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/PostRepository.java",
2092
- "target": "com/example/demo/models/Post.java",
2093
- "type": "import"
2094
- },
2095
- {
2096
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/PostRepository.java",
2097
- "target": "com/example/demo/models/User.java",
2098
- "type": "import"
2099
- },
2100
- {
2101
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/PostRepository.java",
2102
- "target": "org/springframework/data/jpa/repository/JpaRepository.java",
2103
- "type": "import"
2104
- },
2105
- {
2106
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/PostRepository.java",
2107
- "target": "org/springframework/stereotype/Repository.java",
2108
- "type": "import"
2109
- },
2110
- {
2111
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/UserRepository.java",
2112
- "target": "com/example/demo/models/User.java",
2113
- "type": "import"
2114
- },
2115
- {
2116
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/UserRepository.java",
2117
- "target": "org/springframework/data/jpa/repository/JpaRepository.java",
2118
- "type": "import"
2119
- },
2120
- {
2121
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/UserRepository.java",
2122
- "target": "org/springframework/stereotype/Repository.java",
2123
- "type": "import"
2124
- },
2125
- {
2126
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/PostService.java",
2127
- "target": "com/example/demo/models/Post.java",
2128
- "type": "import"
2129
- },
2130
- {
2131
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/PostService.java",
2132
- "target": "com/example/demo/models/User.java",
2133
- "type": "import"
2134
- },
2135
- {
2136
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/PostService.java",
2137
- "target": "com/example/demo/repositories/PostRepository.java",
2138
- "type": "import"
2139
- },
2140
- {
2141
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/PostService.java",
2142
- "target": "com/example/demo/repositories/UserRepository.java",
2143
- "type": "import"
2144
- },
2145
- {
2146
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/PostService.java",
2147
- "target": "lombok/RequiredArgsConstructor.java",
2148
- "type": "import"
2149
- },
2150
- {
2151
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/PostService.java",
2152
- "target": "org/springframework/stereotype/Service.java",
2153
- "type": "import"
2154
- },
2155
- {
2156
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/PostService.java",
2157
- "target": "org/springframework/transaction/annotation/Transactional.java",
2158
- "type": "import"
2159
- },
2160
- {
2161
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/UserService.java",
2162
- "target": "com/example/demo/models/User.java",
2163
- "type": "import"
2164
- },
2165
- {
2166
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/UserService.java",
2167
- "target": "com/example/demo/repositories/UserRepository.java",
2168
- "type": "import"
2169
- },
2170
- {
2171
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/UserService.java",
2172
- "target": "lombok/RequiredArgsConstructor.java",
2173
- "type": "import"
2174
- },
2175
- {
2176
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/UserService.java",
2177
- "target": "org/springframework/stereotype/Service.java",
2178
- "type": "import"
2179
- },
2180
- {
2181
- "source": "test-projects/spring-boot-app/src/main/java/com/example/demo/services/UserService.java",
2182
- "target": "org/springframework/transaction/annotation/Transactional.java",
2183
- "type": "import"
2184
- },
2185
- {
2186
- "source": "tests/adapters.test.ts",
2187
- "target": "src/core/adapters/index.js",
2188
- "type": "import"
2189
- },
2190
- {
2191
- "source": "tests/adapters.test.ts",
2192
- "target": "src/core/adapters/index.js",
2193
- "type": "import"
2194
- },
2195
- {
2196
- "source": "tests/gitAnalyzer.test.ts",
2197
- "target": "src/core/gitAnalyzer.js",
2198
- "type": "import"
2199
- },
2200
- {
2201
- "source": "tests/gitAnalyzer.test.ts",
2202
- "target": "src/core/gitAnalyzer.js",
2203
- "type": "import"
2204
- },
2205
- {
2206
- "source": "tests/incrementalAnalyzer.test.ts",
2207
- "target": "src/core/incrementalAnalyzer.js",
2208
- "type": "import"
2209
- },
2210
- {
2211
- "source": "tests/incrementalAnalyzer.test.ts",
2212
- "target": "src/core/incrementalAnalyzer.js",
2213
- "type": "import"
2214
- },
2215
- {
2216
- "source": "tests/knowledgeGraph.test.ts",
2217
- "target": "src/core/knowledgeGraphBuilder.js",
2218
- "type": "import"
2219
- },
2220
- {
2221
- "source": "tests/knowledgeGraph.test.ts",
2222
- "target": "src/core/knowledgeGraphBuilder.js",
2223
- "type": "import"
2224
- },
2225
- {
2226
- "source": "tests/lazyAnalyzer.test.ts",
2227
- "target": "src/core/lazyAnalyzer.js",
2228
- "type": "import"
2229
- },
2230
- {
2231
- "source": "tests/lazyAnalyzer.test.ts",
2232
- "target": "tests/auth",
2233
- "type": "import"
2234
- },
2235
- {
2236
- "source": "tests/lazyAnalyzer.test.ts",
2237
- "target": "src/core/lazyAnalyzer.js",
2238
- "type": "import"
2239
- },
2240
- {
2241
- "source": "tests/lazyAnalyzer.test.ts",
2242
- "target": "tests/auth",
2243
- "type": "import"
2244
- },
2245
- {
2246
- "source": "tests/schema.test.ts",
2247
- "target": "src/core/schema.js",
2248
- "type": "import"
2249
- },
2250
- {
2251
- "source": "tests/schema.test.ts",
2252
- "target": "src/core/schema.js",
2253
- "type": "import"
2254
- },
2255
- {
2256
- "source": "tests/semanticContexts.test.ts",
2257
- "target": "src/core/semanticContexts.js",
2258
- "type": "import"
2259
- },
2260
- {
2261
- "source": "tests/semanticContexts.test.ts",
2262
- "target": "src/core/semanticContexts.js",
2263
- "type": "import"
2264
- }
2265
- ],
2266
- "byFile": {
2267
- "docs/.vitepress/theme/index.ts": [
2268
- "docs/.vitepress/theme/custom.css"
2269
- ],
2270
- "src/analyzers/aiRules.ts": [
2271
- "src/core/repoScanner.js",
2272
- "src/analyzers/conventions.js",
2273
- "src/analyzers/entrypoints.js",
2274
- "src/analyzers/techStack.js",
2275
- "src/analyzers/architecture.js",
2276
- "src/core/repoScanner.js",
2277
- "src/analyzers/conventions.js",
2278
- "src/analyzers/entrypoints.js",
2279
- "src/analyzers/techStack.js",
2280
- "src/analyzers/architecture.js"
2281
- ],
2282
- "src/analyzers/androidResources.ts": [
2283
- "src/core/repoScanner.js",
2284
- "src/core/repoScanner.js"
2285
- ],
2286
- "src/analyzers/architecture.ts": [
2287
- "src/core/repoScanner.js",
2288
- "src/utils/fileUtils.js",
2289
- "src/core/repoScanner.js",
2290
- "src/utils/fileUtils.js"
2291
- ],
2292
- "src/analyzers/conventions.ts": [
2293
- "src/core/repoScanner.js",
2294
- "src/utils/fileUtils.js",
2295
- "src/core/repoScanner.js",
2296
- "src/utils/fileUtils.js"
2297
- ],
2298
- "src/analyzers/dependencies.ts": [
2299
- "src/core/repoScanner.js",
2300
- "src/utils/fileUtils.js",
2301
- "src/core/repoScanner.js",
2302
- "src/utils/fileUtils.js"
2303
- ],
2304
- "src/analyzers/entrypoints.ts": [
2305
- "src/core/repoScanner.js",
2306
- "src/utils/fileUtils.js",
2307
- "src/core/repoScanner.js",
2308
- "src/utils/fileUtils.js"
2309
- ],
2310
- "src/analyzers/gradleModules.ts": [
2311
- "src/core/repoScanner.js",
2312
- "src/utils/fileUtils.js",
2313
- "src/core/repoScanner.js",
2314
- "src/utils/fileUtils.js"
2315
- ],
2316
- "src/analyzers/symbols.ts": [
2317
- "src/core/repoScanner.js",
2318
- "src/utils/fileUtils.js",
2319
- "src/core/repoScanner.js",
2320
- "src/utils/fileUtils.js"
2321
- ],
2322
- "src/analyzers/techStack.ts": [
2323
- "src/core/repoScanner.js",
2324
- "src/utils/fileUtils.js",
2325
- "src/core/repoScanner.js",
2326
- "src/utils/fileUtils.js"
2327
- ],
2328
- "src/commands/ai-first.ts": [
2329
- "src/core/repoScanner.js",
2330
- "src/core/repoMapper.js",
2331
- "src/core/indexer.js",
2332
- "src/core/aiContextGenerator.js",
2333
- "src/core/hierarchyGenerator.js",
2334
- "src/utils/fileUtils.js",
2335
- "src/analyzers/architecture.js",
2336
- "src/analyzers/techStack.js",
2337
- "src/analyzers/entrypoints.js",
2338
- "src/analyzers/conventions.js",
2339
- "src/analyzers/symbols.js",
2340
- "src/analyzers/dependencies.js",
2341
- "src/analyzers/aiRules.js",
2342
- "src/core/moduleGraph.js",
2343
- "src/core/indexState.js",
2344
- "src/core/chunker.js",
2345
- "src/core/embeddings.js",
2346
- "src/core/ccp.js",
2347
- "src/core/semanticContexts.js",
2348
- "src/commands/doctor.js",
2349
- "src/commands/explore.js",
2350
- "src/core/adapters/index.js",
2351
- "src/core/gitAnalyzer.js",
2352
- "src/core/knowledgeGraphBuilder.js",
2353
- "src/core/incrementalAnalyzer.js",
2354
- "src/core/schema.js",
2355
- "src/core/repoScanner.js",
2356
- "src/core/repoMapper.js",
2357
- "src/core/indexer.js",
2358
- "src/core/aiContextGenerator.js",
2359
- "src/core/hierarchyGenerator.js",
2360
- "src/utils/fileUtils.js",
2361
- "src/analyzers/architecture.js",
2362
- "src/analyzers/techStack.js",
2363
- "src/analyzers/entrypoints.js",
2364
- "src/analyzers/conventions.js",
2365
- "src/analyzers/symbols.js",
2366
- "src/analyzers/dependencies.js",
2367
- "src/analyzers/aiRules.js",
2368
- "src/core/moduleGraph.js",
2369
- "src/core/indexState.js",
2370
- "src/core/chunker.js",
2371
- "src/core/embeddings.js",
2372
- "src/core/ccp.js",
2373
- "src/core/semanticContexts.js",
2374
- "src/commands/doctor.js",
2375
- "src/commands/explore.js",
2376
- "src/core/adapters/index.js",
2377
- "src/core/gitAnalyzer.js",
2378
- "src/core/knowledgeGraphBuilder.js",
2379
- "src/core/incrementalAnalyzer.js",
2380
- "src/core/schema.js"
2381
- ],
2382
- "src/commands/doctor.ts": [
2383
- "src/core/repoScanner.js",
2384
- "src/core/repoScanner.js"
2385
- ],
2386
- "src/commands/explore.ts": [
2387
- "src/core/repoScanner.js",
2388
- "src/core/moduleGraph.js",
2389
- "src/core/repoScanner.js",
2390
- "src/core/moduleGraph.js"
2391
- ],
2392
- "src/core/adapters/adapterRegistry.ts": [
2393
- "src/core/adapters/baseAdapter.js",
2394
- "src/core/adapters/javascriptAdapter.js",
2395
- "src/core/adapters/pythonAdapter.js",
2396
- "src/core/adapters/railsAdapter.js",
2397
- "src/core/adapters/salesforceAdapter.js",
2398
- "src/core/adapters/dotnetAdapter.js",
2399
- "src/core/adapters/community/index.js",
2400
- "src/core/adapters/baseAdapter.js",
2401
- "src/core/adapters/javascriptAdapter.js",
2402
- "src/core/adapters/pythonAdapter.js",
2403
- "src/core/adapters/railsAdapter.js",
2404
- "src/core/adapters/salesforceAdapter.js",
2405
- "src/core/adapters/dotnetAdapter.js",
2406
- "src/core/adapters/community/index.js"
2407
- ],
2408
- "src/core/adapters/community/fastapiAdapter.ts": [
2409
- "src/core/adapters/sdk.js",
2410
- "src/core/adapters/sdk.js"
2411
- ],
2412
- "src/core/adapters/community/laravelAdapter.ts": [
2413
- "src/core/adapters/sdk.js",
2414
- "src/core/adapters/sdk.js"
2415
- ],
2416
- "src/core/adapters/community/nestjsAdapter.ts": [
2417
- "src/core/adapters/sdk.js",
2418
- "src/core/adapters/sdk.js"
2419
- ],
2420
- "src/core/adapters/community/phoenixAdapter.ts": [
2421
- "src/core/adapters/sdk.js",
2422
- "src/core/adapters/sdk.js"
2423
- ],
2424
- "src/core/adapters/community/springBootAdapter.ts": [
2425
- "src/core/adapters/sdk.js",
2426
- "src/core/adapters/sdk.js"
2427
- ],
2428
- "src/core/adapters/dotnetAdapter.ts": [
2429
- "src/core/adapters/baseAdapter.js",
2430
- "src/core/adapters/baseAdapter.js"
2431
- ],
2432
- "src/core/adapters/javascriptAdapter.ts": [
2433
- "src/core/adapters/baseAdapter.js",
2434
- "src/core/adapters/baseAdapter.js"
2435
- ],
2436
- "src/core/adapters/pythonAdapter.ts": [
2437
- "src/core/adapters/baseAdapter.js",
2438
- "src/core/adapters/baseAdapter.js"
2439
- ],
2440
- "src/core/adapters/railsAdapter.ts": [
2441
- "src/core/adapters/baseAdapter.js",
2442
- "src/core/adapters/baseAdapter.js"
2443
- ],
2444
- "src/core/adapters/salesforceAdapter.ts": [
2445
- "src/core/adapters/baseAdapter.js",
2446
- "src/core/adapters/baseAdapter.js"
2447
- ],
2448
- "src/core/adapters/sdk.ts": [
2449
- "src/core/adapters/baseAdapter.js",
2450
- "src/core/adapters/adapters/sdk.js",
2451
- "src/core/adapters/baseAdapter.js",
2452
- "src/core/adapters/adapters/sdk.js"
2453
- ],
2454
- "src/core/aiContextGenerator.ts": [
2455
- "src/core/repoScanner.js",
2456
- "src/utils/fileUtils.js",
2457
- "src/core/repoScanner.js",
2458
- "src/utils/fileUtils.js"
2459
- ],
2460
- "src/core/ccp.ts": [
2461
- "src/utils/fileUtils.js",
2462
- "src/utils/fileUtils.js"
2463
- ],
2464
- "src/core/contextPacket.ts": [
2465
- "src/core/symbolGraph.js",
2466
- "src/utils/fileUtils.js",
2467
- "src/core/symbolGraph.js",
2468
- "src/utils/fileUtils.js"
2469
- ],
2470
- "src/core/embeddings.ts": [
2471
- "src/core/chunker.js",
2472
- "src/core/chunker.js"
2473
- ],
2474
- "src/core/gitAnalyzer.ts": [
2475
- "src/utils/fileUtils.js",
2476
- "src/utils/fileUtils.js"
2477
- ],
2478
- "src/core/hierarchyGenerator.ts": [
2479
- "src/utils/fileUtils.js",
2480
- "src/utils/fileUtils.js"
2481
- ],
2482
- "src/core/incrementalAnalyzer.ts": [
2483
- "src/utils/fileUtils.js",
2484
- "src/core/indexState.js",
2485
- "src/analyzers/symbols.js",
2486
- "src/core/repoScanner.js",
2487
- "src/core/knowledgeGraphBuilder.js",
2488
- "src/utils/fileUtils.js",
2489
- "src/core/indexState.js",
2490
- "src/analyzers/symbols.js",
2491
- "src/core/repoScanner.js",
2492
- "src/core/knowledgeGraphBuilder.js"
2493
- ],
2494
- "src/core/indexer.ts": [
2495
- "src/core/repoScanner.js",
2496
- "src/utils/fileUtils.js",
2497
- "src/core/repoScanner.js",
2498
- "src/utils/fileUtils.js"
2499
- ],
2500
- "src/core/knowledgeGraphBuilder.ts": [
2501
- "src/utils/fileUtils.js",
2502
- "src/utils/fileUtils.js"
2503
- ],
2504
- "src/core/lazyAnalyzer.ts": [
2505
- "src/utils/fileUtils.js",
2506
- "src/core/repoScanner.js",
2507
- "src/core/repoMapper.js",
2508
- "src/analyzers/techStack.js",
2509
- "src/analyzers/entrypoints.js",
2510
- "src/analyzers/symbols.js",
2511
- "src/analyzers/dependencies.js",
2512
- "src/core/semanticContexts.js",
2513
- "src/core/knowledgeGraphBuilder.js",
2514
- "src/utils/fileUtils.js",
2515
- "src/core/repoScanner.js",
2516
- "src/core/repoMapper.js",
2517
- "src/analyzers/techStack.js",
2518
- "src/analyzers/entrypoints.js",
2519
- "src/analyzers/symbols.js",
2520
- "src/analyzers/dependencies.js",
2521
- "src/core/semanticContexts.js",
2522
- "src/core/knowledgeGraphBuilder.js"
2523
- ],
2524
- "src/core/moduleGraph.ts": [
2525
- "src/core/repoScanner.js",
2526
- "src/core/repoScanner.js"
2527
- ],
2528
- "src/core/repoMapper.ts": [
2529
- "src/core/repoScanner.js",
2530
- "src/core/repoScanner.js"
2531
- ],
2532
- "src/core/repoScanner.ts": [
2533
- "src/utils/fileUtils.js",
2534
- "src/utils/fileUtils.js"
2535
- ],
2536
- "src/core/schema.ts": [
2537
- "src/utils/fileUtils.js",
2538
- "src/utils/fileUtils.js"
2539
- ],
2540
- "src/core/semanticContexts.ts": [
2541
- "src/utils/fileUtils.js",
2542
- "src/utils/fileUtils.js"
2543
- ],
2544
- "src/core/symbolGraph.ts": [
2545
- "src/core/repoScanner.js",
2546
- "src/analyzers/symbols.js",
2547
- "src/analyzers/dependencies.js",
2548
- "src/utils/fileUtils.js",
2549
- "src/core/repoScanner.js",
2550
- "src/analyzers/symbols.js",
2551
- "src/analyzers/dependencies.js",
2552
- "src/utils/fileUtils.js"
2553
- ],
2554
- "test-projects/django-app/blog/admin.py": [
2555
- "django/contrib.py",
2556
- "/models.py"
2557
- ],
2558
- "test-projects/django-app/blog/models.py": [
2559
- "django/db.py",
2560
- "django/contrib/auth/models.py"
2561
- ],
2562
- "test-projects/django-app/blog/serializers.py": [
2563
- "rest_framework.py",
2564
- "django/contrib/auth/models.py",
2565
- "/models.py"
2566
- ],
2567
- "test-projects/django-app/blog/urls.py": [
2568
- "django/urls.py",
2569
- "rest_framework/routers.py",
2570
- "/views.py"
2571
- ],
2572
- "test-projects/django-app/blog/views.py": [
2573
- "rest_framework.py",
2574
- "rest_framework/decorators.py",
2575
- "rest_framework/response.py",
2576
- "rest_framework/permissions.py",
2577
- "django/contrib/auth/models.py",
2578
- "/models.py",
2579
- "/serializers.py"
2580
- ],
2581
- "test-projects/django-app/django_app/settings.py": [
2582
- "pathlib.py"
2583
- ],
2584
- "test-projects/django-app/django_app/urls.py": [
2585
- "django/contrib.py",
2586
- "django/urls.py"
2587
- ],
2588
- "test-projects/django-app/django_app/wsgi.py": [
2589
- "django/core/wsgi.py",
2590
- "os.py"
2591
- ],
2592
- "test-projects/django-app/manage.py": [
2593
- "os.py",
2594
- "sys.py"
2595
- ],
2596
- "test-projects/django-app/users/admin.py": [
2597
- "django/contrib.py",
2598
- "django/contrib/auth/admin.py",
2599
- "django/contrib/auth/models.py",
2600
- "/models.py"
2601
- ],
2602
- "test-projects/django-app/users/models.py": [
2603
- "django/db.py",
2604
- "django/contrib/auth/models.py",
2605
- "django/db/models/signals.py",
2606
- "django/dispatch.py"
2607
- ],
2608
- "test-projects/django-app/users/serializers.py": [
2609
- "rest_framework.py",
2610
- "django/contrib/auth/models.py",
2611
- "/models.py"
2612
- ],
2613
- "test-projects/django-app/users/urls.py": [
2614
- "django/urls.py",
2615
- "rest_framework/routers.py",
2616
- "/views.py"
2617
- ],
2618
- "test-projects/django-app/users/views.py": [
2619
- "rest_framework.py",
2620
- "rest_framework/decorators.py",
2621
- "rest_framework/response.py",
2622
- "rest_framework/permissions.py",
2623
- "django/contrib/auth/models.py",
2624
- "django/contrib/auth.py",
2625
- "/models.py",
2626
- "/serializers.py"
2627
- ],
2628
- "test-projects/express-api/controllers/authController.js": [
2629
- "test-projects/express-api/services/authService"
2630
- ],
2631
- "test-projects/express-api/controllers/userController.js": [
2632
- "test-projects/express-api/services/userService"
2633
- ],
2634
- "test-projects/express-api/index.js": [
2635
- "test-projects/express-api/controllers/authController",
2636
- "test-projects/express-api/controllers/userController"
2637
- ],
2638
- "test-projects/express-api/services/authService.js": [
2639
- "test-projects/express-api/models/userRepository"
2640
- ],
2641
- "test-projects/express-api/services/userService.js": [
2642
- "test-projects/express-api/models/userRepository"
2643
- ],
2644
- "test-projects/fastapi-app/app/database.py": [
2645
- "sqlalchemy.py",
2646
- "sqlalchemy/ext/declarative.py",
2647
- "sqlalchemy/orm.py"
2648
- ],
2649
- "test-projects/fastapi-app/app/dependencies.py": [
2650
- "datetime.py",
2651
- "typing.py",
2652
- "jose.py",
2653
- "passlib/context.py",
2654
- "sqlalchemy/orm.py",
2655
- "fastapi.py",
2656
- "fastapi/security.py",
2657
- "app.py",
2658
- "app/database.py"
2659
- ],
2660
- "test-projects/fastapi-app/app/main.py": [
2661
- "fastapi.py",
2662
- "fastapi/middleware/cors.py",
2663
- "app/database.py",
2664
- "app/routers.py"
2665
- ],
2666
- "test-projects/fastapi-app/app/models.py": [
2667
- "sqlalchemy.py",
2668
- "sqlalchemy/orm.py",
2669
- "sqlalchemy/sql.py",
2670
- "app/database.py"
2671
- ],
2672
- "test-projects/fastapi-app/app/routers/auth.py": [
2673
- "datetime.py",
2674
- "typing.py",
2675
- "fastapi.py",
2676
- "sqlalchemy/orm.py",
2677
- "app.py",
2678
- "app/database.py",
2679
- "app/dependencies.py"
2680
- ],
2681
- "test-projects/fastapi-app/app/routers/posts.py": [
2682
- "typing.py",
2683
- "fastapi.py",
2684
- "sqlalchemy/orm.py",
2685
- "sqlalchemy.py",
2686
- "app.py",
2687
- "app/database.py",
2688
- "app/dependencies.py"
2689
- ],
2690
- "test-projects/fastapi-app/app/schemas.py": [
2691
- "datetime.py",
2692
- "typing.py",
2693
- "pydantic.py"
2694
- ],
2695
- "test-projects/flask-app/app/__init__.py": [
2696
- "flask.py",
2697
- "flask_sqlalchemy.py",
2698
- "flask_migrate.py",
2699
- "flask_login.py",
2700
- "config.py",
2701
- "app.py"
2702
- ],
2703
- "test-projects/flask-app/app/api/__init__.py": [
2704
- "flask.py",
2705
- "app/api.py"
2706
- ],
2707
- "test-projects/flask-app/app/api/routes.py": [
2708
- "flask.py",
2709
- "app.py",
2710
- "app/models.py"
2711
- ],
2712
- "test-projects/flask-app/app/auth/__init__.py": [
2713
- "flask.py",
2714
- "app/auth.py"
2715
- ],
2716
- "test-projects/flask-app/app/auth/forms.py": [
2717
- "flask_wtf.py",
2718
- "wtforms.py",
2719
- "wtforms/validators.py",
2720
- "app/models.py"
2721
- ],
2722
- "test-projects/flask-app/app/auth/routes.py": [
2723
- "flask.py",
2724
- "flask_login.py",
2725
- "werkzeug/urls.py",
2726
- "app.py",
2727
- "app/models.py",
2728
- "app/auth/forms.py"
2729
- ],
2730
- "test-projects/flask-app/app/blog/__init__.py": [
2731
- "flask.py",
2732
- "app/blog.py"
2733
- ],
2734
- "test-projects/flask-app/app/blog/forms.py": [
2735
- "flask_wtf.py",
2736
- "wtforms.py",
2737
- "wtforms/validators.py"
2738
- ],
2739
- "test-projects/flask-app/app/blog/routes.py": [
2740
- "flask.py",
2741
- "flask_login.py",
2742
- "app.py",
2743
- "app/models.py",
2744
- "app/blog/forms.py"
2745
- ],
2746
- "test-projects/flask-app/app/main/__init__.py": [
2747
- "flask.py",
2748
- "app/main.py"
2749
- ],
2750
- "test-projects/flask-app/app/main/routes.py": [
2751
- "flask.py",
2752
- "app/models.py",
2753
- "app.py"
2754
- ],
2755
- "test-projects/flask-app/app/models.py": [
2756
- "datetime.py",
2757
- "werkzeug/security.py",
2758
- "flask_login.py",
2759
- "app.py"
2760
- ],
2761
- "test-projects/flask-app/config.py": [
2762
- "dotenv.py",
2763
- "os.py"
2764
- ],
2765
- "test-projects/nestjs-backend/src/app.module.ts": [
2766
- "test-projects/nestjs-backend/src/auth/auth.module",
2767
- "test-projects/nestjs-backend/src/users/users.module",
2768
- "test-projects/nestjs-backend/src/auth/auth.module",
2769
- "test-projects/nestjs-backend/src/users/users.module"
2770
- ],
2771
- "test-projects/nestjs-backend/src/auth/auth.controller.ts": [
2772
- "test-projects/nestjs-backend/src/auth/auth.service",
2773
- "test-projects/nestjs-backend/src/auth/dto/login.dto",
2774
- "test-projects/nestjs-backend/src/auth/auth.service",
2775
- "test-projects/nestjs-backend/src/auth/dto/login.dto"
2776
- ],
2777
- "test-projects/nestjs-backend/src/auth/auth.module.ts": [
2778
- "test-projects/nestjs-backend/src/auth/auth.controller",
2779
- "test-projects/nestjs-backend/src/auth/auth.service",
2780
- "test-projects/nestjs-backend/src/auth/strategies/jwt.strategy",
2781
- "test-projects/nestjs-backend/src/auth/auth.controller",
2782
- "test-projects/nestjs-backend/src/auth/auth.service",
2783
- "test-projects/nestjs-backend/src/auth/strategies/jwt.strategy"
2784
- ],
2785
- "test-projects/nestjs-backend/src/main.ts": [
2786
- "test-projects/nestjs-backend/src/app.module",
2787
- "test-projects/nestjs-backend/src/app.module"
2788
- ],
2789
- "test-projects/nestjs-backend/src/users/users.controller.ts": [
2790
- "test-projects/nestjs-backend/src/users/users.service",
2791
- "test-projects/nestjs-backend/src/users/users.service"
2792
- ],
2793
- "test-projects/nestjs-backend/src/users/users.module.ts": [
2794
- "test-projects/nestjs-backend/src/users/users.controller",
2795
- "test-projects/nestjs-backend/src/users/users.service",
2796
- "test-projects/nestjs-backend/src/users/users.controller",
2797
- "test-projects/nestjs-backend/src/users/users.service"
2798
- ],
2799
- "test-projects/python-cli/cli/__init__.py": [
2800
- "/.py"
2801
- ],
2802
- "test-projects/python-cli/main.py": [
2803
- "cli/commands.py",
2804
- "argparse.py"
2805
- ],
2806
- "test-projects/python-cli/models/__init__.py": [
2807
- "/task.py",
2808
- "/task_repository.py"
2809
- ],
2810
- "test-projects/python-cli/models/task.py": [
2811
- "datetime.py"
2812
- ],
2813
- "test-projects/python-cli/models/task_repository.py": [
2814
- "models/task.py",
2815
- "datetime.py"
2816
- ],
2817
- "test-projects/react-app/src/App.tsx": [
2818
- "test-projects/react-app/src/context/AuthContext",
2819
- "test-projects/react-app/src/pages/LoginPage",
2820
- "test-projects/react-app/src/pages/DashboardPage",
2821
- "test-projects/react-app/src/pages/UsersPage",
2822
- "test-projects/react-app/src/context/AuthContext",
2823
- "test-projects/react-app/src/pages/LoginPage",
2824
- "test-projects/react-app/src/pages/DashboardPage",
2825
- "test-projects/react-app/src/pages/UsersPage"
2826
- ],
2827
- "test-projects/react-app/src/hooks/useAuth.ts": [
2828
- "test-projects/react-app/src/context/AuthContext",
2829
- "test-projects/react-app/src/context/AuthContext"
2830
- ],
2831
- "test-projects/react-app/src/main.tsx": [
2832
- "test-projects/react-app/src/App",
2833
- "test-projects/react-app/src/App"
2834
- ],
2835
- "test-projects/react-app/src/pages/DashboardPage.tsx": [
2836
- "test-projects/react-app/src/hooks/useAuth",
2837
- "test-projects/react-app/src/hooks/useAuth"
2838
- ],
2839
- "test-projects/react-app/src/pages/LoginPage.tsx": [
2840
- "test-projects/react-app/src/hooks/useAuth",
2841
- "test-projects/react-app/src/hooks/useAuth"
2842
- ],
2843
- "test-projects/react-app/src/pages/UsersPage.tsx": [
2844
- "test-projects/react-app/src/services/userService",
2845
- "test-projects/react-app/src/services/userService"
2846
- ],
2847
- "test-projects/spring-boot-app/src/main/java/com/example/demo/DemoApplication.java": [
2848
- "org/springframework/boot/SpringApplication.java",
2849
- "org/springframework/boot/autoconfigure/SpringBootApplication.java"
2850
- ],
2851
- "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/CommentController.java": [
2852
- "com/example/demo/models/Comment.java",
2853
- "com/example/demo/repositories/CommentRepository.java",
2854
- "jakarta/validation/Valid.java",
2855
- "jakarta/validation/constraints/NotBlank.java",
2856
- "jakarta/validation/constraints/NotNull.java",
2857
- "lombok/RequiredArgsConstructor.java",
2858
- "org/springframework/http/HttpStatus.java",
2859
- "org/springframework/http/ResponseEntity.java"
2860
- ],
2861
- "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/PostController.java": [
2862
- "com/example/demo/models/Post.java",
2863
- "com/example/demo/services/PostService.java",
2864
- "jakarta/validation/Valid.java",
2865
- "jakarta/validation/constraints/NotBlank.java",
2866
- "jakarta/validation/constraints/NotNull.java",
2867
- "lombok/RequiredArgsConstructor.java",
2868
- "org/springframework/http/HttpStatus.java",
2869
- "org/springframework/http/ResponseEntity.java"
2870
- ],
2871
- "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/UserController.java": [
2872
- "com/example/demo/models/User.java",
2873
- "com/example/demo/services/UserService.java",
2874
- "jakarta/validation/Valid.java",
2875
- "jakarta/validation/constraints/Email.java",
2876
- "jakarta/validation/constraints/NotBlank.java",
2877
- "lombok/RequiredArgsConstructor.java",
2878
- "org/springframework/http/HttpStatus.java",
2879
- "org/springframework/http/ResponseEntity.java"
2880
- ],
2881
- "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/CommentRepository.java": [
2882
- "com/example/demo/models/Comment.java",
2883
- "com/example/demo/models/Post.java",
2884
- "com/example/demo/models/User.java",
2885
- "org/springframework/data/jpa/repository/JpaRepository.java",
2886
- "org/springframework/stereotype/Repository.java"
2887
- ],
2888
- "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/PostRepository.java": [
2889
- "com/example/demo/models/Post.java",
2890
- "com/example/demo/models/User.java",
2891
- "org/springframework/data/jpa/repository/JpaRepository.java",
2892
- "org/springframework/stereotype/Repository.java"
2893
- ],
2894
- "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/UserRepository.java": [
2895
- "com/example/demo/models/User.java",
2896
- "org/springframework/data/jpa/repository/JpaRepository.java",
2897
- "org/springframework/stereotype/Repository.java"
2898
- ],
2899
- "test-projects/spring-boot-app/src/main/java/com/example/demo/services/PostService.java": [
2900
- "com/example/demo/models/Post.java",
2901
- "com/example/demo/models/User.java",
2902
- "com/example/demo/repositories/PostRepository.java",
2903
- "com/example/demo/repositories/UserRepository.java",
2904
- "lombok/RequiredArgsConstructor.java",
2905
- "org/springframework/stereotype/Service.java",
2906
- "org/springframework/transaction/annotation/Transactional.java"
2907
- ],
2908
- "test-projects/spring-boot-app/src/main/java/com/example/demo/services/UserService.java": [
2909
- "com/example/demo/models/User.java",
2910
- "com/example/demo/repositories/UserRepository.java",
2911
- "lombok/RequiredArgsConstructor.java",
2912
- "org/springframework/stereotype/Service.java",
2913
- "org/springframework/transaction/annotation/Transactional.java"
2914
- ],
2915
- "tests/adapters.test.ts": [
2916
- "src/core/adapters/index.js",
2917
- "src/core/adapters/index.js"
2918
- ],
2919
- "tests/gitAnalyzer.test.ts": [
2920
- "src/core/gitAnalyzer.js",
2921
- "src/core/gitAnalyzer.js"
2922
- ],
2923
- "tests/incrementalAnalyzer.test.ts": [
2924
- "src/core/incrementalAnalyzer.js",
2925
- "src/core/incrementalAnalyzer.js"
2926
- ],
2927
- "tests/knowledgeGraph.test.ts": [
2928
- "src/core/knowledgeGraphBuilder.js",
2929
- "src/core/knowledgeGraphBuilder.js"
2930
- ],
2931
- "tests/lazyAnalyzer.test.ts": [
2932
- "src/core/lazyAnalyzer.js",
2933
- "tests/auth",
2934
- "src/core/lazyAnalyzer.js",
2935
- "tests/auth"
2936
- ],
2937
- "tests/schema.test.ts": [
2938
- "src/core/schema.js",
2939
- "src/core/schema.js"
2940
- ],
2941
- "tests/semanticContexts.test.ts": [
2942
- "src/core/semanticContexts.js",
2943
- "src/core/semanticContexts.js"
2944
- ]
2945
- }
2946
- }