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