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,866 +0,0 @@
1
- {
2
- "modules": [
3
- {
4
- "name": ".netlify",
5
- "paths": [
6
- ".netlify/state.json"
7
- ]
8
- },
9
- {
10
- "name": "docs",
11
- "paths": [
12
- "docs/.vitepress/config.ts",
13
- "docs/.vitepress/theme/custom.css",
14
- "docs/.vitepress/theme/index.ts",
15
- "docs/es/guide/adapters.md",
16
- "docs/es/guide/ai-repository-schema.md",
17
- "docs/es/guide/features.md",
18
- "docs/es/guide/flows.md",
19
- "docs/es/guide/getting-started.md",
20
- "docs/es/guide/git-intelligence.md",
21
- "docs/es/guide/incremental-analysis.md",
22
- "docs/es/guide/knowledge-graph.md",
23
- "docs/es/guide/lazy-indexing.md",
24
- "docs/es/guide/performance.md",
25
- "docs/es/index.md",
26
- "docs/examples/express-api.md",
27
- "docs/examples/index.md",
28
- "docs/examples/python-django.md",
29
- "docs/examples/react-app.md",
30
- "docs/guide/adapters.md",
31
- "docs/guide/ai-repository-schema.md",
32
- "docs/guide/architecture.md",
33
- "docs/guide/flows.md",
34
- "docs/guide/getting-started.md",
35
- "docs/guide/git-intelligence.md",
36
- "docs/guide/incremental-analysis.md",
37
- "docs/guide/installation.md",
38
- "docs/guide/knowledge-graph.md",
39
- "docs/guide/lazy-indexing.md",
40
- "docs/guide/performance.md",
41
- "docs/guide/quick-start.md",
42
- "docs/index.md",
43
- "docs/reference/commands.md"
44
- ]
45
- },
46
- {
47
- "name": "examples",
48
- "paths": [
49
- "examples/01-express-api.md",
50
- "examples/02-react-app.md",
51
- "examples/03-python-django.md",
52
- "examples/README.md"
53
- ]
54
- },
55
- {
56
- "name": "src",
57
- "paths": [
58
- "src/analyzers/aiRules.ts",
59
- "src/analyzers/androidResources.ts",
60
- "src/analyzers/architecture.ts",
61
- "src/analyzers/conventions.ts",
62
- "src/analyzers/dependencies.ts",
63
- "src/analyzers/entrypoints.ts",
64
- "src/analyzers/gradleModules.ts",
65
- "src/analyzers/symbols.ts",
66
- "src/analyzers/techStack.ts",
67
- "src/commands/ai-first.ts",
68
- "src/commands/doctor.ts",
69
- "src/commands/explore.ts",
70
- "src/core/adapters/adapterRegistry.ts",
71
- "src/core/adapters/baseAdapter.ts",
72
- "src/core/adapters/community/fastapiAdapter.ts",
73
- "src/core/adapters/community/index.ts",
74
- "src/core/adapters/community/laravelAdapter.ts",
75
- "src/core/adapters/community/nestjsAdapter.ts",
76
- "src/core/adapters/community/phoenixAdapter.ts",
77
- "src/core/adapters/community/springBootAdapter.ts",
78
- "src/core/adapters/dotnetAdapter.ts",
79
- "src/core/adapters/index.ts",
80
- "src/core/adapters/javascriptAdapter.ts",
81
- "src/core/adapters/pythonAdapter.ts",
82
- "src/core/adapters/railsAdapter.ts",
83
- "src/core/adapters/salesforceAdapter.ts",
84
- "src/core/adapters/sdk.ts",
85
- "src/core/aiContextGenerator.ts",
86
- "src/core/ccp.ts",
87
- "src/core/chunker.ts",
88
- "src/core/contextGenerator.ts",
89
- "src/core/contextPacket.ts",
90
- "src/core/embeddings.ts",
91
- "src/core/gitAnalyzer.ts",
92
- "src/core/hierarchyGenerator.ts",
93
- "src/core/incrementalAnalyzer.ts",
94
- "src/core/indexState.ts",
95
- "src/core/indexer.ts",
96
- "src/core/knowledgeGraphBuilder.ts",
97
- "src/core/lazyAnalyzer.ts",
98
- "src/core/moduleGraph.ts",
99
- "src/core/repoMapper.ts",
100
- "src/core/repoScanner.ts",
101
- "src/core/schema.ts",
102
- "src/core/semanticContexts.ts",
103
- "src/core/symbolGraph.ts",
104
- "src/index.ts",
105
- "src/types/sql.js.d.ts",
106
- "src/utils/fileUtils.ts"
107
- ]
108
- },
109
- {
110
- "name": "test-projects",
111
- "paths": [
112
- "test-projects/django-app/README.md",
113
- "test-projects/django-app/ai/ai_context.md",
114
- "test-projects/django-app/ai/ai_rules.md",
115
- "test-projects/django-app/ai/architecture.md",
116
- "test-projects/django-app/ai/cache.json",
117
- "test-projects/django-app/ai/context/flows/views.json",
118
- "test-projects/django-app/ai/conventions.md",
119
- "test-projects/django-app/ai/dependencies.json",
120
- "test-projects/django-app/ai/entrypoints.md",
121
- "test-projects/django-app/ai/files.json",
122
- "test-projects/django-app/ai/graph/module-graph.json",
123
- "test-projects/django-app/ai/graph/symbol-graph.json",
124
- "test-projects/django-app/ai/graph/symbol-references.json",
125
- "test-projects/django-app/ai/index-state.json",
126
- "test-projects/django-app/ai/modules.json",
127
- "test-projects/django-app/ai/project.json",
128
- "test-projects/django-app/ai/repo-map.json",
129
- "test-projects/django-app/ai/repo_map.json",
130
- "test-projects/django-app/ai/repo_map.md",
131
- "test-projects/django-app/ai/schema.json",
132
- "test-projects/django-app/ai/summary.md",
133
- "test-projects/django-app/ai/symbols.json",
134
- "test-projects/django-app/ai/tech_stack.md",
135
- "test-projects/django-app/ai/tools.json",
136
- "test-projects/django-app/blog/__init__.py",
137
- "test-projects/django-app/blog/admin.py",
138
- "test-projects/django-app/blog/models.py",
139
- "test-projects/django-app/blog/serializers.py",
140
- "test-projects/django-app/blog/urls.py",
141
- "test-projects/django-app/blog/views.py",
142
- "test-projects/django-app/django_app/__init__.py",
143
- "test-projects/django-app/django_app/settings.py",
144
- "test-projects/django-app/django_app/urls.py",
145
- "test-projects/django-app/django_app/wsgi.py",
146
- "test-projects/django-app/manage.py",
147
- "test-projects/django-app/users/__init__.py",
148
- "test-projects/django-app/users/admin.py",
149
- "test-projects/django-app/users/models.py",
150
- "test-projects/django-app/users/serializers.py",
151
- "test-projects/django-app/users/urls.py",
152
- "test-projects/django-app/users/views.py",
153
- "test-projects/express-api/ai/ai_context.md",
154
- "test-projects/express-api/ai/ai_rules.md",
155
- "test-projects/express-api/ai/architecture.md",
156
- "test-projects/express-api/ai/cache.json",
157
- "test-projects/express-api/ai/context/features/controllers.json",
158
- "test-projects/express-api/ai/context/features/services.json",
159
- "test-projects/express-api/ai/context/flows/auth.json",
160
- "test-projects/express-api/ai/context/flows/user.json",
161
- "test-projects/express-api/ai/conventions.md",
162
- "test-projects/express-api/ai/dependencies.json",
163
- "test-projects/express-api/ai/entrypoints.md",
164
- "test-projects/express-api/ai/files.json",
165
- "test-projects/express-api/ai/graph/knowledge-graph.json",
166
- "test-projects/express-api/ai/graph/module-graph.json",
167
- "test-projects/express-api/ai/graph/symbol-graph.json",
168
- "test-projects/express-api/ai/graph/symbol-references.json",
169
- "test-projects/express-api/ai/index-state.json",
170
- "test-projects/express-api/ai/modules.json",
171
- "test-projects/express-api/ai/project.json",
172
- "test-projects/express-api/ai/repo-map.json",
173
- "test-projects/express-api/ai/repo_map.json",
174
- "test-projects/express-api/ai/repo_map.md",
175
- "test-projects/express-api/ai/schema.json",
176
- "test-projects/express-api/ai/summary.md",
177
- "test-projects/express-api/ai/symbols.json",
178
- "test-projects/express-api/ai/tech_stack.md",
179
- "test-projects/express-api/ai/tools.json",
180
- "test-projects/express-api/controllers/authController.js",
181
- "test-projects/express-api/controllers/userController.js",
182
- "test-projects/express-api/index.js",
183
- "test-projects/express-api/middleware/authMiddleware.js",
184
- "test-projects/express-api/models/userRepository.js",
185
- "test-projects/express-api/package.json",
186
- "test-projects/express-api/services/authService.js",
187
- "test-projects/express-api/services/userService.js",
188
- "test-projects/fastapi-app/README.md",
189
- "test-projects/fastapi-app/ai/ai_context.md",
190
- "test-projects/fastapi-app/ai/ai_rules.md",
191
- "test-projects/fastapi-app/ai/architecture.md",
192
- "test-projects/fastapi-app/ai/cache.json",
193
- "test-projects/fastapi-app/ai/conventions.md",
194
- "test-projects/fastapi-app/ai/dependencies.json",
195
- "test-projects/fastapi-app/ai/entrypoints.md",
196
- "test-projects/fastapi-app/ai/files.json",
197
- "test-projects/fastapi-app/ai/graph/module-graph.json",
198
- "test-projects/fastapi-app/ai/graph/symbol-graph.json",
199
- "test-projects/fastapi-app/ai/graph/symbol-references.json",
200
- "test-projects/fastapi-app/ai/index-state.json",
201
- "test-projects/fastapi-app/ai/modules.json",
202
- "test-projects/fastapi-app/ai/project.json",
203
- "test-projects/fastapi-app/ai/repo-map.json",
204
- "test-projects/fastapi-app/ai/repo_map.json",
205
- "test-projects/fastapi-app/ai/repo_map.md",
206
- "test-projects/fastapi-app/ai/schema.json",
207
- "test-projects/fastapi-app/ai/summary.md",
208
- "test-projects/fastapi-app/ai/symbols.json",
209
- "test-projects/fastapi-app/ai/tech_stack.md",
210
- "test-projects/fastapi-app/ai/tools.json",
211
- "test-projects/fastapi-app/app/database.py",
212
- "test-projects/fastapi-app/app/dependencies.py",
213
- "test-projects/fastapi-app/app/main.py",
214
- "test-projects/fastapi-app/app/models.py",
215
- "test-projects/fastapi-app/app/routers/auth.py",
216
- "test-projects/fastapi-app/app/routers/posts.py",
217
- "test-projects/fastapi-app/app/schemas.py",
218
- "test-projects/flask-app/README.md",
219
- "test-projects/flask-app/ai/ai_context.md",
220
- "test-projects/flask-app/ai/ai_rules.md",
221
- "test-projects/flask-app/ai/architecture.md",
222
- "test-projects/flask-app/ai/cache.json",
223
- "test-projects/flask-app/ai/context/features/app.json",
224
- "test-projects/flask-app/ai/context/flows/routes.json",
225
- "test-projects/flask-app/ai/conventions.md",
226
- "test-projects/flask-app/ai/dependencies.json",
227
- "test-projects/flask-app/ai/entrypoints.md",
228
- "test-projects/flask-app/ai/files.json",
229
- "test-projects/flask-app/ai/graph/module-graph.json",
230
- "test-projects/flask-app/ai/graph/symbol-graph.json",
231
- "test-projects/flask-app/ai/graph/symbol-references.json",
232
- "test-projects/flask-app/ai/index-state.json",
233
- "test-projects/flask-app/ai/modules.json",
234
- "test-projects/flask-app/ai/project.json",
235
- "test-projects/flask-app/ai/repo-map.json",
236
- "test-projects/flask-app/ai/repo_map.json",
237
- "test-projects/flask-app/ai/repo_map.md",
238
- "test-projects/flask-app/ai/schema.json",
239
- "test-projects/flask-app/ai/summary.md",
240
- "test-projects/flask-app/ai/symbols.json",
241
- "test-projects/flask-app/ai/tech_stack.md",
242
- "test-projects/flask-app/ai/tools.json",
243
- "test-projects/flask-app/app/__init__.py",
244
- "test-projects/flask-app/app/api/__init__.py",
245
- "test-projects/flask-app/app/api/routes.py",
246
- "test-projects/flask-app/app/auth/__init__.py",
247
- "test-projects/flask-app/app/auth/forms.py",
248
- "test-projects/flask-app/app/auth/routes.py",
249
- "test-projects/flask-app/app/blog/__init__.py",
250
- "test-projects/flask-app/app/blog/forms.py",
251
- "test-projects/flask-app/app/blog/routes.py",
252
- "test-projects/flask-app/app/main/__init__.py",
253
- "test-projects/flask-app/app/main/routes.py",
254
- "test-projects/flask-app/app/models.py",
255
- "test-projects/flask-app/config.py",
256
- "test-projects/laravel-app/README.md",
257
- "test-projects/laravel-app/ai/ai_context.md",
258
- "test-projects/laravel-app/ai/ai_rules.md",
259
- "test-projects/laravel-app/ai/architecture.md",
260
- "test-projects/laravel-app/ai/cache.json",
261
- "test-projects/laravel-app/ai/context/features/app.json",
262
- "test-projects/laravel-app/ai/context/flows/category.json",
263
- "test-projects/laravel-app/ai/context/flows/comment.json",
264
- "test-projects/laravel-app/ai/context/flows/post.json",
265
- "test-projects/laravel-app/ai/context/flows/unnamed.json",
266
- "test-projects/laravel-app/ai/conventions.md",
267
- "test-projects/laravel-app/ai/dependencies.json",
268
- "test-projects/laravel-app/ai/entrypoints.md",
269
- "test-projects/laravel-app/ai/files.json",
270
- "test-projects/laravel-app/ai/graph/module-graph.json",
271
- "test-projects/laravel-app/ai/graph/symbol-graph.json",
272
- "test-projects/laravel-app/ai/graph/symbol-references.json",
273
- "test-projects/laravel-app/ai/index-state.json",
274
- "test-projects/laravel-app/ai/modules.json",
275
- "test-projects/laravel-app/ai/project.json",
276
- "test-projects/laravel-app/ai/repo-map.json",
277
- "test-projects/laravel-app/ai/repo_map.json",
278
- "test-projects/laravel-app/ai/repo_map.md",
279
- "test-projects/laravel-app/ai/schema.json",
280
- "test-projects/laravel-app/ai/summary.md",
281
- "test-projects/laravel-app/ai/symbols.json",
282
- "test-projects/laravel-app/ai/tech_stack.md",
283
- "test-projects/laravel-app/ai/tools.json",
284
- "test-projects/laravel-app/app/Http/Controllers/Api/CategoryController.php",
285
- "test-projects/laravel-app/app/Http/Controllers/Api/CommentController.php",
286
- "test-projects/laravel-app/app/Http/Controllers/Api/PostController.php",
287
- "test-projects/laravel-app/app/Http/Controllers/Controller.php",
288
- "test-projects/laravel-app/app/Models/Category.php",
289
- "test-projects/laravel-app/app/Models/Comment.php",
290
- "test-projects/laravel-app/app/Models/Post.php",
291
- "test-projects/laravel-app/app/Models/User.php",
292
- "test-projects/laravel-app/bootstrap/app.php",
293
- "test-projects/laravel-app/composer.json",
294
- "test-projects/laravel-app/routes/api.php",
295
- "test-projects/nestjs-backend/ai/ai_context.md",
296
- "test-projects/nestjs-backend/ai/ai_rules.md",
297
- "test-projects/nestjs-backend/ai/architecture.md",
298
- "test-projects/nestjs-backend/ai/cache.json",
299
- "test-projects/nestjs-backend/ai/context/features/src.json",
300
- "test-projects/nestjs-backend/ai/context/flows/auth..json",
301
- "test-projects/nestjs-backend/ai/context/flows/auth.controller.json",
302
- "test-projects/nestjs-backend/ai/context/flows/auth.json",
303
- "test-projects/nestjs-backend/ai/context/flows/users..json",
304
- "test-projects/nestjs-backend/ai/context/flows/users.controller.json",
305
- "test-projects/nestjs-backend/ai/context/flows/users.json",
306
- "test-projects/nestjs-backend/ai/conventions.md",
307
- "test-projects/nestjs-backend/ai/dependencies.json",
308
- "test-projects/nestjs-backend/ai/entrypoints.md",
309
- "test-projects/nestjs-backend/ai/files.json",
310
- "test-projects/nestjs-backend/ai/graph/module-graph.json",
311
- "test-projects/nestjs-backend/ai/graph/symbol-graph.json",
312
- "test-projects/nestjs-backend/ai/graph/symbol-references.json",
313
- "test-projects/nestjs-backend/ai/index-state.json",
314
- "test-projects/nestjs-backend/ai/modules.json",
315
- "test-projects/nestjs-backend/ai/project.json",
316
- "test-projects/nestjs-backend/ai/repo-map.json",
317
- "test-projects/nestjs-backend/ai/repo_map.json",
318
- "test-projects/nestjs-backend/ai/repo_map.md",
319
- "test-projects/nestjs-backend/ai/schema.json",
320
- "test-projects/nestjs-backend/ai/summary.md",
321
- "test-projects/nestjs-backend/ai/symbols.json",
322
- "test-projects/nestjs-backend/ai/tech_stack.md",
323
- "test-projects/nestjs-backend/ai/tools.json",
324
- "test-projects/nestjs-backend/package.json",
325
- "test-projects/nestjs-backend/src/app.module.ts",
326
- "test-projects/nestjs-backend/src/auth/auth.controller.ts",
327
- "test-projects/nestjs-backend/src/auth/auth.module.ts",
328
- "test-projects/nestjs-backend/src/auth/auth.service.ts",
329
- "test-projects/nestjs-backend/src/auth/dto/login.dto.ts",
330
- "test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts",
331
- "test-projects/nestjs-backend/src/main.ts",
332
- "test-projects/nestjs-backend/src/users/users.controller.ts",
333
- "test-projects/nestjs-backend/src/users/users.module.ts",
334
- "test-projects/nestjs-backend/src/users/users.service.ts",
335
- "test-projects/nestjs-backend/tsconfig.json",
336
- "test-projects/python-cli/__init__.py",
337
- "test-projects/python-cli/ai/ai_context.md",
338
- "test-projects/python-cli/ai/ai_rules.md",
339
- "test-projects/python-cli/ai/architecture.md",
340
- "test-projects/python-cli/ai/cache.json",
341
- "test-projects/python-cli/ai/context/features/cli.json",
342
- "test-projects/python-cli/ai/context/flows/add_.json",
343
- "test-projects/python-cli/ai/context/flows/list_.json",
344
- "test-projects/python-cli/ai/context/flows/remove_.json",
345
- "test-projects/python-cli/ai/conventions.md",
346
- "test-projects/python-cli/ai/dependencies.json",
347
- "test-projects/python-cli/ai/entrypoints.md",
348
- "test-projects/python-cli/ai/files.json",
349
- "test-projects/python-cli/ai/graph/knowledge-graph.json",
350
- "test-projects/python-cli/ai/graph/module-graph.json",
351
- "test-projects/python-cli/ai/graph/symbol-graph.json",
352
- "test-projects/python-cli/ai/graph/symbol-references.json",
353
- "test-projects/python-cli/ai/index-state.json",
354
- "test-projects/python-cli/ai/modules.json",
355
- "test-projects/python-cli/ai/project.json",
356
- "test-projects/python-cli/ai/repo-map.json",
357
- "test-projects/python-cli/ai/repo_map.json",
358
- "test-projects/python-cli/ai/repo_map.md",
359
- "test-projects/python-cli/ai/schema.json",
360
- "test-projects/python-cli/ai/summary.md",
361
- "test-projects/python-cli/ai/symbols.json",
362
- "test-projects/python-cli/ai/tech_stack.md",
363
- "test-projects/python-cli/ai/tools.json",
364
- "test-projects/python-cli/cli/__init__.py",
365
- "test-projects/python-cli/cli/add_command.py",
366
- "test-projects/python-cli/cli/list_command.py",
367
- "test-projects/python-cli/cli/remove_command.py",
368
- "test-projects/python-cli/main.py",
369
- "test-projects/python-cli/models/__init__.py",
370
- "test-projects/python-cli/models/task.py",
371
- "test-projects/python-cli/models/task_repository.py",
372
- "test-projects/rails-app/README.md",
373
- "test-projects/rails-app/ai/ai_context.md",
374
- "test-projects/rails-app/ai/ai_rules.md",
375
- "test-projects/rails-app/ai/architecture.md",
376
- "test-projects/rails-app/ai/cache.json",
377
- "test-projects/rails-app/ai/context/features/app.json",
378
- "test-projects/rails-app/ai/context/features/config.json",
379
- "test-projects/rails-app/ai/context/flows/application.json",
380
- "test-projects/rails-app/ai/context/flows/application_.json",
381
- "test-projects/rails-app/ai/context/flows/comments.json",
382
- "test-projects/rails-app/ai/context/flows/comments_.json",
383
- "test-projects/rails-app/ai/context/flows/posts.json",
384
- "test-projects/rails-app/ai/context/flows/posts_.json",
385
- "test-projects/rails-app/ai/context/flows/routes.json",
386
- "test-projects/rails-app/ai/context/flows/users.json",
387
- "test-projects/rails-app/ai/context/flows/users_.json",
388
- "test-projects/rails-app/ai/conventions.md",
389
- "test-projects/rails-app/ai/dependencies.json",
390
- "test-projects/rails-app/ai/entrypoints.md",
391
- "test-projects/rails-app/ai/files.json",
392
- "test-projects/rails-app/ai/graph/knowledge-graph.json",
393
- "test-projects/rails-app/ai/graph/module-graph.json",
394
- "test-projects/rails-app/ai/graph/symbol-graph.json",
395
- "test-projects/rails-app/ai/graph/symbol-references.json",
396
- "test-projects/rails-app/ai/index-state.json",
397
- "test-projects/rails-app/ai/modules.json",
398
- "test-projects/rails-app/ai/project.json",
399
- "test-projects/rails-app/ai/repo-map.json",
400
- "test-projects/rails-app/ai/repo_map.json",
401
- "test-projects/rails-app/ai/repo_map.md",
402
- "test-projects/rails-app/ai/schema.json",
403
- "test-projects/rails-app/ai/summary.md",
404
- "test-projects/rails-app/ai/symbols.json",
405
- "test-projects/rails-app/ai/tech_stack.md",
406
- "test-projects/rails-app/ai/tools.json",
407
- "test-projects/rails-app/app/controllers/api/comments_controller.rb",
408
- "test-projects/rails-app/app/controllers/api/posts_controller.rb",
409
- "test-projects/rails-app/app/controllers/api/users_controller.rb",
410
- "test-projects/rails-app/app/controllers/application_controller.rb",
411
- "test-projects/rails-app/app/models/comment.rb",
412
- "test-projects/rails-app/app/models/post.rb",
413
- "test-projects/rails-app/app/models/user.rb",
414
- "test-projects/rails-app/app/services/post_service.rb",
415
- "test-projects/rails-app/app/services/user_service.rb",
416
- "test-projects/rails-app/config/application.rb",
417
- "test-projects/rails-app/config/environment.rb",
418
- "test-projects/rails-app/config/routes.rb",
419
- "test-projects/react-app/ai/ai_context.md",
420
- "test-projects/react-app/ai/ai_rules.md",
421
- "test-projects/react-app/ai/architecture.md",
422
- "test-projects/react-app/ai/cache.json",
423
- "test-projects/react-app/ai/context/features/src.json",
424
- "test-projects/react-app/ai/context/flows/UsersPage.json",
425
- "test-projects/react-app/ai/context/flows/dashboard.json",
426
- "test-projects/react-app/ai/context/flows/login.json",
427
- "test-projects/react-app/ai/context/flows/users.json",
428
- "test-projects/react-app/ai/conventions.md",
429
- "test-projects/react-app/ai/dependencies.json",
430
- "test-projects/react-app/ai/entrypoints.md",
431
- "test-projects/react-app/ai/files.json",
432
- "test-projects/react-app/ai/graph/knowledge-graph.json",
433
- "test-projects/react-app/ai/graph/module-graph.json",
434
- "test-projects/react-app/ai/graph/symbol-graph.json",
435
- "test-projects/react-app/ai/graph/symbol-references.json",
436
- "test-projects/react-app/ai/index-state.json",
437
- "test-projects/react-app/ai/modules.json",
438
- "test-projects/react-app/ai/project.json",
439
- "test-projects/react-app/ai/repo-map.json",
440
- "test-projects/react-app/ai/repo_map.json",
441
- "test-projects/react-app/ai/repo_map.md",
442
- "test-projects/react-app/ai/schema.json",
443
- "test-projects/react-app/ai/summary.md",
444
- "test-projects/react-app/ai/symbols.json",
445
- "test-projects/react-app/ai/tech_stack.md",
446
- "test-projects/react-app/ai/tools.json",
447
- "test-projects/react-app/package.json",
448
- "test-projects/react-app/src/App.tsx",
449
- "test-projects/react-app/src/context/AuthContext.tsx",
450
- "test-projects/react-app/src/hooks/useAuth.ts",
451
- "test-projects/react-app/src/main.tsx",
452
- "test-projects/react-app/src/pages/DashboardPage.tsx",
453
- "test-projects/react-app/src/pages/LoginPage.tsx",
454
- "test-projects/react-app/src/pages/UsersPage.tsx",
455
- "test-projects/react-app/src/services/userService.ts",
456
- "test-projects/salesforce-cli/ai/ai_context.md",
457
- "test-projects/salesforce-cli/ai/ai_rules.md",
458
- "test-projects/salesforce-cli/ai/architecture.md",
459
- "test-projects/salesforce-cli/ai/cache.json",
460
- "test-projects/salesforce-cli/ai/context/features/force-app.json",
461
- "test-projects/salesforce-cli/ai/context/flows/account.json",
462
- "test-projects/salesforce-cli/ai/context/flows/opportunity.json",
463
- "test-projects/salesforce-cli/ai/conventions.md",
464
- "test-projects/salesforce-cli/ai/dependencies.json",
465
- "test-projects/salesforce-cli/ai/entrypoints.md",
466
- "test-projects/salesforce-cli/ai/files.json",
467
- "test-projects/salesforce-cli/ai/graph/knowledge-graph.json",
468
- "test-projects/salesforce-cli/ai/graph/module-graph.json",
469
- "test-projects/salesforce-cli/ai/graph/symbol-graph.json",
470
- "test-projects/salesforce-cli/ai/graph/symbol-references.json",
471
- "test-projects/salesforce-cli/ai/index-state.json",
472
- "test-projects/salesforce-cli/ai/modules.json",
473
- "test-projects/salesforce-cli/ai/project.json",
474
- "test-projects/salesforce-cli/ai/repo-map.json",
475
- "test-projects/salesforce-cli/ai/repo_map.json",
476
- "test-projects/salesforce-cli/ai/repo_map.md",
477
- "test-projects/salesforce-cli/ai/schema.json",
478
- "test-projects/salesforce-cli/ai/summary.md",
479
- "test-projects/salesforce-cli/ai/symbols.json",
480
- "test-projects/salesforce-cli/ai/tech_stack.md",
481
- "test-projects/salesforce-cli/ai/tools.json",
482
- "test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls",
483
- "test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls",
484
- "test-projects/salesforce-cli/force-app/main/default/triggers/AccountTrigger.trigger",
485
- "test-projects/salesforce-cli/sfdx-project.json",
486
- "test-projects/spring-boot-app/README.md",
487
- "test-projects/spring-boot-app/ai/ai_context.md",
488
- "test-projects/spring-boot-app/ai/ai_rules.md",
489
- "test-projects/spring-boot-app/ai/architecture.md",
490
- "test-projects/spring-boot-app/ai/cache.json",
491
- "test-projects/spring-boot-app/ai/context/features/src.json",
492
- "test-projects/spring-boot-app/ai/context/flows/PostController.json",
493
- "test-projects/spring-boot-app/ai/context/flows/UserController.json",
494
- "test-projects/spring-boot-app/ai/context/flows/comment.json",
495
- "test-projects/spring-boot-app/ai/context/flows/post.json",
496
- "test-projects/spring-boot-app/ai/context/flows/user.json",
497
- "test-projects/spring-boot-app/ai/conventions.md",
498
- "test-projects/spring-boot-app/ai/dependencies.json",
499
- "test-projects/spring-boot-app/ai/entrypoints.md",
500
- "test-projects/spring-boot-app/ai/files.json",
501
- "test-projects/spring-boot-app/ai/graph/knowledge-graph.json",
502
- "test-projects/spring-boot-app/ai/graph/module-graph.json",
503
- "test-projects/spring-boot-app/ai/graph/symbol-graph.json",
504
- "test-projects/spring-boot-app/ai/graph/symbol-references.json",
505
- "test-projects/spring-boot-app/ai/index-state.json",
506
- "test-projects/spring-boot-app/ai/modules.json",
507
- "test-projects/spring-boot-app/ai/project.json",
508
- "test-projects/spring-boot-app/ai/repo-map.json",
509
- "test-projects/spring-boot-app/ai/repo_map.json",
510
- "test-projects/spring-boot-app/ai/repo_map.md",
511
- "test-projects/spring-boot-app/ai/schema.json",
512
- "test-projects/spring-boot-app/ai/summary.md",
513
- "test-projects/spring-boot-app/ai/symbols.json",
514
- "test-projects/spring-boot-app/ai/tech_stack.md",
515
- "test-projects/spring-boot-app/ai/tools.json",
516
- "test-projects/spring-boot-app/src/main/java/com/example/demo/DemoApplication.java",
517
- "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/CommentController.java",
518
- "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/PostController.java",
519
- "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/UserController.java",
520
- "test-projects/spring-boot-app/src/main/java/com/example/demo/models/Comment.java",
521
- "test-projects/spring-boot-app/src/main/java/com/example/demo/models/Post.java",
522
- "test-projects/spring-boot-app/src/main/java/com/example/demo/models/User.java",
523
- "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/CommentRepository.java",
524
- "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/PostRepository.java",
525
- "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/UserRepository.java",
526
- "test-projects/spring-boot-app/src/main/java/com/example/demo/services/PostService.java",
527
- "test-projects/spring-boot-app/src/main/java/com/example/demo/services/UserService.java"
528
- ]
529
- },
530
- {
531
- "name": "tests",
532
- "paths": [
533
- "tests/adapters.test.ts",
534
- "tests/e2e/README.md",
535
- "tests/gitAnalyzer.test.ts",
536
- "tests/incrementalAnalyzer.test.ts",
537
- "tests/knowledgeGraph.test.ts",
538
- "tests/lazyAnalyzer.test.ts",
539
- "tests/schema.test.ts",
540
- "tests/semanticContexts.test.ts"
541
- ]
542
- }
543
- ],
544
- "dependencies": [
545
- {
546
- "from": "docs",
547
- "to": "vitepress"
548
- },
549
- {
550
- "from": "docs",
551
- "to": "path"
552
- },
553
- {
554
- "from": "src",
555
- "to": "path"
556
- },
557
- {
558
- "from": "src",
559
- "to": "x"
560
- },
561
- {
562
- "from": "src",
563
- "to": "@alias"
564
- },
565
- {
566
- "from": "src",
567
- "to": "package"
568
- },
569
- {
570
- "from": "src",
571
- "to": "fs"
572
- },
573
- {
574
- "from": "src",
575
- "to": "url"
576
- },
577
- {
578
- "from": "src",
579
- "to": "ora"
580
- },
581
- {
582
- "from": "src",
583
- "to": "process"
584
- },
585
- {
586
- "from": "src",
587
- "to": "crypto"
588
- },
589
- {
590
- "from": "src",
591
- "to": "child_process"
592
- },
593
- {
594
- "from": "src",
595
- "to": "sql.js"
596
- },
597
- {
598
- "from": "src",
599
- "to": "chokidar"
600
- },
601
- {
602
- "from": "test-projects",
603
- "to": "django.contrib"
604
- },
605
- {
606
- "from": "test-projects",
607
- "to": "django.db"
608
- },
609
- {
610
- "from": "test-projects",
611
- "to": "django.contrib.auth.models"
612
- },
613
- {
614
- "from": "test-projects",
615
- "to": "rest_framework"
616
- },
617
- {
618
- "from": "test-projects",
619
- "to": "django.urls"
620
- },
621
- {
622
- "from": "test-projects",
623
- "to": "rest_framework.routers"
624
- },
625
- {
626
- "from": "test-projects",
627
- "to": "rest_framework.decorators"
628
- },
629
- {
630
- "from": "test-projects",
631
- "to": "rest_framework.response"
632
- },
633
- {
634
- "from": "test-projects",
635
- "to": "rest_framework.permissions"
636
- },
637
- {
638
- "from": "test-projects",
639
- "to": "pathlib"
640
- },
641
- {
642
- "from": "test-projects",
643
- "to": "django.core.wsgi"
644
- },
645
- {
646
- "from": "test-projects",
647
- "to": "os"
648
- },
649
- {
650
- "from": "test-projects",
651
- "to": "sys"
652
- },
653
- {
654
- "from": "test-projects",
655
- "to": "django.contrib.auth.admin"
656
- },
657
- {
658
- "from": "test-projects",
659
- "to": "django.db.models.signals"
660
- },
661
- {
662
- "from": "test-projects",
663
- "to": "django.dispatch"
664
- },
665
- {
666
- "from": "test-projects",
667
- "to": "django.contrib.auth"
668
- },
669
- {
670
- "from": "test-projects",
671
- "to": "jsonwebtoken"
672
- },
673
- {
674
- "from": "test-projects",
675
- "to": "express"
676
- },
677
- {
678
- "from": "test-projects",
679
- "to": "bcrypt"
680
- },
681
- {
682
- "from": "test-projects",
683
- "to": "sqlalchemy"
684
- },
685
- {
686
- "from": "test-projects",
687
- "to": "sqlalchemy.ext.declarative"
688
- },
689
- {
690
- "from": "test-projects",
691
- "to": "sqlalchemy.orm"
692
- },
693
- {
694
- "from": "test-projects",
695
- "to": "datetime"
696
- },
697
- {
698
- "from": "test-projects",
699
- "to": "typing"
700
- },
701
- {
702
- "from": "test-projects",
703
- "to": "jose"
704
- },
705
- {
706
- "from": "test-projects",
707
- "to": "passlib.context"
708
- },
709
- {
710
- "from": "test-projects",
711
- "to": "fastapi"
712
- },
713
- {
714
- "from": "test-projects",
715
- "to": "fastapi.security"
716
- },
717
- {
718
- "from": "test-projects",
719
- "to": "app"
720
- },
721
- {
722
- "from": "test-projects",
723
- "to": "app.database"
724
- },
725
- {
726
- "from": "test-projects",
727
- "to": "fastapi.middleware.cors"
728
- },
729
- {
730
- "from": "test-projects",
731
- "to": "app.routers"
732
- },
733
- {
734
- "from": "test-projects",
735
- "to": "sqlalchemy.sql"
736
- },
737
- {
738
- "from": "test-projects",
739
- "to": "app.dependencies"
740
- },
741
- {
742
- "from": "test-projects",
743
- "to": "pydantic"
744
- },
745
- {
746
- "from": "test-projects",
747
- "to": "flask"
748
- },
749
- {
750
- "from": "test-projects",
751
- "to": "flask_sqlalchemy"
752
- },
753
- {
754
- "from": "test-projects",
755
- "to": "flask_migrate"
756
- },
757
- {
758
- "from": "test-projects",
759
- "to": "flask_login"
760
- },
761
- {
762
- "from": "test-projects",
763
- "to": "config"
764
- },
765
- {
766
- "from": "test-projects",
767
- "to": "app.api"
768
- },
769
- {
770
- "from": "test-projects",
771
- "to": "app.models"
772
- },
773
- {
774
- "from": "test-projects",
775
- "to": "app.auth"
776
- },
777
- {
778
- "from": "test-projects",
779
- "to": "flask_wtf"
780
- },
781
- {
782
- "from": "test-projects",
783
- "to": "wtforms"
784
- },
785
- {
786
- "from": "test-projects",
787
- "to": "wtforms.validators"
788
- },
789
- {
790
- "from": "test-projects",
791
- "to": "werkzeug.urls"
792
- },
793
- {
794
- "from": "test-projects",
795
- "to": "app.auth.forms"
796
- },
797
- {
798
- "from": "test-projects",
799
- "to": "app.blog"
800
- },
801
- {
802
- "from": "test-projects",
803
- "to": "app.blog.forms"
804
- },
805
- {
806
- "from": "test-projects",
807
- "to": "app.main"
808
- },
809
- {
810
- "from": "test-projects",
811
- "to": "werkzeug.security"
812
- },
813
- {
814
- "from": "test-projects",
815
- "to": "dotenv"
816
- },
817
- {
818
- "from": "test-projects",
819
- "to": "@nestjs"
820
- },
821
- {
822
- "from": "test-projects",
823
- "to": "passport-jwt"
824
- },
825
- {
826
- "from": "test-projects",
827
- "to": "cli.commands"
828
- },
829
- {
830
- "from": "test-projects",
831
- "to": "argparse"
832
- },
833
- {
834
- "from": "test-projects",
835
- "to": "models.task"
836
- },
837
- {
838
- "from": "test-projects",
839
- "to": "react-router-dom"
840
- },
841
- {
842
- "from": "test-projects",
843
- "to": "react"
844
- },
845
- {
846
- "from": "test-projects",
847
- "to": "react-dom"
848
- },
849
- {
850
- "from": "tests",
851
- "to": "vitest"
852
- },
853
- {
854
- "from": "tests",
855
- "to": "fs"
856
- },
857
- {
858
- "from": "tests",
859
- "to": "path"
860
- },
861
- {
862
- "from": "tests",
863
- "to": "os"
864
- }
865
- ]
866
- }