ai-first-cli 1.3.1 → 1.3.5

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 (532) hide show
  1. package/.ai-dev/index.db +0 -0
  2. package/BETA_EVALUATION_REPORT.md +151 -0
  3. package/CHANGELOG.md +178 -0
  4. package/PHASE1_USER_SIMULATION.md +56 -0
  5. package/PHASE2_USER_SIMULATION.md +81 -0
  6. package/PHASE3_USER_SIMULATION.md +176 -0
  7. package/README.es.md +18 -0
  8. package/README.md +80 -1
  9. package/ai/graph/knowledge-graph.json +10 -0
  10. package/ai-context/ai_context.md +130 -0
  11. package/{test-projects/react-app/.ai-dev → ai-context}/ai_rules.md +10 -5
  12. package/ai-context/architecture.md +136 -0
  13. package/ai-context/context/features/src.json +69 -0
  14. package/ai-context/context/features/test-projects.json +69 -0
  15. package/ai-context/context/flows/App.json +17 -0
  16. package/ai-context/context/flows/DashboardPage.json +14 -0
  17. package/ai-context/context/flows/LoginPage.json +14 -0
  18. package/ai-context/context/flows/admin.json +10 -0
  19. package/ai-context/context/flows/ai-first.json +9 -0
  20. package/ai-context/context/flows/androidresources.json +11 -0
  21. package/ai-context/context/flows/auth.json +13 -0
  22. package/ai-context/context/flows/authController.json +14 -0
  23. package/ai-context/context/flows/doctor.json +9 -0
  24. package/ai-context/context/flows/entrypoints.json +9 -0
  25. package/ai-context/context/flows/explore.json +9 -0
  26. package/ai-context/context/flows/fastapiAdapter.json +14 -0
  27. package/ai-context/context/flows/fastapiadapter.json +11 -0
  28. package/ai-context/context/flows/index.json +19 -0
  29. package/ai-context/context/flows/indexer.json +9 -0
  30. package/ai-context/context/flows/indexstate.json +9 -0
  31. package/ai-context/context/flows/init.json +22 -0
  32. package/ai-context/context/flows/main.json +18 -0
  33. package/ai-context/context/flows/mainactivity.json +9 -0
  34. package/ai-context/context/flows/models.json +15 -0
  35. package/ai-context/context/flows/posts.json +15 -0
  36. package/ai-context/context/flows/repoMapper.json +20 -0
  37. package/ai-context/context/flows/repomapper.json +11 -0
  38. package/ai-context/context/flows/routes.json +15 -0
  39. package/ai-context/context/flows/serializers.json +10 -0
  40. package/ai-context/context/flows/user.json +23 -0
  41. package/ai-context/context/flows/views.json +12 -0
  42. package/{test-projects/react-app/.ai-dev → ai-context}/conventions.md +3 -2
  43. package/ai-context/dependencies.json +3360 -0
  44. package/ai-context/entrypoints.md +45 -0
  45. package/ai-context/index-state.json +196 -0
  46. package/ai-context/modules.json +901 -0
  47. package/ai-context/project.json +33 -0
  48. package/ai-context/repo_map.json +8857 -0
  49. package/ai-context/repo_map.md +2002 -0
  50. package/{test-projects/flask-app/.ai-dev → ai-context}/schema.json +1 -1
  51. package/ai-context/summary.md +46 -0
  52. package/ai-context/symbols.json +82467 -0
  53. package/{test-projects/react-app/.ai-dev → ai-context}/tech_stack.md +15 -7
  54. package/ai-context-evaluation-report-1774223059505.md +206 -0
  55. package/dist/analyzers/architecture.d.ts.map +1 -1
  56. package/dist/analyzers/architecture.js +6 -0
  57. package/dist/analyzers/architecture.js.map +1 -1
  58. package/dist/analyzers/entrypoints.d.ts.map +1 -1
  59. package/dist/analyzers/entrypoints.js +105 -0
  60. package/dist/analyzers/entrypoints.js.map +1 -1
  61. package/dist/analyzers/symbols.d.ts.map +1 -1
  62. package/dist/analyzers/symbols.js +72 -1
  63. package/dist/analyzers/symbols.js.map +1 -1
  64. package/dist/analyzers/techStack.d.ts +8 -0
  65. package/dist/analyzers/techStack.d.ts.map +1 -1
  66. package/dist/analyzers/techStack.js +75 -0
  67. package/dist/analyzers/techStack.js.map +1 -1
  68. package/dist/scripts/ai-context-evaluator.js +367 -0
  69. package/package.json +1 -1
  70. package/quick-evaluation-report-1774396002305.md +64 -0
  71. package/quick-evaluator.ts +200 -0
  72. package/scripts/ai-context-evaluator.ts +440 -0
  73. package/src/analyzers/architecture.ts +8 -0
  74. package/src/analyzers/entrypoints.ts +115 -0
  75. package/src/analyzers/symbols.ts +77 -1
  76. package/src/analyzers/techStack.ts +93 -0
  77. package/tests/apex-parser.test.ts +193 -0
  78. package/tests/cli-commands-batch1.test.ts +808 -0
  79. package/tests/cli-commands-batch2.test.ts +1113 -0
  80. package/tests/cli-commands-batch3.test.ts +1128 -0
  81. package/tests/cli-index.test.ts +1007 -0
  82. package/tests/cli-init.test.ts +761 -0
  83. package/tests/salesforce-apex-classes.test.ts +713 -0
  84. package/tests/salesforce-apex-triggers.test.ts +871 -0
  85. package/tests/salesforce-custom-objects.test.ts +918 -0
  86. package/tests/salesforce-flows.test.ts +710 -0
  87. package/tests/salesforce-lwc.test.ts +963 -0
  88. package/tests/salesforce-sfdx-integration.test.ts +1125 -0
  89. package/ANALISIS_COMPLETO.md +0 -424
  90. package/ANALISIS_MEJORAS.md +0 -327
  91. package/CONTRIBUTING.md +0 -89
  92. package/FLOW.md +0 -129
  93. package/TEST_RESULTS.md +0 -198
  94. package/TEST_RESULTS_COMPARATIVE.md +0 -159
  95. package/TEST_RESULTS_COMPLETE.md +0 -127
  96. package/TEST_RESULTS_COMPREHENSIVE.md +0 -208
  97. package/install.sh +0 -188
  98. package/run-all-tests.sh +0 -184
  99. package/test-ai-context-understanding.sh +0 -21
  100. package/test-projects/django-app/.ai-dev/ai_context.md +0 -92
  101. package/test-projects/django-app/.ai-dev/ai_rules.md +0 -47
  102. package/test-projects/django-app/.ai-dev/architecture.md +0 -57
  103. package/test-projects/django-app/.ai-dev/cache.json +0 -169
  104. package/test-projects/django-app/.ai-dev/context/flows/views.json +0 -10
  105. package/test-projects/django-app/.ai-dev/conventions.md +0 -51
  106. package/test-projects/django-app/.ai-dev/dependencies.json +0 -312
  107. package/test-projects/django-app/.ai-dev/entrypoints.md +0 -4
  108. package/test-projects/django-app/.ai-dev/files.json +0 -209
  109. package/test-projects/django-app/.ai-dev/graph/knowledge-graph.json +0 -36
  110. package/test-projects/django-app/.ai-dev/graph/module-graph.json +0 -145
  111. package/test-projects/django-app/.ai-dev/graph/symbol-graph.json +0 -1488
  112. package/test-projects/django-app/.ai-dev/graph/symbol-references.json +0 -1
  113. package/test-projects/django-app/.ai-dev/index-state.json +0 -294
  114. package/test-projects/django-app/.ai-dev/modules.json +0 -35
  115. package/test-projects/django-app/.ai-dev/project.json +0 -11
  116. package/test-projects/django-app/.ai-dev/repo_map.json +0 -412
  117. package/test-projects/django-app/.ai-dev/repo_map.md +0 -105
  118. package/test-projects/django-app/.ai-dev/schema.json +0 -5
  119. package/test-projects/django-app/.ai-dev/summary.md +0 -15
  120. package/test-projects/django-app/.ai-dev/symbols.json +0 -1
  121. package/test-projects/django-app/.ai-dev/tech_stack.md +0 -32
  122. package/test-projects/django-app/README.md +0 -91
  123. package/test-projects/django-app/blog/__init__.py +0 -0
  124. package/test-projects/django-app/blog/admin.py +0 -31
  125. package/test-projects/django-app/blog/models.py +0 -55
  126. package/test-projects/django-app/blog/serializers.py +0 -69
  127. package/test-projects/django-app/blog/urls.py +0 -14
  128. package/test-projects/django-app/blog/views.py +0 -96
  129. package/test-projects/django-app/django_app/__init__.py +0 -0
  130. package/test-projects/django-app/django_app/settings.py +0 -90
  131. package/test-projects/django-app/django_app/urls.py +0 -11
  132. package/test-projects/django-app/django_app/wsgi.py +0 -9
  133. package/test-projects/django-app/manage.py +0 -23
  134. package/test-projects/django-app/requirements.txt +0 -3
  135. package/test-projects/django-app/users/__init__.py +0 -0
  136. package/test-projects/django-app/users/admin.py +0 -42
  137. package/test-projects/django-app/users/models.py +0 -54
  138. package/test-projects/django-app/users/serializers.py +0 -113
  139. package/test-projects/django-app/users/urls.py +0 -13
  140. package/test-projects/django-app/users/views.py +0 -135
  141. package/test-projects/express-api/.ai-dev/ai_context.md +0 -112
  142. package/test-projects/express-api/.ai-dev/ai_rules.md +0 -50
  143. package/test-projects/express-api/.ai-dev/architecture.md +0 -62
  144. package/test-projects/express-api/.ai-dev/context/features/controllers.json +0 -13
  145. package/test-projects/express-api/.ai-dev/context/features/services.json +0 -13
  146. package/test-projects/express-api/.ai-dev/context/flows/auth.json +0 -12
  147. package/test-projects/express-api/.ai-dev/context/flows/user.json +0 -13
  148. package/test-projects/express-api/.ai-dev/conventions.md +0 -51
  149. package/test-projects/express-api/.ai-dev/dependencies.json +0 -54
  150. package/test-projects/express-api/.ai-dev/entrypoints.md +0 -17
  151. package/test-projects/express-api/.ai-dev/modules.json +0 -30
  152. package/test-projects/express-api/.ai-dev/project.json +0 -15
  153. package/test-projects/express-api/.ai-dev/repo_map.json +0 -100
  154. package/test-projects/express-api/.ai-dev/repo_map.md +0 -36
  155. package/test-projects/express-api/.ai-dev/schema.json +0 -5
  156. package/test-projects/express-api/.ai-dev/summary.md +0 -14
  157. package/test-projects/express-api/.ai-dev/symbols.json +0 -7
  158. package/test-projects/express-api/.ai-dev/tech_stack.md +0 -38
  159. package/test-projects/express-api/.ai-dev/tools.json +0 -10
  160. package/test-projects/express-api/controllers/authController.js +0 -32
  161. package/test-projects/express-api/controllers/userController.js +0 -51
  162. package/test-projects/express-api/index.js +0 -30
  163. package/test-projects/express-api/middleware/authMiddleware.js +0 -30
  164. package/test-projects/express-api/models/userRepository.js +0 -25
  165. package/test-projects/express-api/package.json +0 -18
  166. package/test-projects/express-api/services/authService.js +0 -17
  167. package/test-projects/express-api/services/userService.js +0 -28
  168. package/test-projects/fastapi-app/.ai-dev/ai_context.md +0 -89
  169. package/test-projects/fastapi-app/.ai-dev/ai_rules.md +0 -47
  170. package/test-projects/fastapi-app/.ai-dev/architecture.md +0 -39
  171. package/test-projects/fastapi-app/.ai-dev/cache.json +0 -125
  172. package/test-projects/fastapi-app/.ai-dev/conventions.md +0 -51
  173. package/test-projects/fastapi-app/.ai-dev/dependencies.json +0 -244
  174. package/test-projects/fastapi-app/.ai-dev/entrypoints.md +0 -4
  175. package/test-projects/fastapi-app/.ai-dev/files.json +0 -154
  176. package/test-projects/fastapi-app/.ai-dev/graph/knowledge-graph.json +0 -15
  177. package/test-projects/fastapi-app/.ai-dev/graph/module-graph.json +0 -78
  178. package/test-projects/fastapi-app/.ai-dev/graph/symbol-graph.json +0 -1724
  179. package/test-projects/fastapi-app/.ai-dev/graph/symbol-references.json +0 -51
  180. package/test-projects/fastapi-app/.ai-dev/index-state.json +0 -217
  181. package/test-projects/fastapi-app/.ai-dev/modules.json +0 -16
  182. package/test-projects/fastapi-app/.ai-dev/project.json +0 -9
  183. package/test-projects/fastapi-app/.ai-dev/repo_map.json +0 -298
  184. package/test-projects/fastapi-app/.ai-dev/repo_map.md +0 -74
  185. package/test-projects/fastapi-app/.ai-dev/schema.json +0 -5
  186. package/test-projects/fastapi-app/.ai-dev/summary.md +0 -12
  187. package/test-projects/fastapi-app/.ai-dev/symbols.json +0 -1
  188. package/test-projects/fastapi-app/.ai-dev/tech_stack.md +0 -32
  189. package/test-projects/fastapi-app/.ai-dev/tools.json +0 -10
  190. package/test-projects/fastapi-app/README.md +0 -118
  191. package/test-projects/fastapi-app/app/database.py +0 -21
  192. package/test-projects/fastapi-app/app/dependencies.py +0 -107
  193. package/test-projects/fastapi-app/app/main.py +0 -47
  194. package/test-projects/fastapi-app/app/models.py +0 -149
  195. package/test-projects/fastapi-app/app/routers/auth.py +0 -117
  196. package/test-projects/fastapi-app/app/routers/posts.py +0 -272
  197. package/test-projects/fastapi-app/app/schemas.py +0 -191
  198. package/test-projects/fastapi-app/requirements.txt +0 -10
  199. package/test-projects/flask-app/.ai-dev/ai_context.md +0 -94
  200. package/test-projects/flask-app/.ai-dev/ai_rules.md +0 -47
  201. package/test-projects/flask-app/.ai-dev/architecture.md +0 -49
  202. package/test-projects/flask-app/.ai-dev/cache.json +0 -157
  203. package/test-projects/flask-app/.ai-dev/context/features/app.json +0 -25
  204. package/test-projects/flask-app/.ai-dev/context/flows/routes.json +0 -14
  205. package/test-projects/flask-app/.ai-dev/conventions.md +0 -51
  206. package/test-projects/flask-app/.ai-dev/dependencies.json +0 -298
  207. package/test-projects/flask-app/.ai-dev/entrypoints.md +0 -4
  208. package/test-projects/flask-app/.ai-dev/files.json +0 -194
  209. package/test-projects/flask-app/.ai-dev/graph/knowledge-graph.json +0 -60
  210. package/test-projects/flask-app/.ai-dev/graph/module-graph.json +0 -95
  211. package/test-projects/flask-app/.ai-dev/graph/symbol-graph.json +0 -1448
  212. package/test-projects/flask-app/.ai-dev/graph/symbol-references.json +0 -45
  213. package/test-projects/flask-app/.ai-dev/index-state.json +0 -273
  214. package/test-projects/flask-app/.ai-dev/modules.json +0 -21
  215. package/test-projects/flask-app/.ai-dev/project.json +0 -13
  216. package/test-projects/flask-app/.ai-dev/repo_map.json +0 -400
  217. package/test-projects/flask-app/.ai-dev/repo_map.md +0 -98
  218. package/test-projects/flask-app/.ai-dev/summary.md +0 -13
  219. package/test-projects/flask-app/.ai-dev/symbols.json +0 -1
  220. package/test-projects/flask-app/.ai-dev/tech_stack.md +0 -32
  221. package/test-projects/flask-app/.ai-dev/tools.json +0 -10
  222. package/test-projects/flask-app/README.md +0 -129
  223. package/test-projects/flask-app/app/__init__.py +0 -46
  224. package/test-projects/flask-app/app/api/__init__.py +0 -7
  225. package/test-projects/flask-app/app/api/routes.py +0 -122
  226. package/test-projects/flask-app/app/auth/__init__.py +0 -7
  227. package/test-projects/flask-app/app/auth/forms.py +0 -52
  228. package/test-projects/flask-app/app/auth/routes.py +0 -68
  229. package/test-projects/flask-app/app/blog/__init__.py +0 -7
  230. package/test-projects/flask-app/app/blog/forms.py +0 -35
  231. package/test-projects/flask-app/app/blog/routes.py +0 -140
  232. package/test-projects/flask-app/app/main/__init__.py +0 -7
  233. package/test-projects/flask-app/app/main/routes.py +0 -88
  234. package/test-projects/flask-app/app/models.py +0 -177
  235. package/test-projects/flask-app/config.py +0 -64
  236. package/test-projects/flask-app/requirements.txt +0 -10
  237. package/test-projects/laravel-app/.ai-dev/ai_context.md +0 -97
  238. package/test-projects/laravel-app/.ai-dev/ai_rules.md +0 -47
  239. package/test-projects/laravel-app/.ai-dev/architecture.md +0 -60
  240. package/test-projects/laravel-app/.ai-dev/cache.json +0 -161
  241. package/test-projects/laravel-app/.ai-dev/context/features/app.json +0 -21
  242. package/test-projects/laravel-app/.ai-dev/context/flows/.json +0 -9
  243. package/test-projects/laravel-app/.ai-dev/context/flows/category.json +0 -12
  244. package/test-projects/laravel-app/.ai-dev/context/flows/comment.json +0 -12
  245. package/test-projects/laravel-app/.ai-dev/context/flows/post.json +0 -12
  246. package/test-projects/laravel-app/.ai-dev/context/flows/unnamed.json +0 -9
  247. package/test-projects/laravel-app/.ai-dev/conventions.md +0 -51
  248. package/test-projects/laravel-app/.ai-dev/dependencies.json +0 -6
  249. package/test-projects/laravel-app/.ai-dev/entrypoints.md +0 -4
  250. package/test-projects/laravel-app/.ai-dev/files.json +0 -199
  251. package/test-projects/laravel-app/.ai-dev/graph/knowledge-graph.json +0 -98
  252. package/test-projects/laravel-app/.ai-dev/graph/module-graph.json +0 -30
  253. package/test-projects/laravel-app/.ai-dev/graph/symbol-graph.json +0 -5
  254. package/test-projects/laravel-app/.ai-dev/graph/symbol-references.json +0 -1
  255. package/test-projects/laravel-app/.ai-dev/index-state.json +0 -280
  256. package/test-projects/laravel-app/.ai-dev/modules.json +0 -29
  257. package/test-projects/laravel-app/.ai-dev/project.json +0 -17
  258. package/test-projects/laravel-app/.ai-dev/repo_map.json +0 -419
  259. package/test-projects/laravel-app/.ai-dev/repo_map.md +0 -106
  260. package/test-projects/laravel-app/.ai-dev/schema.json +0 -5
  261. package/test-projects/laravel-app/.ai-dev/summary.md +0 -15
  262. package/test-projects/laravel-app/.ai-dev/symbols.json +0 -1
  263. package/test-projects/laravel-app/.ai-dev/tech_stack.md +0 -34
  264. package/test-projects/laravel-app/.ai-dev/tools.json +0 -10
  265. package/test-projects/laravel-app/README.md +0 -107
  266. package/test-projects/laravel-app/app/Http/Controllers/Api/CategoryController.php +0 -88
  267. package/test-projects/laravel-app/app/Http/Controllers/Api/CommentController.php +0 -56
  268. package/test-projects/laravel-app/app/Http/Controllers/Api/PostController.php +0 -174
  269. package/test-projects/laravel-app/app/Http/Controllers/Controller.php +0 -12
  270. package/test-projects/laravel-app/app/Models/Category.php +0 -34
  271. package/test-projects/laravel-app/app/Models/Comment.php +0 -51
  272. package/test-projects/laravel-app/app/Models/Post.php +0 -108
  273. package/test-projects/laravel-app/app/Models/User.php +0 -85
  274. package/test-projects/laravel-app/bootstrap/app.php +0 -25
  275. package/test-projects/laravel-app/composer.json +0 -35
  276. package/test-projects/laravel-app/routes/api.php +0 -40
  277. package/test-projects/nestjs-backend/.ai-dev/ai_context.md +0 -111
  278. package/test-projects/nestjs-backend/.ai-dev/ai_rules.md +0 -52
  279. package/test-projects/nestjs-backend/.ai-dev/architecture.md +0 -49
  280. package/test-projects/nestjs-backend/.ai-dev/cache.json +0 -169
  281. package/test-projects/nestjs-backend/.ai-dev/context/features/src.json +0 -23
  282. package/test-projects/nestjs-backend/.ai-dev/context/flows/auth.controller.json +0 -14
  283. package/test-projects/nestjs-backend/.ai-dev/context/flows/auth.json +0 -10
  284. package/test-projects/nestjs-backend/.ai-dev/context/flows/users..json +0 -10
  285. package/test-projects/nestjs-backend/.ai-dev/context/flows/users.controller.json +0 -14
  286. package/test-projects/nestjs-backend/.ai-dev/context/flows/users.json +0 -10
  287. package/test-projects/nestjs-backend/.ai-dev/conventions.md +0 -52
  288. package/test-projects/nestjs-backend/.ai-dev/dependencies.json +0 -152
  289. package/test-projects/nestjs-backend/.ai-dev/entrypoints.md +0 -18
  290. package/test-projects/nestjs-backend/.ai-dev/files.json +0 -209
  291. package/test-projects/nestjs-backend/.ai-dev/graph/knowledge-graph.json +0 -132
  292. package/test-projects/nestjs-backend/.ai-dev/graph/module-graph.json +0 -29
  293. package/test-projects/nestjs-backend/.ai-dev/graph/symbol-graph.json +0 -304
  294. package/test-projects/nestjs-backend/.ai-dev/graph/symbol-references.json +0 -5
  295. package/test-projects/nestjs-backend/.ai-dev/index-state.json +0 -294
  296. package/test-projects/nestjs-backend/.ai-dev/modules.json +0 -19
  297. package/test-projects/nestjs-backend/.ai-dev/project.json +0 -18
  298. package/test-projects/nestjs-backend/.ai-dev/repo_map.json +0 -427
  299. package/test-projects/nestjs-backend/.ai-dev/repo_map.md +0 -104
  300. package/test-projects/nestjs-backend/.ai-dev/schema.json +0 -5
  301. package/test-projects/nestjs-backend/.ai-dev/summary.md +0 -13
  302. package/test-projects/nestjs-backend/.ai-dev/symbols.json +0 -1
  303. package/test-projects/nestjs-backend/.ai-dev/tech_stack.md +0 -38
  304. package/test-projects/nestjs-backend/.ai-dev/tools.json +0 -10
  305. package/test-projects/nestjs-backend/package.json +0 -22
  306. package/test-projects/nestjs-backend/src/app.module.ts +0 -8
  307. package/test-projects/nestjs-backend/src/auth/auth.controller.ts +0 -22
  308. package/test-projects/nestjs-backend/src/auth/auth.module.ts +0 -11
  309. package/test-projects/nestjs-backend/src/auth/auth.service.ts +0 -28
  310. package/test-projects/nestjs-backend/src/auth/dto/login.dto.ts +0 -4
  311. package/test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts +0 -18
  312. package/test-projects/nestjs-backend/src/main.ts +0 -9
  313. package/test-projects/nestjs-backend/src/users/users.controller.ts +0 -32
  314. package/test-projects/nestjs-backend/src/users/users.module.ts +0 -10
  315. package/test-projects/nestjs-backend/src/users/users.service.ts +0 -42
  316. package/test-projects/nestjs-backend/tsconfig.json +0 -21
  317. package/test-projects/python-cli/.ai-dev/ai_context.md +0 -95
  318. package/test-projects/python-cli/.ai-dev/ai_rules.md +0 -47
  319. package/test-projects/python-cli/.ai-dev/architecture.md +0 -55
  320. package/test-projects/python-cli/.ai-dev/cache.json +0 -149
  321. package/test-projects/python-cli/.ai-dev/context/features/cli.json +0 -16
  322. package/test-projects/python-cli/.ai-dev/context/flows/list_.json +0 -9
  323. package/test-projects/python-cli/.ai-dev/context/flows/remove_.json +0 -9
  324. package/test-projects/python-cli/.ai-dev/conventions.md +0 -51
  325. package/test-projects/python-cli/.ai-dev/dependencies.json +0 -66
  326. package/test-projects/python-cli/.ai-dev/entrypoints.md +0 -4
  327. package/test-projects/python-cli/.ai-dev/files.json +0 -184
  328. package/test-projects/python-cli/.ai-dev/graph/knowledge-graph.json +0 -83
  329. package/test-projects/python-cli/.ai-dev/graph/module-graph.json +0 -31
  330. package/test-projects/python-cli/.ai-dev/graph/symbol-graph.json +0 -358
  331. package/test-projects/python-cli/.ai-dev/graph/symbol-references.json +0 -11
  332. package/test-projects/python-cli/.ai-dev/index-state.json +0 -259
  333. package/test-projects/python-cli/.ai-dev/modules.json +0 -21
  334. package/test-projects/python-cli/.ai-dev/project.json +0 -15
  335. package/test-projects/python-cli/.ai-dev/repo_map.json +0 -367
  336. package/test-projects/python-cli/.ai-dev/repo_map.md +0 -93
  337. package/test-projects/python-cli/.ai-dev/schema.json +0 -5
  338. package/test-projects/python-cli/.ai-dev/summary.md +0 -14
  339. package/test-projects/python-cli/.ai-dev/symbols.json +0 -1
  340. package/test-projects/python-cli/.ai-dev/tech_stack.md +0 -32
  341. package/test-projects/python-cli/.ai-dev/tools.json +0 -10
  342. package/test-projects/python-cli/__init__.py +0 -1
  343. package/test-projects/python-cli/cli/__init__.py +0 -1
  344. package/test-projects/python-cli/cli/add_command.py +0 -6
  345. package/test-projects/python-cli/cli/list_command.py +0 -7
  346. package/test-projects/python-cli/cli/remove_command.py +0 -6
  347. package/test-projects/python-cli/main.py +0 -34
  348. package/test-projects/python-cli/models/__init__.py +0 -2
  349. package/test-projects/python-cli/models/task.py +0 -19
  350. package/test-projects/python-cli/models/task_repository.py +0 -44
  351. package/test-projects/rails-app/.ai-dev/ai_context.md +0 -94
  352. package/test-projects/rails-app/.ai-dev/ai_rules.md +0 -47
  353. package/test-projects/rails-app/.ai-dev/architecture.md +0 -49
  354. package/test-projects/rails-app/.ai-dev/cache.json +0 -193
  355. package/test-projects/rails-app/.ai-dev/context/features/app.json +0 -24
  356. package/test-projects/rails-app/.ai-dev/context/features/config.json +0 -13
  357. package/test-projects/rails-app/.ai-dev/context/flows/application.json +0 -9
  358. package/test-projects/rails-app/.ai-dev/context/flows/application_.json +0 -9
  359. package/test-projects/rails-app/.ai-dev/context/flows/comments.json +0 -11
  360. package/test-projects/rails-app/.ai-dev/context/flows/comments_.json +0 -11
  361. package/test-projects/rails-app/.ai-dev/context/flows/posts.json +0 -11
  362. package/test-projects/rails-app/.ai-dev/context/flows/posts_.json +0 -11
  363. package/test-projects/rails-app/.ai-dev/context/flows/routes.json +0 -9
  364. package/test-projects/rails-app/.ai-dev/context/flows/users.json +0 -11
  365. package/test-projects/rails-app/.ai-dev/context/flows/users_.json +0 -11
  366. package/test-projects/rails-app/.ai-dev/conventions.md +0 -51
  367. package/test-projects/rails-app/.ai-dev/dependencies.json +0 -6
  368. package/test-projects/rails-app/.ai-dev/entrypoints.md +0 -4
  369. package/test-projects/rails-app/.ai-dev/files.json +0 -239
  370. package/test-projects/rails-app/.ai-dev/graph/knowledge-graph.json +0 -130
  371. package/test-projects/rails-app/.ai-dev/graph/module-graph.json +0 -27
  372. package/test-projects/rails-app/.ai-dev/graph/symbol-graph.json +0 -5
  373. package/test-projects/rails-app/.ai-dev/graph/symbol-references.json +0 -1
  374. package/test-projects/rails-app/.ai-dev/index-state.json +0 -336
  375. package/test-projects/rails-app/.ai-dev/modules.json +0 -26
  376. package/test-projects/rails-app/.ai-dev/project.json +0 -22
  377. package/test-projects/rails-app/.ai-dev/repo_map.json +0 -486
  378. package/test-projects/rails-app/.ai-dev/repo_map.md +0 -117
  379. package/test-projects/rails-app/.ai-dev/schema.json +0 -5
  380. package/test-projects/rails-app/.ai-dev/summary.md +0 -13
  381. package/test-projects/rails-app/.ai-dev/symbols.json +0 -1
  382. package/test-projects/rails-app/.ai-dev/tech_stack.md +0 -32
  383. package/test-projects/rails-app/.ai-dev/tools.json +0 -10
  384. package/test-projects/rails-app/Gemfile +0 -38
  385. package/test-projects/rails-app/README.md +0 -140
  386. package/test-projects/rails-app/Rakefile +0 -8
  387. package/test-projects/rails-app/app/controllers/api/comments_controller.rb +0 -75
  388. package/test-projects/rails-app/app/controllers/api/posts_controller.rb +0 -68
  389. package/test-projects/rails-app/app/controllers/api/users_controller.rb +0 -54
  390. package/test-projects/rails-app/app/controllers/application_controller.rb +0 -31
  391. package/test-projects/rails-app/app/models/comment.rb +0 -34
  392. package/test-projects/rails-app/app/models/post.rb +0 -36
  393. package/test-projects/rails-app/app/models/user.rb +0 -28
  394. package/test-projects/rails-app/app/services/post_service.rb +0 -92
  395. package/test-projects/rails-app/app/services/user_service.rb +0 -76
  396. package/test-projects/rails-app/config/application.rb +0 -27
  397. package/test-projects/rails-app/config/environment.rb +0 -7
  398. package/test-projects/rails-app/config/routes.rb +0 -15
  399. package/test-projects/react-app/.ai-dev/ai_context.md +0 -96
  400. package/test-projects/react-app/.ai-dev/architecture.md +0 -39
  401. package/test-projects/react-app/.ai-dev/cache.json +0 -153
  402. package/test-projects/react-app/.ai-dev/context/features/src.json +0 -18
  403. package/test-projects/react-app/.ai-dev/context/flows/UsersPage.json +0 -14
  404. package/test-projects/react-app/.ai-dev/context/flows/dashboard.json +0 -9
  405. package/test-projects/react-app/.ai-dev/context/flows/login.json +0 -9
  406. package/test-projects/react-app/.ai-dev/context/flows/users.json +0 -9
  407. package/test-projects/react-app/.ai-dev/dependencies.json +0 -128
  408. package/test-projects/react-app/.ai-dev/entrypoints.md +0 -4
  409. package/test-projects/react-app/.ai-dev/files.json +0 -189
  410. package/test-projects/react-app/.ai-dev/graph/knowledge-graph.json +0 -112
  411. package/test-projects/react-app/.ai-dev/graph/module-graph.json +0 -31
  412. package/test-projects/react-app/.ai-dev/graph/symbol-graph.json +0 -868
  413. package/test-projects/react-app/.ai-dev/graph/symbol-references.json +0 -31
  414. package/test-projects/react-app/.ai-dev/index-state.json +0 -266
  415. package/test-projects/react-app/.ai-dev/modules.json +0 -17
  416. package/test-projects/react-app/.ai-dev/project.json +0 -16
  417. package/test-projects/react-app/.ai-dev/repo_map.json +0 -391
  418. package/test-projects/react-app/.ai-dev/repo_map.md +0 -94
  419. package/test-projects/react-app/.ai-dev/schema.json +0 -5
  420. package/test-projects/react-app/.ai-dev/summary.md +0 -13
  421. package/test-projects/react-app/.ai-dev/symbols.json +0 -1
  422. package/test-projects/react-app/.ai-dev/tools.json +0 -10
  423. package/test-projects/react-app/package.json +0 -16
  424. package/test-projects/react-app/src/App.tsx +0 -21
  425. package/test-projects/react-app/src/context/AuthContext.tsx +0 -41
  426. package/test-projects/react-app/src/hooks/useAuth.ts +0 -10
  427. package/test-projects/react-app/src/main.tsx +0 -10
  428. package/test-projects/react-app/src/pages/DashboardPage.tsx +0 -17
  429. package/test-projects/react-app/src/pages/LoginPage.tsx +0 -41
  430. package/test-projects/react-app/src/pages/UsersPage.tsx +0 -36
  431. package/test-projects/react-app/src/services/userService.ts +0 -37
  432. package/test-projects/salesforce-cli/.ai-dev/ai_context.md +0 -89
  433. package/test-projects/salesforce-cli/.ai-dev/ai_rules.md +0 -47
  434. package/test-projects/salesforce-cli/.ai-dev/architecture.md +0 -39
  435. package/test-projects/salesforce-cli/.ai-dev/cache.json +0 -125
  436. package/test-projects/salesforce-cli/.ai-dev/context/features/force-app.json +0 -14
  437. package/test-projects/salesforce-cli/.ai-dev/context/flows/account.json +0 -9
  438. package/test-projects/salesforce-cli/.ai-dev/context/flows/opportunity.json +0 -9
  439. package/test-projects/salesforce-cli/.ai-dev/conventions.md +0 -51
  440. package/test-projects/salesforce-cli/.ai-dev/dependencies.json +0 -6
  441. package/test-projects/salesforce-cli/.ai-dev/entrypoints.md +0 -4
  442. package/test-projects/salesforce-cli/.ai-dev/files.json +0 -154
  443. package/test-projects/salesforce-cli/.ai-dev/graph/knowledge-graph.json +0 -64
  444. package/test-projects/salesforce-cli/.ai-dev/graph/module-graph.json +0 -13
  445. package/test-projects/salesforce-cli/.ai-dev/graph/symbol-graph.json +0 -148
  446. package/test-projects/salesforce-cli/.ai-dev/graph/symbol-references.json +0 -1
  447. package/test-projects/salesforce-cli/.ai-dev/index-state.json +0 -217
  448. package/test-projects/salesforce-cli/.ai-dev/modules.json +0 -12
  449. package/test-projects/salesforce-cli/.ai-dev/project.json +0 -14
  450. package/test-projects/salesforce-cli/.ai-dev/repo_map.json +0 -328
  451. package/test-projects/salesforce-cli/.ai-dev/repo_map.md +0 -80
  452. package/test-projects/salesforce-cli/.ai-dev/schema.json +0 -5
  453. package/test-projects/salesforce-cli/.ai-dev/summary.md +0 -13
  454. package/test-projects/salesforce-cli/.ai-dev/symbols.json +0 -1
  455. package/test-projects/salesforce-cli/.ai-dev/tech_stack.md +0 -31
  456. package/test-projects/salesforce-cli/.ai-dev/tools.json +0 -10
  457. package/test-projects/salesforce-cli/.forceignore +0 -27
  458. package/test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls +0 -24
  459. package/test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls +0 -25
  460. package/test-projects/salesforce-cli/force-app/main/default/objects/Project__c.object.xml +0 -45
  461. package/test-projects/salesforce-cli/force-app/main/default/triggers/AccountTrigger.trigger +0 -33
  462. package/test-projects/salesforce-cli/sfdx-project.json +0 -11
  463. package/test-projects/spring-boot-app/.ai-dev/ai_context.md +0 -91
  464. package/test-projects/spring-boot-app/.ai-dev/ai_rules.md +0 -48
  465. package/test-projects/spring-boot-app/.ai-dev/architecture.md +0 -39
  466. package/test-projects/spring-boot-app/.ai-dev/cache.json +0 -173
  467. package/test-projects/spring-boot-app/.ai-dev/context/features/src.json +0 -26
  468. package/test-projects/spring-boot-app/.ai-dev/context/flows/PostController.json +0 -19
  469. package/test-projects/spring-boot-app/.ai-dev/context/flows/UserController.json +0 -19
  470. package/test-projects/spring-boot-app/.ai-dev/context/flows/comment.json +0 -11
  471. package/test-projects/spring-boot-app/.ai-dev/context/flows/post.json +0 -14
  472. package/test-projects/spring-boot-app/.ai-dev/context/flows/user.json +0 -14
  473. package/test-projects/spring-boot-app/.ai-dev/conventions.md +0 -52
  474. package/test-projects/spring-boot-app/.ai-dev/dependencies.json +0 -326
  475. package/test-projects/spring-boot-app/.ai-dev/entrypoints.md +0 -4
  476. package/test-projects/spring-boot-app/.ai-dev/files.json +0 -214
  477. package/test-projects/spring-boot-app/.ai-dev/graph/knowledge-graph.json +0 -231
  478. package/test-projects/spring-boot-app/.ai-dev/graph/module-graph.json +0 -22
  479. package/test-projects/spring-boot-app/.ai-dev/graph/symbol-graph.json +0 -794
  480. package/test-projects/spring-boot-app/.ai-dev/graph/symbol-references.json +0 -70
  481. package/test-projects/spring-boot-app/.ai-dev/index-state.json +0 -301
  482. package/test-projects/spring-boot-app/.ai-dev/modules.json +0 -21
  483. package/test-projects/spring-boot-app/.ai-dev/project.json +0 -17
  484. package/test-projects/spring-boot-app/.ai-dev/repo_map.json +0 -461
  485. package/test-projects/spring-boot-app/.ai-dev/repo_map.md +0 -109
  486. package/test-projects/spring-boot-app/.ai-dev/schema.json +0 -5
  487. package/test-projects/spring-boot-app/.ai-dev/summary.md +0 -12
  488. package/test-projects/spring-boot-app/.ai-dev/symbols.json +0 -1
  489. package/test-projects/spring-boot-app/.ai-dev/tech_stack.md +0 -32
  490. package/test-projects/spring-boot-app/.ai-dev/tools.json +0 -10
  491. package/test-projects/spring-boot-app/.classpath +0 -57
  492. package/test-projects/spring-boot-app/.factorypath +0 -69
  493. package/test-projects/spring-boot-app/.project +0 -34
  494. package/test-projects/spring-boot-app/.settings/org.eclipse.core.resources.prefs +0 -4
  495. package/test-projects/spring-boot-app/.settings/org.eclipse.jdt.apt.core.prefs +0 -4
  496. package/test-projects/spring-boot-app/.settings/org.eclipse.jdt.core.prefs +0 -10
  497. package/test-projects/spring-boot-app/.settings/org.eclipse.m2e.core.prefs +0 -4
  498. package/test-projects/spring-boot-app/README.md +0 -122
  499. package/test-projects/spring-boot-app/pom.xml +0 -79
  500. package/test-projects/spring-boot-app/src/main/java/com/example/demo/DemoApplication.java +0 -12
  501. package/test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/CommentController.java +0 -89
  502. package/test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/PostController.java +0 -92
  503. package/test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/UserController.java +0 -84
  504. package/test-projects/spring-boot-app/src/main/java/com/example/demo/models/Comment.java +0 -38
  505. package/test-projects/spring-boot-app/src/main/java/com/example/demo/models/Post.java +0 -56
  506. package/test-projects/spring-boot-app/src/main/java/com/example/demo/models/User.java +0 -44
  507. package/test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/CommentRepository.java +0 -21
  508. package/test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/PostRepository.java +0 -18
  509. package/test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/UserRepository.java +0 -15
  510. package/test-projects/spring-boot-app/src/main/java/com/example/demo/services/PostService.java +0 -83
  511. package/test-projects/spring-boot-app/src/main/java/com/example/demo/services/UserService.java +0 -62
  512. package/test-projects/spring-boot-app/src/main/resources/application.properties +0 -22
  513. package/test-projects/spring-boot-app/target/classes/com/example/demo/DemoApplication.class +0 -0
  514. package/test-projects/spring-boot-app/target/classes/com/example/demo/controllers/CommentController$CommentCreateRequest.class +0 -0
  515. package/test-projects/spring-boot-app/target/classes/com/example/demo/controllers/CommentController$CommentUpdateRequest.class +0 -0
  516. package/test-projects/spring-boot-app/target/classes/com/example/demo/controllers/CommentController.class +0 -0
  517. package/test-projects/spring-boot-app/target/classes/com/example/demo/controllers/PostController$PostCreateRequest.class +0 -0
  518. package/test-projects/spring-boot-app/target/classes/com/example/demo/controllers/PostController$PostUpdateRequest.class +0 -0
  519. package/test-projects/spring-boot-app/target/classes/com/example/demo/controllers/PostController.class +0 -0
  520. package/test-projects/spring-boot-app/target/classes/com/example/demo/controllers/UserController$UserCreateRequest.class +0 -0
  521. package/test-projects/spring-boot-app/target/classes/com/example/demo/controllers/UserController$UserUpdateRequest.class +0 -0
  522. package/test-projects/spring-boot-app/target/classes/com/example/demo/controllers/UserController.class +0 -0
  523. package/test-projects/spring-boot-app/target/classes/com/example/demo/models/Comment.class +0 -0
  524. package/test-projects/spring-boot-app/target/classes/com/example/demo/models/Post.class +0 -0
  525. package/test-projects/spring-boot-app/target/classes/com/example/demo/models/User.class +0 -0
  526. package/test-projects/spring-boot-app/target/classes/com/example/demo/repositories/CommentRepository.class +0 -0
  527. package/test-projects/spring-boot-app/target/classes/com/example/demo/repositories/PostRepository.class +0 -0
  528. package/test-projects/spring-boot-app/target/classes/com/example/demo/repositories/UserRepository.class +0 -0
  529. package/test-projects/spring-boot-app/target/classes/com/example/demo/services/PostService.class +0 -0
  530. package/test-projects/spring-boot-app/target/classes/com/example/demo/services/UserService.class +0 -0
  531. package/tests/e2e/run-e2e.sh +0 -88
  532. /package/{test-projects/django-app/.ai-dev → ai-context}/tools.json +0 -0
@@ -0,0 +1,2002 @@
1
+ # Repository Map
2
+ ## .ai-dev
3
+ - account.json
4
+ - ai_context.md
5
+ - ai_rules.md
6
+ - ai-first.json
7
+ - api.json
8
+ - architecture.md
9
+ - auth.json
10
+ - cache.json
11
+ - category.json
12
+ - commands.json
13
+ - comment.json
14
+ - commit-activity.json
15
+ - context.json
16
+ - conventions.md
17
+ - dashboard.json
18
+ - dependencies.json
19
+ - doctor.json
20
+ - embeddings.json
21
+ - entrypoints.md
22
+ - explore.json
23
+ - files.json
24
+ - hierarchy.json
25
+ - index-state.json
26
+ - knowledge-graph.json
27
+ - login.json
28
+ - module-graph.json
29
+ - modules.json
30
+ - opportunity.json
31
+ - post.json
32
+ - project.json
33
+ - recent-features.json
34
+ - recent-files.json
35
+ - recent-flows.json
36
+ - repo_map.json
37
+ - repo_map.md
38
+ - repo.json
39
+ - routes.json
40
+ - schema.json
41
+ - src.json
42
+ - summary.md
43
+ - symbol-graph.json
44
+ - symbol-references.json
45
+ - symbols.json
46
+ - tech_stack.md
47
+ - test-projects.json
48
+ - tools.json
49
+ - user.json
50
+ - users.json
51
+ - utils.json
52
+ - views.json
53
+
54
+ ## .github
55
+ - publish.yml
56
+
57
+ ## .netlify
58
+ - state.json
59
+
60
+ ## ANALISIS_COMPLETO.md
61
+ - ANALISIS_COMPLETO.md
62
+
63
+ ## ANALISIS_MEJORAS.md
64
+ - ANALISIS_MEJORAS.md
65
+
66
+ ## CHANGELOG.md
67
+ - CHANGELOG.md
68
+
69
+ ## CONTRIBUTING.md
70
+ - CONTRIBUTING.md
71
+
72
+ ## FLOW.md
73
+ - FLOW.md
74
+
75
+ ## PLAN_DE_MEJORAS.md
76
+ - PLAN_DE_MEJORAS.md
77
+
78
+ ## PLAN_DE_TESTS.md
79
+ - PLAN_DE_TESTS.md
80
+
81
+ ## PLAN_MEJORAS.md
82
+ - PLAN_MEJORAS.md
83
+
84
+ ## README.es.md
85
+ - README.es.md
86
+
87
+ ## README.md
88
+ - README.md
89
+
90
+ ## TEST_RESULTS.md
91
+ - TEST_RESULTS.md
92
+
93
+ ## TEST_RESULTS_COMPARATIVE.md
94
+ - TEST_RESULTS_COMPARATIVE.md
95
+
96
+ ## TEST_RESULTS_COMPLETE.md
97
+ - TEST_RESULTS_COMPLETE.md
98
+
99
+ ## TEST_RESULTS_COMPREHENSIVE.md
100
+ - TEST_RESULTS_COMPREHENSIVE.md
101
+
102
+ ## ai
103
+ - dependencies.json
104
+ - knowledge-graph.json
105
+
106
+ ## docs
107
+ - adapters.md
108
+ - adapters.md
109
+ - ai-repository-schema.md
110
+ - ai-repository-schema.md
111
+ - architecture.md
112
+ - commands.md
113
+ - config.ts
114
+ - custom.css
115
+ - express-api.md
116
+ - features.md
117
+ - flows.md
118
+ - flows.md
119
+ - getting-started.md
120
+ - getting-started.md
121
+ - git-intelligence.md
122
+ - git-intelligence.md
123
+ - incremental-analysis.md
124
+ - incremental-analysis.md
125
+ - index.md
126
+ - index.md
127
+ - index.md
128
+ - index.ts
129
+ - installation.md
130
+ - knowledge-graph.md
131
+ - knowledge-graph.md
132
+ - lazy-indexing.md
133
+ - lazy-indexing.md
134
+ - performance.md
135
+ - performance.md
136
+ - python-django.md
137
+ - quick-start.md
138
+ - react-app.md
139
+
140
+ ## examples
141
+ - 01-express-api.md
142
+ - 02-react-app.md
143
+ - 03-python-django.md
144
+ - README.md
145
+
146
+ ## homebrew
147
+ - af.rb
148
+
149
+ ## package-lock.json
150
+ - package-lock.json
151
+
152
+ ## package.json
153
+ - package.json
154
+
155
+ ## src
156
+ - adapterRegistry.ts
157
+ - ai-first.ts
158
+ - aiContextGenerator.ts
159
+ - aiContextGenerator.ts
160
+ - aiRules.ts
161
+ - androidResources.ts
162
+ - architecture.ts
163
+ - architectureDetector.ts
164
+ - architectureGenerator.ts
165
+ - baseAdapter.ts
166
+ - callGraphBuilder.ts
167
+ - ccp.ts
168
+ - chunker.ts
169
+ - constants.ts
170
+ - contextGenerator.ts
171
+ - contextPacket.ts
172
+ - conventions.ts
173
+ - dependencies.ts
174
+ - dependencyAnalyzer.ts
175
+ - doctor.ts
176
+ - dotnetAdapter.ts
177
+ - embeddings.ts
178
+ - entrypoints.ts
179
+ - explore.ts
180
+ - fastapiAdapter.ts
181
+ - fileUtils.ts
182
+ - flowGenerator.ts
183
+ - gitAnalyzer.ts
184
+ - gradleModules.ts
185
+ - hierarchyGenerator.ts
186
+ - incrementalAnalyzer.ts
187
+ - index.ts
188
+ - index.ts
189
+ - index.ts
190
+ - index.ts
191
+ - index.ts
192
+ - index.ts
193
+ - indexer.ts
194
+ - indexState.ts
195
+ - inheritanceAnalyzer.ts
196
+ - javascriptAdapter.ts
197
+ - knowledgeGraphBuilder.ts
198
+ - laravelAdapter.ts
199
+ - lazyAnalyzer.ts
200
+ - moduleGraph.ts
201
+ - nestjsAdapter.ts
202
+ - phoenixAdapter.ts
203
+ - pipeline.ts
204
+ - pythonAdapter.ts
205
+ - pythonParser.ts
206
+ - railsAdapter.ts
207
+ - repoMapper.ts
208
+ - repoScanner.ts
209
+ - salesforceAdapter.ts
210
+ - schema.ts
211
+ - sdk.ts
212
+ - semanticContexts.ts
213
+ - springBootAdapter.ts
214
+ - sql.js.d.ts
215
+ - symbolGraph.ts
216
+ - symbols.ts
217
+ - techStack.ts
218
+ - typescriptParser.ts
219
+
220
+ ## test-projects
221
+ - __init__.py
222
+ - __init__.py
223
+ - __init__.py
224
+ - __init__.py
225
+ - __init__.py
226
+ - __init__.py
227
+ - __init__.py
228
+ - __init__.py
229
+ - __init__.py
230
+ - __init__.py
231
+ - __init__.py
232
+ - account.json
233
+ - account.json
234
+ - AccountController.cls
235
+ - AccountTrigger.trigger
236
+ - add_command.py
237
+ - admin.py
238
+ - admin.py
239
+ - ai_context.md
240
+ - ai_context.md
241
+ - ai_context.md
242
+ - ai_context.md
243
+ - ai_context.md
244
+ - ai_context.md
245
+ - ai_context.md
246
+ - ai_context.md
247
+ - ai_context.md
248
+ - ai_context.md
249
+ - ai_context.md
250
+ - ai_context.md
251
+ - ai_context.md
252
+ - ai_context.md
253
+ - ai_context.md
254
+ - ai_context.md
255
+ - ai_context.md
256
+ - ai_context.md
257
+ - ai_context.md
258
+ - ai_context.md
259
+ - ai_context.md
260
+ - ai_context.md
261
+ - ai_rules.md
262
+ - ai_rules.md
263
+ - ai_rules.md
264
+ - ai_rules.md
265
+ - ai_rules.md
266
+ - ai_rules.md
267
+ - ai_rules.md
268
+ - ai_rules.md
269
+ - ai_rules.md
270
+ - ai_rules.md
271
+ - ai_rules.md
272
+ - ai_rules.md
273
+ - ai_rules.md
274
+ - ai_rules.md
275
+ - ai_rules.md
276
+ - ai_rules.md
277
+ - ai_rules.md
278
+ - ai_rules.md
279
+ - ai_rules.md
280
+ - ai_rules.md
281
+ - ai_rules.md
282
+ - ai_rules.md
283
+ - api.php
284
+ - app.json
285
+ - app.json
286
+ - app.json
287
+ - app.json
288
+ - app.json
289
+ - app.json
290
+ - app.module.ts
291
+ - app.php
292
+ - App.tsx
293
+ - application_.json
294
+ - application_.json
295
+ - application_controller.rb
296
+ - application.json
297
+ - application.json
298
+ - application.rb
299
+ - architecture.md
300
+ - architecture.md
301
+ - architecture.md
302
+ - architecture.md
303
+ - architecture.md
304
+ - architecture.md
305
+ - architecture.md
306
+ - architecture.md
307
+ - architecture.md
308
+ - architecture.md
309
+ - architecture.md
310
+ - architecture.md
311
+ - architecture.md
312
+ - architecture.md
313
+ - architecture.md
314
+ - architecture.md
315
+ - architecture.md
316
+ - architecture.md
317
+ - architecture.md
318
+ - architecture.md
319
+ - architecture.md
320
+ - architecture.md
321
+ - auth.controller.json
322
+ - auth.controller.json
323
+ - auth.controller.ts
324
+ - auth.json
325
+ - auth.json
326
+ - auth.json
327
+ - auth.json
328
+ - auth.module.ts
329
+ - auth.py
330
+ - auth.service.ts
331
+ - AuthContext.tsx
332
+ - authController.js
333
+ - authMiddleware.js
334
+ - authService.js
335
+ - cache.json
336
+ - cache.json
337
+ - cache.json
338
+ - cache.json
339
+ - cache.json
340
+ - cache.json
341
+ - cache.json
342
+ - cache.json
343
+ - cache.json
344
+ - cache.json
345
+ - cache.json
346
+ - cache.json
347
+ - cache.json
348
+ - cache.json
349
+ - cache.json
350
+ - cache.json
351
+ - cache.json
352
+ - cache.json
353
+ - cache.json
354
+ - cache.json
355
+ - category.json
356
+ - category.json
357
+ - Category.php
358
+ - CategoryController.php
359
+ - cli.json
360
+ - cli.json
361
+ - Comment.java
362
+ - comment.json
363
+ - comment.json
364
+ - comment.json
365
+ - comment.json
366
+ - Comment.php
367
+ - comment.rb
368
+ - CommentController.java
369
+ - CommentController.php
370
+ - CommentRepository.java
371
+ - comments_.json
372
+ - comments_.json
373
+ - comments_controller.rb
374
+ - comments.json
375
+ - comments.json
376
+ - composer.json
377
+ - config.json
378
+ - config.json
379
+ - config.py
380
+ - Controller.php
381
+ - controllers.json
382
+ - controllers.json
383
+ - conventions.md
384
+ - conventions.md
385
+ - conventions.md
386
+ - conventions.md
387
+ - conventions.md
388
+ - conventions.md
389
+ - conventions.md
390
+ - conventions.md
391
+ - conventions.md
392
+ - conventions.md
393
+ - conventions.md
394
+ - conventions.md
395
+ - conventions.md
396
+ - conventions.md
397
+ - conventions.md
398
+ - conventions.md
399
+ - conventions.md
400
+ - conventions.md
401
+ - conventions.md
402
+ - conventions.md
403
+ - conventions.md
404
+ - conventions.md
405
+ - dashboard.json
406
+ - dashboard.json
407
+ - DashboardPage.tsx
408
+ - database.py
409
+ - DemoApplication.java
410
+ - dependencies.json
411
+ - dependencies.json
412
+ - dependencies.json
413
+ - dependencies.json
414
+ - dependencies.json
415
+ - dependencies.json
416
+ - dependencies.json
417
+ - dependencies.json
418
+ - dependencies.json
419
+ - dependencies.json
420
+ - dependencies.json
421
+ - dependencies.json
422
+ - dependencies.json
423
+ - dependencies.json
424
+ - dependencies.json
425
+ - dependencies.json
426
+ - dependencies.json
427
+ - dependencies.json
428
+ - dependencies.json
429
+ - dependencies.json
430
+ - dependencies.json
431
+ - dependencies.json
432
+ - dependencies.py
433
+ - entrypoints.md
434
+ - entrypoints.md
435
+ - entrypoints.md
436
+ - entrypoints.md
437
+ - entrypoints.md
438
+ - entrypoints.md
439
+ - entrypoints.md
440
+ - entrypoints.md
441
+ - entrypoints.md
442
+ - entrypoints.md
443
+ - entrypoints.md
444
+ - entrypoints.md
445
+ - entrypoints.md
446
+ - entrypoints.md
447
+ - entrypoints.md
448
+ - entrypoints.md
449
+ - entrypoints.md
450
+ - entrypoints.md
451
+ - entrypoints.md
452
+ - entrypoints.md
453
+ - entrypoints.md
454
+ - entrypoints.md
455
+ - environment.rb
456
+ - files.json
457
+ - files.json
458
+ - files.json
459
+ - files.json
460
+ - files.json
461
+ - files.json
462
+ - files.json
463
+ - files.json
464
+ - files.json
465
+ - files.json
466
+ - files.json
467
+ - files.json
468
+ - files.json
469
+ - files.json
470
+ - files.json
471
+ - files.json
472
+ - files.json
473
+ - files.json
474
+ - files.json
475
+ - files.json
476
+ - files.json
477
+ - force-app.json
478
+ - force-app.json
479
+ - forms.py
480
+ - forms.py
481
+ - index-state.json
482
+ - index-state.json
483
+ - index-state.json
484
+ - index-state.json
485
+ - index-state.json
486
+ - index-state.json
487
+ - index-state.json
488
+ - index-state.json
489
+ - index-state.json
490
+ - index-state.json
491
+ - index-state.json
492
+ - index-state.json
493
+ - index-state.json
494
+ - index-state.json
495
+ - index-state.json
496
+ - index-state.json
497
+ - index-state.json
498
+ - index-state.json
499
+ - index-state.json
500
+ - index-state.json
501
+ - index-state.json
502
+ - index.js
503
+ - jwt.strategy.ts
504
+ - knowledge-graph.json
505
+ - knowledge-graph.json
506
+ - knowledge-graph.json
507
+ - knowledge-graph.json
508
+ - knowledge-graph.json
509
+ - knowledge-graph.json
510
+ - knowledge-graph.json
511
+ - knowledge-graph.json
512
+ - knowledge-graph.json
513
+ - knowledge-graph.json
514
+ - knowledge-graph.json
515
+ - knowledge-graph.json
516
+ - knowledge-graph.json
517
+ - knowledge-graph.json
518
+ - knowledge-graph.json
519
+ - knowledge-graph.json
520
+ - knowledge-graph.json
521
+ - knowledge-graph.json
522
+ - knowledge-graph.json
523
+ - knowledge-graph.json
524
+ - list_.json
525
+ - list_.json
526
+ - list_command.py
527
+ - login.dto.ts
528
+ - login.json
529
+ - login.json
530
+ - LoginPage.tsx
531
+ - main.py
532
+ - main.py
533
+ - main.ts
534
+ - main.tsx
535
+ - manage.py
536
+ - models.py
537
+ - models.py
538
+ - models.py
539
+ - models.py
540
+ - module-graph.json
541
+ - module-graph.json
542
+ - module-graph.json
543
+ - module-graph.json
544
+ - module-graph.json
545
+ - module-graph.json
546
+ - module-graph.json
547
+ - module-graph.json
548
+ - module-graph.json
549
+ - module-graph.json
550
+ - module-graph.json
551
+ - module-graph.json
552
+ - module-graph.json
553
+ - module-graph.json
554
+ - module-graph.json
555
+ - module-graph.json
556
+ - module-graph.json
557
+ - module-graph.json
558
+ - module-graph.json
559
+ - module-graph.json
560
+ - modules.json
561
+ - modules.json
562
+ - modules.json
563
+ - modules.json
564
+ - modules.json
565
+ - modules.json
566
+ - modules.json
567
+ - modules.json
568
+ - modules.json
569
+ - modules.json
570
+ - modules.json
571
+ - modules.json
572
+ - modules.json
573
+ - modules.json
574
+ - modules.json
575
+ - modules.json
576
+ - modules.json
577
+ - modules.json
578
+ - modules.json
579
+ - modules.json
580
+ - modules.json
581
+ - modules.json
582
+ - opportunity.json
583
+ - opportunity.json
584
+ - OpportunityController.cls
585
+ - package.json
586
+ - package.json
587
+ - package.json
588
+ - post_service.rb
589
+ - Post.java
590
+ - post.json
591
+ - post.json
592
+ - post.json
593
+ - post.json
594
+ - Post.php
595
+ - post.rb
596
+ - PostController.java
597
+ - PostController.json
598
+ - PostController.json
599
+ - PostController.php
600
+ - PostRepository.java
601
+ - posts_.json
602
+ - posts_.json
603
+ - posts_controller.rb
604
+ - posts.json
605
+ - posts.json
606
+ - posts.py
607
+ - PostService.java
608
+ - project.json
609
+ - project.json
610
+ - project.json
611
+ - project.json
612
+ - project.json
613
+ - project.json
614
+ - project.json
615
+ - project.json
616
+ - project.json
617
+ - project.json
618
+ - project.json
619
+ - project.json
620
+ - project.json
621
+ - project.json
622
+ - project.json
623
+ - project.json
624
+ - project.json
625
+ - project.json
626
+ - project.json
627
+ - project.json
628
+ - project.json
629
+ - project.json
630
+ - README.md
631
+ - README.md
632
+ - README.md
633
+ - README.md
634
+ - README.md
635
+ - README.md
636
+ - remove_.json
637
+ - remove_.json
638
+ - remove_command.py
639
+ - repo_map.json
640
+ - repo_map.json
641
+ - repo_map.json
642
+ - repo_map.json
643
+ - repo_map.json
644
+ - repo_map.json
645
+ - repo_map.json
646
+ - repo_map.json
647
+ - repo_map.json
648
+ - repo_map.json
649
+ - repo_map.json
650
+ - repo_map.json
651
+ - repo_map.json
652
+ - repo_map.json
653
+ - repo_map.json
654
+ - repo_map.json
655
+ - repo_map.json
656
+ - repo_map.json
657
+ - repo_map.json
658
+ - repo_map.json
659
+ - repo_map.json
660
+ - repo_map.json
661
+ - repo_map.md
662
+ - repo_map.md
663
+ - repo_map.md
664
+ - repo_map.md
665
+ - repo_map.md
666
+ - repo_map.md
667
+ - repo_map.md
668
+ - repo_map.md
669
+ - repo_map.md
670
+ - repo_map.md
671
+ - repo_map.md
672
+ - repo_map.md
673
+ - repo_map.md
674
+ - repo_map.md
675
+ - repo_map.md
676
+ - repo_map.md
677
+ - repo_map.md
678
+ - repo_map.md
679
+ - repo_map.md
680
+ - repo_map.md
681
+ - repo_map.md
682
+ - repo_map.md
683
+ - routes.json
684
+ - routes.json
685
+ - routes.json
686
+ - routes.json
687
+ - routes.py
688
+ - routes.py
689
+ - routes.py
690
+ - routes.py
691
+ - routes.rb
692
+ - schema.json
693
+ - schema.json
694
+ - schema.json
695
+ - schema.json
696
+ - schema.json
697
+ - schema.json
698
+ - schema.json
699
+ - schema.json
700
+ - schema.json
701
+ - schema.json
702
+ - schema.json
703
+ - schema.json
704
+ - schema.json
705
+ - schema.json
706
+ - schema.json
707
+ - schema.json
708
+ - schema.json
709
+ - schema.json
710
+ - schema.json
711
+ - schema.json
712
+ - schema.json
713
+ - schema.json
714
+ - schemas.py
715
+ - serializers.py
716
+ - serializers.py
717
+ - services.json
718
+ - services.json
719
+ - settings.py
720
+ - sfdx-project.json
721
+ - src.json
722
+ - src.json
723
+ - src.json
724
+ - src.json
725
+ - src.json
726
+ - src.json
727
+ - summary.md
728
+ - summary.md
729
+ - summary.md
730
+ - summary.md
731
+ - summary.md
732
+ - summary.md
733
+ - summary.md
734
+ - summary.md
735
+ - summary.md
736
+ - summary.md
737
+ - summary.md
738
+ - summary.md
739
+ - summary.md
740
+ - summary.md
741
+ - summary.md
742
+ - summary.md
743
+ - summary.md
744
+ - summary.md
745
+ - summary.md
746
+ - summary.md
747
+ - summary.md
748
+ - summary.md
749
+ - symbol-graph.json
750
+ - symbol-graph.json
751
+ - symbol-graph.json
752
+ - symbol-graph.json
753
+ - symbol-graph.json
754
+ - symbol-graph.json
755
+ - symbol-graph.json
756
+ - symbol-graph.json
757
+ - symbol-graph.json
758
+ - symbol-graph.json
759
+ - symbol-graph.json
760
+ - symbol-graph.json
761
+ - symbol-graph.json
762
+ - symbol-graph.json
763
+ - symbol-graph.json
764
+ - symbol-graph.json
765
+ - symbol-graph.json
766
+ - symbol-graph.json
767
+ - symbol-graph.json
768
+ - symbol-graph.json
769
+ - symbol-references.json
770
+ - symbol-references.json
771
+ - symbol-references.json
772
+ - symbol-references.json
773
+ - symbol-references.json
774
+ - symbol-references.json
775
+ - symbol-references.json
776
+ - symbol-references.json
777
+ - symbol-references.json
778
+ - symbol-references.json
779
+ - symbol-references.json
780
+ - symbol-references.json
781
+ - symbol-references.json
782
+ - symbol-references.json
783
+ - symbol-references.json
784
+ - symbol-references.json
785
+ - symbol-references.json
786
+ - symbol-references.json
787
+ - symbol-references.json
788
+ - symbol-references.json
789
+ - symbols.json
790
+ - symbols.json
791
+ - symbols.json
792
+ - symbols.json
793
+ - symbols.json
794
+ - symbols.json
795
+ - symbols.json
796
+ - symbols.json
797
+ - symbols.json
798
+ - symbols.json
799
+ - symbols.json
800
+ - symbols.json
801
+ - symbols.json
802
+ - symbols.json
803
+ - symbols.json
804
+ - symbols.json
805
+ - symbols.json
806
+ - symbols.json
807
+ - symbols.json
808
+ - symbols.json
809
+ - symbols.json
810
+ - symbols.json
811
+ - task_repository.py
812
+ - task.py
813
+ - tech_stack.md
814
+ - tech_stack.md
815
+ - tech_stack.md
816
+ - tech_stack.md
817
+ - tech_stack.md
818
+ - tech_stack.md
819
+ - tech_stack.md
820
+ - tech_stack.md
821
+ - tech_stack.md
822
+ - tech_stack.md
823
+ - tech_stack.md
824
+ - tech_stack.md
825
+ - tech_stack.md
826
+ - tech_stack.md
827
+ - tech_stack.md
828
+ - tech_stack.md
829
+ - tech_stack.md
830
+ - tech_stack.md
831
+ - tech_stack.md
832
+ - tech_stack.md
833
+ - tech_stack.md
834
+ - tech_stack.md
835
+ - tools.json
836
+ - tools.json
837
+ - tools.json
838
+ - tools.json
839
+ - tools.json
840
+ - tools.json
841
+ - tools.json
842
+ - tools.json
843
+ - tools.json
844
+ - tools.json
845
+ - tools.json
846
+ - tools.json
847
+ - tools.json
848
+ - tools.json
849
+ - tools.json
850
+ - tools.json
851
+ - tools.json
852
+ - tools.json
853
+ - tools.json
854
+ - tools.json
855
+ - tools.json
856
+ - tools.json
857
+ - tsconfig.json
858
+ - unnamed.json
859
+ - unnamed.json
860
+ - urls.py
861
+ - urls.py
862
+ - urls.py
863
+ - useAuth.ts
864
+ - user_service.rb
865
+ - User.java
866
+ - user.json
867
+ - user.json
868
+ - user.json
869
+ - user.json
870
+ - User.php
871
+ - user.rb
872
+ - UserController.java
873
+ - userController.js
874
+ - UserController.json
875
+ - UserController.json
876
+ - UserRepository.java
877
+ - userRepository.js
878
+ - users_.json
879
+ - users_.json
880
+ - users_controller.rb
881
+ - users..json
882
+ - users..json
883
+ - users.controller.json
884
+ - users.controller.json
885
+ - users.controller.ts
886
+ - users.json
887
+ - users.json
888
+ - users.json
889
+ - users.json
890
+ - users.json
891
+ - users.json
892
+ - users.module.ts
893
+ - users.service.ts
894
+ - UserService.java
895
+ - userService.js
896
+ - userService.ts
897
+ - UsersPage.json
898
+ - UsersPage.json
899
+ - UsersPage.tsx
900
+ - views.json
901
+ - views.json
902
+ - views.py
903
+ - views.py
904
+ - wsgi.py
905
+
906
+ ## tests
907
+ - adapters.test.ts
908
+ - analysis.test.ts
909
+ - architectureDetector.test.ts
910
+ - generation.test.ts
911
+ - gitAnalyzer.test.ts
912
+ - incrementalAnalyzer.test.ts
913
+ - knowledgeGraph.test.ts
914
+ - lazyAnalyzer.test.ts
915
+ - parserRegistry.test.ts
916
+ - phase2-fixes.test.ts
917
+ - pipeline.integration.test.ts
918
+ - pythonParser.test.ts
919
+ - README.md
920
+ - schema.test.ts
921
+ - semanticContexts.test.ts
922
+ - typescriptParser.test.ts
923
+
924
+ ## tsconfig.json
925
+ - tsconfig.json
926
+
927
+
928
+
929
+ # Repository Structure (Tree View)
930
+ ├── .ai-dev/
931
+ │ ├── ccp/
932
+ │ │ └── jira-123/
933
+ │ │ └── context.json
934
+ │ ├── context/
935
+ │ │ ├── features/
936
+ │ │ │ ├── commands.json
937
+ │ │ │ ├── src.json
938
+ │ │ │ └── test-projects.json
939
+ │ │ ├── flows/
940
+ │ │ │ ├── account.json
941
+ │ │ │ ├── ai-first.json
942
+ │ │ │ ├── api.json
943
+ │ │ │ ├── auth.json
944
+ │ │ │ ├── category.json
945
+ │ │ │ ├── comment.json
946
+ │ │ │ ├── dashboard.json
947
+ │ │ │ ├── doctor.json
948
+ │ │ │ ├── explore.json
949
+ │ │ │ ├── login.json
950
+ │ │ │ ├── opportunity.json
951
+ │ │ │ ├── post.json
952
+ │ │ │ ├── routes.json
953
+ │ │ │ ├── user.json
954
+ │ │ │ ├── users.json
955
+ │ │ │ └── views.json
956
+ │ │ ├── repo.json
957
+ │ │ └── utils.json
958
+ │ ├── git/
959
+ │ │ ├── commit-activity.json
960
+ │ │ ├── recent-features.json
961
+ │ │ ├── recent-files.json
962
+ │ │ └── recent-flows.json
963
+ │ ├── graph/
964
+ │ │ ├── knowledge-graph.json
965
+ │ │ ├── module-graph.json
966
+ │ │ ├── symbol-graph.json
967
+ │ │ └── symbol-references.json
968
+ │ ├── ai_context.md
969
+ │ ├── ai_rules.md
970
+ │ ├── architecture.md
971
+ │ ├── cache.json
972
+ │ ├── conventions.md
973
+ │ ├── dependencies.json
974
+ │ ├── embeddings.json
975
+ │ ├── entrypoints.md
976
+ │ ├── files.json
977
+ │ ├── hierarchy.json
978
+ │ ├── index-state.json
979
+ │ ├── modules.json
980
+ │ ├── project.json
981
+ │ ├── repo_map.json
982
+ │ ├── repo_map.md
983
+ │ ├── schema.json
984
+ │ ├── summary.md
985
+ │ ├── symbols.json
986
+ │ ├── tech_stack.md
987
+ │ └── tools.json
988
+ ├── .github/
989
+ │ └── workflows/
990
+ │ └── publish.yml
991
+ ├── .netlify/
992
+ │ └── state.json
993
+ ├── ai/
994
+ │ ├── graph/
995
+ │ │ └── knowledge-graph.json
996
+ │ └── dependencies.json
997
+ ├── docs/
998
+ │ ├── .vitepress/
999
+ │ │ ├── theme/
1000
+ │ │ │ ├── custom.css
1001
+ │ │ │ └── index.ts
1002
+ │ │ └── config.ts
1003
+ │ ├── es/
1004
+ │ │ ├── guide/
1005
+ │ │ │ ├── adapters.md
1006
+ │ │ │ ├── ai-repository-schema.md
1007
+ │ │ │ ├── features.md
1008
+ │ │ │ ├── flows.md
1009
+ │ │ │ ├── getting-started.md
1010
+ │ │ │ ├── git-intelligence.md
1011
+ │ │ │ ├── incremental-analysis.md
1012
+ │ │ │ ├── knowledge-graph.md
1013
+ │ │ │ ├── lazy-indexing.md
1014
+ │ │ │ └── performance.md
1015
+ │ │ └── index.md
1016
+ │ ├── examples/
1017
+ │ │ ├── express-api.md
1018
+ │ │ ├── index.md
1019
+ │ │ ├── python-django.md
1020
+ │ │ └── react-app.md
1021
+ │ ├── guide/
1022
+ │ │ ├── adapters.md
1023
+ │ │ ├── ai-repository-schema.md
1024
+ │ │ ├── architecture.md
1025
+ │ │ ├── flows.md
1026
+ │ │ ├── getting-started.md
1027
+ │ │ ├── git-intelligence.md
1028
+ │ │ ├── incremental-analysis.md
1029
+ │ │ ├── installation.md
1030
+ │ │ ├── knowledge-graph.md
1031
+ │ │ ├── lazy-indexing.md
1032
+ │ │ ├── performance.md
1033
+ │ │ └── quick-start.md
1034
+ │ ├── reference/
1035
+ │ │ └── commands.md
1036
+ │ └── index.md
1037
+ ├── examples/
1038
+ │ ├── 01-express-api.md
1039
+ │ ├── 02-react-app.md
1040
+ │ ├── 03-python-django.md
1041
+ │ └── README.md
1042
+ ├── homebrew/
1043
+ │ └── af.rb
1044
+ ├── src/
1045
+ │ ├── analyzers/
1046
+ │ │ ├── aiRules.ts
1047
+ │ │ ├── androidResources.ts
1048
+ │ │ ├── architecture.ts
1049
+ │ │ ├── conventions.ts
1050
+ │ │ ├── dependencies.ts
1051
+ │ │ ├── entrypoints.ts
1052
+ │ │ ├── gradleModules.ts
1053
+ │ │ ├── symbols.ts
1054
+ │ │ └── techStack.ts
1055
+ │ ├── commands/
1056
+ │ │ ├── ai-first.ts
1057
+ │ │ ├── doctor.ts
1058
+ │ │ └── explore.ts
1059
+ │ ├── core/
1060
+ │ │ ├── adapters/
1061
+ │ │ │ ├── community/
1062
+ │ │ │ │ ├── fastapiAdapter.ts
1063
+ │ │ │ │ ├── index.ts
1064
+ │ │ │ │ ├── laravelAdapter.ts
1065
+ │ │ │ │ ├── nestjsAdapter.ts
1066
+ │ │ │ │ ├── phoenixAdapter.ts
1067
+ │ │ │ │ └── springBootAdapter.ts
1068
+ │ │ │ ├── adapterRegistry.ts
1069
+ │ │ │ ├── baseAdapter.ts
1070
+ │ │ │ ├── dotnetAdapter.ts
1071
+ │ │ │ ├── index.ts
1072
+ │ │ │ ├── javascriptAdapter.ts
1073
+ │ │ │ ├── pythonAdapter.ts
1074
+ │ │ │ ├── railsAdapter.ts
1075
+ │ │ │ ├── salesforceAdapter.ts
1076
+ │ │ │ └── sdk.ts
1077
+ │ │ ├── analysis/
1078
+ │ │ │ ├── architectureDetector.ts
1079
+ │ │ │ ├── callGraphBuilder.ts
1080
+ │ │ │ ├── dependencyAnalyzer.ts
1081
+ │ │ │ ├── index.ts
1082
+ │ │ │ └── inheritanceAnalyzer.ts
1083
+ │ │ ├── generation/
1084
+ │ │ │ ├── aiContextGenerator.ts
1085
+ │ │ │ ├── architectureGenerator.ts
1086
+ │ │ │ ├── flowGenerator.ts
1087
+ │ │ │ └── index.ts
1088
+ │ │ ├── parsers/
1089
+ │ │ │ ├── index.ts
1090
+ │ │ │ ├── pythonParser.ts
1091
+ │ │ │ └── typescriptParser.ts
1092
+ │ │ ├── aiContextGenerator.ts
1093
+ │ │ ├── ccp.ts
1094
+ │ │ ├── chunker.ts
1095
+ │ │ ├── contextGenerator.ts
1096
+ │ │ ├── contextPacket.ts
1097
+ │ │ ├── embeddings.ts
1098
+ │ │ ├── gitAnalyzer.ts
1099
+ │ │ ├── hierarchyGenerator.ts
1100
+ │ │ ├── incrementalAnalyzer.ts
1101
+ │ │ ├── indexState.ts
1102
+ │ │ ├── indexer.ts
1103
+ │ │ ├── knowledgeGraphBuilder.ts
1104
+ │ │ ├── lazyAnalyzer.ts
1105
+ │ │ ├── moduleGraph.ts
1106
+ │ │ ├── pipeline.ts
1107
+ │ │ ├── repoMapper.ts
1108
+ │ │ ├── repoScanner.ts
1109
+ │ │ ├── schema.ts
1110
+ │ │ ├── semanticContexts.ts
1111
+ │ │ └── symbolGraph.ts
1112
+ │ ├── types/
1113
+ │ │ └── sql.js.d.ts
1114
+ │ ├── utils/
1115
+ │ │ ├── constants.ts
1116
+ │ │ └── fileUtils.ts
1117
+ │ └── index.ts
1118
+ ├── test-projects/
1119
+ │ ├── django-app/
1120
+ │ │ ├── .ai-dev/
1121
+ │ │ │ ├── context/
1122
+ │ │ │ │ └── flows/
1123
+ │ │ │ │ └── views.json
1124
+ │ │ │ ├── graph/
1125
+ │ │ │ │ ├── knowledge-graph.json
1126
+ │ │ │ │ ├── module-graph.json
1127
+ │ │ │ │ ├── symbol-graph.json
1128
+ │ │ │ │ └── symbol-references.json
1129
+ │ │ │ ├── ai_context.md
1130
+ │ │ │ ├── ai_rules.md
1131
+ │ │ │ ├── architecture.md
1132
+ │ │ │ ├── cache.json
1133
+ │ │ │ ├── conventions.md
1134
+ │ │ │ ├── dependencies.json
1135
+ │ │ │ ├── entrypoints.md
1136
+ │ │ │ ├── files.json
1137
+ │ │ │ ├── index-state.json
1138
+ │ │ │ ├── modules.json
1139
+ │ │ │ ├── project.json
1140
+ │ │ │ ├── repo_map.json
1141
+ │ │ │ ├── repo_map.md
1142
+ │ │ │ ├── schema.json
1143
+ │ │ │ ├── summary.md
1144
+ │ │ │ ├── symbols.json
1145
+ │ │ │ ├── tech_stack.md
1146
+ │ │ │ └── tools.json
1147
+ │ │ ├── ai-context/
1148
+ │ │ │ ├── context/
1149
+ │ │ │ │ └── flows/
1150
+ │ │ │ │ └── views.json
1151
+ │ │ │ ├── graph/
1152
+ │ │ │ │ ├── knowledge-graph.json
1153
+ │ │ │ │ ├── module-graph.json
1154
+ │ │ │ │ ├── symbol-graph.json
1155
+ │ │ │ │ └── symbol-references.json
1156
+ │ │ │ ├── ai_context.md
1157
+ │ │ │ ├── ai_rules.md
1158
+ │ │ │ ├── architecture.md
1159
+ │ │ │ ├── cache.json
1160
+ │ │ │ ├── conventions.md
1161
+ │ │ │ ├── dependencies.json
1162
+ │ │ │ ├── entrypoints.md
1163
+ │ │ │ ├── files.json
1164
+ │ │ │ ├── index-state.json
1165
+ │ │ │ ├── modules.json
1166
+ │ │ │ ├── project.json
1167
+ │ │ │ ├── repo_map.json
1168
+ │ │ │ ├── repo_map.md
1169
+ │ │ │ ├── schema.json
1170
+ │ │ │ ├── summary.md
1171
+ │ │ │ ├── symbols.json
1172
+ │ │ │ ├── tech_stack.md
1173
+ │ │ │ └── tools.json
1174
+ │ │ ├── blog/
1175
+ │ │ │ ├── __init__.py
1176
+ │ │ │ ├── admin.py
1177
+ │ │ │ ├── models.py
1178
+ │ │ │ ├── serializers.py
1179
+ │ │ │ ├── urls.py
1180
+ │ │ │ └── views.py
1181
+ │ │ ├── django_app/
1182
+ │ │ │ ├── __init__.py
1183
+ │ │ │ ├── settings.py
1184
+ │ │ │ ├── urls.py
1185
+ │ │ │ └── wsgi.py
1186
+ │ │ ├── users/
1187
+ │ │ │ ├── __init__.py
1188
+ │ │ │ ├── admin.py
1189
+ │ │ │ ├── models.py
1190
+ │ │ │ ├── serializers.py
1191
+ │ │ │ ├── urls.py
1192
+ │ │ │ └── views.py
1193
+ │ │ ├── README.md
1194
+ │ │ └── manage.py
1195
+ │ ├── express-api/
1196
+ │ │ ├── .ai-dev/
1197
+ │ │ │ ├── context/
1198
+ │ │ │ │ ├── features/
1199
+ │ │ │ │ │ ├── controllers.json
1200
+ │ │ │ │ │ └── services.json
1201
+ │ │ │ │ └── flows/
1202
+ │ │ │ │ ├── auth.json
1203
+ │ │ │ │ └── user.json
1204
+ │ │ │ ├── ai_context.md
1205
+ │ │ │ ├── ai_rules.md
1206
+ │ │ │ ├── architecture.md
1207
+ │ │ │ ├── conventions.md
1208
+ │ │ │ ├── dependencies.json
1209
+ │ │ │ ├── entrypoints.md
1210
+ │ │ │ ├── modules.json
1211
+ │ │ │ ├── project.json
1212
+ │ │ │ ├── repo_map.json
1213
+ │ │ │ ├── repo_map.md
1214
+ │ │ │ ├── schema.json
1215
+ │ │ │ ├── summary.md
1216
+ │ │ │ ├── symbols.json
1217
+ │ │ │ ├── tech_stack.md
1218
+ │ │ │ └── tools.json
1219
+ │ │ ├── ai-context/
1220
+ │ │ │ ├── context/
1221
+ │ │ │ │ ├── features/
1222
+ │ │ │ │ │ ├── controllers.json
1223
+ │ │ │ │ │ └── services.json
1224
+ │ │ │ │ └── flows/
1225
+ │ │ │ │ ├── auth.json
1226
+ │ │ │ │ └── user.json
1227
+ │ │ │ ├── ai_context.md
1228
+ │ │ │ ├── ai_rules.md
1229
+ │ │ │ ├── architecture.md
1230
+ │ │ │ ├── conventions.md
1231
+ │ │ │ ├── dependencies.json
1232
+ │ │ │ ├── entrypoints.md
1233
+ │ │ │ ├── files.json
1234
+ │ │ │ ├── index-state.json
1235
+ │ │ │ ├── modules.json
1236
+ │ │ │ ├── project.json
1237
+ │ │ │ ├── repo_map.json
1238
+ │ │ │ ├── repo_map.md
1239
+ │ │ │ ├── schema.json
1240
+ │ │ │ ├── summary.md
1241
+ │ │ │ ├── symbols.json
1242
+ │ │ │ ├── tech_stack.md
1243
+ │ │ │ └── tools.json
1244
+ │ │ ├── controllers/
1245
+ │ │ │ ├── authController.js
1246
+ │ │ │ └── userController.js
1247
+ │ │ ├── middleware/
1248
+ │ │ │ └── authMiddleware.js
1249
+ │ │ ├── models/
1250
+ │ │ │ └── userRepository.js
1251
+ │ │ ├── services/
1252
+ │ │ │ ├── authService.js
1253
+ │ │ │ └── userService.js
1254
+ │ │ ├── index.js
1255
+ │ │ └── package.json
1256
+ │ ├── fastapi-app/
1257
+ │ │ ├── .ai-dev/
1258
+ │ │ │ ├── graph/
1259
+ │ │ │ │ ├── knowledge-graph.json
1260
+ │ │ │ │ ├── module-graph.json
1261
+ │ │ │ │ ├── symbol-graph.json
1262
+ │ │ │ │ └── symbol-references.json
1263
+ │ │ │ ├── ai_context.md
1264
+ │ │ │ ├── ai_rules.md
1265
+ │ │ │ ├── architecture.md
1266
+ │ │ │ ├── cache.json
1267
+ │ │ │ ├── conventions.md
1268
+ │ │ │ ├── dependencies.json
1269
+ │ │ │ ├── entrypoints.md
1270
+ │ │ │ ├── files.json
1271
+ │ │ │ ├── index-state.json
1272
+ │ │ │ ├── modules.json
1273
+ │ │ │ ├── project.json
1274
+ │ │ │ ├── repo_map.json
1275
+ │ │ │ ├── repo_map.md
1276
+ │ │ │ ├── schema.json
1277
+ │ │ │ ├── summary.md
1278
+ │ │ │ ├── symbols.json
1279
+ │ │ │ ├── tech_stack.md
1280
+ │ │ │ └── tools.json
1281
+ │ │ ├── ai-context/
1282
+ │ │ │ ├── graph/
1283
+ │ │ │ │ ├── knowledge-graph.json
1284
+ │ │ │ │ ├── module-graph.json
1285
+ │ │ │ │ ├── symbol-graph.json
1286
+ │ │ │ │ └── symbol-references.json
1287
+ │ │ │ ├── ai_context.md
1288
+ │ │ │ ├── ai_rules.md
1289
+ │ │ │ ├── architecture.md
1290
+ │ │ │ ├── cache.json
1291
+ │ │ │ ├── conventions.md
1292
+ │ │ │ ├── dependencies.json
1293
+ │ │ │ ├── entrypoints.md
1294
+ │ │ │ ├── files.json
1295
+ │ │ │ ├── index-state.json
1296
+ │ │ │ ├── modules.json
1297
+ │ │ │ ├── project.json
1298
+ │ │ │ ├── repo_map.json
1299
+ │ │ │ ├── repo_map.md
1300
+ │ │ │ ├── schema.json
1301
+ │ │ │ ├── summary.md
1302
+ │ │ │ ├── symbols.json
1303
+ │ │ │ ├── tech_stack.md
1304
+ │ │ │ └── tools.json
1305
+ │ │ ├── app/
1306
+ │ │ │ ├── routers/
1307
+ │ │ │ │ ├── auth.py
1308
+ │ │ │ │ └── posts.py
1309
+ │ │ │ ├── database.py
1310
+ │ │ │ ├── dependencies.py
1311
+ │ │ │ ├── main.py
1312
+ │ │ │ ├── models.py
1313
+ │ │ │ └── schemas.py
1314
+ │ │ └── README.md
1315
+ │ ├── flask-app/
1316
+ │ │ ├── .ai-dev/
1317
+ │ │ │ ├── context/
1318
+ │ │ │ │ ├── features/
1319
+ │ │ │ │ │ └── app.json
1320
+ │ │ │ │ └── flows/
1321
+ │ │ │ │ └── routes.json
1322
+ │ │ │ ├── graph/
1323
+ │ │ │ │ ├── knowledge-graph.json
1324
+ │ │ │ │ ├── module-graph.json
1325
+ │ │ │ │ ├── symbol-graph.json
1326
+ │ │ │ │ └── symbol-references.json
1327
+ │ │ │ ├── ai_context.md
1328
+ │ │ │ ├── ai_rules.md
1329
+ │ │ │ ├── architecture.md
1330
+ │ │ │ ├── cache.json
1331
+ │ │ │ ├── conventions.md
1332
+ │ │ │ ├── dependencies.json
1333
+ │ │ │ ├── entrypoints.md
1334
+ │ │ │ ├── files.json
1335
+ │ │ │ ├── index-state.json
1336
+ │ │ │ ├── modules.json
1337
+ │ │ │ ├── project.json
1338
+ │ │ │ ├── repo_map.json
1339
+ │ │ │ ├── repo_map.md
1340
+ │ │ │ ├── schema.json
1341
+ │ │ │ ├── summary.md
1342
+ │ │ │ ├── symbols.json
1343
+ │ │ │ ├── tech_stack.md
1344
+ │ │ │ └── tools.json
1345
+ │ │ ├── ai-context/
1346
+ │ │ │ ├── context/
1347
+ │ │ │ │ ├── features/
1348
+ │ │ │ │ │ └── app.json
1349
+ │ │ │ │ └── flows/
1350
+ │ │ │ │ └── routes.json
1351
+ │ │ │ ├── graph/
1352
+ │ │ │ │ ├── knowledge-graph.json
1353
+ │ │ │ │ ├── module-graph.json
1354
+ │ │ │ │ ├── symbol-graph.json
1355
+ │ │ │ │ └── symbol-references.json
1356
+ │ │ │ ├── ai_context.md
1357
+ │ │ │ ├── ai_rules.md
1358
+ │ │ │ ├── architecture.md
1359
+ │ │ │ ├── cache.json
1360
+ │ │ │ ├── conventions.md
1361
+ │ │ │ ├── dependencies.json
1362
+ │ │ │ ├── entrypoints.md
1363
+ │ │ │ ├── files.json
1364
+ │ │ │ ├── index-state.json
1365
+ │ │ │ ├── modules.json
1366
+ │ │ │ ├── project.json
1367
+ │ │ │ ├── repo_map.json
1368
+ │ │ │ ├── repo_map.md
1369
+ │ │ │ ├── schema.json
1370
+ │ │ │ ├── summary.md
1371
+ │ │ │ ├── symbols.json
1372
+ │ │ │ ├── tech_stack.md
1373
+ │ │ │ └── tools.json
1374
+ │ │ ├── app/
1375
+ │ │ │ ├── api/
1376
+ │ │ │ │ ├── __init__.py
1377
+ │ │ │ │ └── routes.py
1378
+ │ │ │ ├── auth/
1379
+ │ │ │ │ ├── __init__.py
1380
+ │ │ │ │ ├── forms.py
1381
+ │ │ │ │ └── routes.py
1382
+ │ │ │ ├── blog/
1383
+ │ │ │ │ ├── __init__.py
1384
+ │ │ │ │ ├── forms.py
1385
+ │ │ │ │ └── routes.py
1386
+ │ │ │ ├── main/
1387
+ │ │ │ │ ├── __init__.py
1388
+ │ │ │ │ └── routes.py
1389
+ │ │ │ ├── __init__.py
1390
+ │ │ │ └── models.py
1391
+ │ │ ├── README.md
1392
+ │ │ └── config.py
1393
+ │ ├── laravel-app/
1394
+ │ │ ├── .ai-dev/
1395
+ │ │ │ ├── context/
1396
+ │ │ │ │ ├── features/
1397
+ │ │ │ │ │ └── app.json
1398
+ │ │ │ │ └── flows/
1399
+ │ │ │ │ ├── category.json
1400
+ │ │ │ │ ├── comment.json
1401
+ │ │ │ │ ├── post.json
1402
+ │ │ │ │ └── unnamed.json
1403
+ │ │ │ ├── graph/
1404
+ │ │ │ │ ├── knowledge-graph.json
1405
+ │ │ │ │ ├── module-graph.json
1406
+ │ │ │ │ ├── symbol-graph.json
1407
+ │ │ │ │ └── symbol-references.json
1408
+ │ │ │ ├── ai_context.md
1409
+ │ │ │ ├── ai_rules.md
1410
+ │ │ │ ├── architecture.md
1411
+ │ │ │ ├── cache.json
1412
+ │ │ │ ├── conventions.md
1413
+ │ │ │ ├── dependencies.json
1414
+ │ │ │ ├── entrypoints.md
1415
+ │ │ │ ├── files.json
1416
+ │ │ │ ├── index-state.json
1417
+ │ │ │ ├── modules.json
1418
+ │ │ │ ├── project.json
1419
+ │ │ │ ├── repo_map.json
1420
+ │ │ │ ├── repo_map.md
1421
+ │ │ │ ├── schema.json
1422
+ │ │ │ ├── summary.md
1423
+ │ │ │ ├── symbols.json
1424
+ │ │ │ ├── tech_stack.md
1425
+ │ │ │ └── tools.json
1426
+ │ │ ├── ai-context/
1427
+ │ │ │ ├── context/
1428
+ │ │ │ │ ├── features/
1429
+ │ │ │ │ │ └── app.json
1430
+ │ │ │ │ └── flows/
1431
+ │ │ │ │ ├── category.json
1432
+ │ │ │ │ ├── comment.json
1433
+ │ │ │ │ ├── post.json
1434
+ │ │ │ │ └── unnamed.json
1435
+ │ │ │ ├── graph/
1436
+ │ │ │ │ ├── knowledge-graph.json
1437
+ │ │ │ │ ├── module-graph.json
1438
+ │ │ │ │ ├── symbol-graph.json
1439
+ │ │ │ │ └── symbol-references.json
1440
+ │ │ │ ├── ai_context.md
1441
+ │ │ │ ├── ai_rules.md
1442
+ │ │ │ ├── architecture.md
1443
+ │ │ │ ├── cache.json
1444
+ │ │ │ ├── conventions.md
1445
+ │ │ │ ├── dependencies.json
1446
+ │ │ │ ├── entrypoints.md
1447
+ │ │ │ ├── files.json
1448
+ │ │ │ ├── index-state.json
1449
+ │ │ │ ├── modules.json
1450
+ │ │ │ ├── project.json
1451
+ │ │ │ ├── repo_map.json
1452
+ │ │ │ ├── repo_map.md
1453
+ │ │ │ ├── schema.json
1454
+ │ │ │ ├── summary.md
1455
+ │ │ │ ├── symbols.json
1456
+ │ │ │ ├── tech_stack.md
1457
+ │ │ │ └── tools.json
1458
+ │ │ ├── app/
1459
+ │ │ │ ├── Http/
1460
+ │ │ │ │ └── Controllers/
1461
+ │ │ │ │ ├── Api/
1462
+ │ │ │ │ │ ├── CategoryController.php
1463
+ │ │ │ │ │ ├── CommentController.php
1464
+ │ │ │ │ │ └── PostController.php
1465
+ │ │ │ │ └── Controller.php
1466
+ │ │ │ └── Models/
1467
+ │ │ │ ├── Category.php
1468
+ │ │ │ ├── Comment.php
1469
+ │ │ │ ├── Post.php
1470
+ │ │ │ └── User.php
1471
+ │ │ ├── bootstrap/
1472
+ │ │ │ └── app.php
1473
+ │ │ ├── routes/
1474
+ │ │ │ └── api.php
1475
+ │ │ ├── README.md
1476
+ │ │ └── composer.json
1477
+ │ ├── nestjs-backend/
1478
+ │ │ ├── .ai-dev/
1479
+ │ │ │ ├── context/
1480
+ │ │ │ │ ├── features/
1481
+ │ │ │ │ │ └── src.json
1482
+ │ │ │ │ └── flows/
1483
+ │ │ │ │ ├── auth.controller.json
1484
+ │ │ │ │ ├── auth.json
1485
+ │ │ │ │ ├── users..json
1486
+ │ │ │ │ ├── users.controller.json
1487
+ │ │ │ │ └── users.json
1488
+ │ │ │ ├── graph/
1489
+ │ │ │ │ ├── knowledge-graph.json
1490
+ │ │ │ │ ├── module-graph.json
1491
+ │ │ │ │ ├── symbol-graph.json
1492
+ │ │ │ │ └── symbol-references.json
1493
+ │ │ │ ├── ai_context.md
1494
+ │ │ │ ├── ai_rules.md
1495
+ │ │ │ ├── architecture.md
1496
+ │ │ │ ├── cache.json
1497
+ │ │ │ ├── conventions.md
1498
+ │ │ │ ├── dependencies.json
1499
+ │ │ │ ├── entrypoints.md
1500
+ │ │ │ ├── files.json
1501
+ │ │ │ ├── index-state.json
1502
+ │ │ │ ├── modules.json
1503
+ │ │ │ ├── project.json
1504
+ │ │ │ ├── repo_map.json
1505
+ │ │ │ ├── repo_map.md
1506
+ │ │ │ ├── schema.json
1507
+ │ │ │ ├── summary.md
1508
+ │ │ │ ├── symbols.json
1509
+ │ │ │ ├── tech_stack.md
1510
+ │ │ │ └── tools.json
1511
+ │ │ ├── ai-context/
1512
+ │ │ │ ├── context/
1513
+ │ │ │ │ ├── features/
1514
+ │ │ │ │ │ └── src.json
1515
+ │ │ │ │ └── flows/
1516
+ │ │ │ │ ├── auth.controller.json
1517
+ │ │ │ │ ├── auth.json
1518
+ │ │ │ │ ├── users..json
1519
+ │ │ │ │ ├── users.controller.json
1520
+ │ │ │ │ └── users.json
1521
+ │ │ │ ├── graph/
1522
+ │ │ │ │ ├── knowledge-graph.json
1523
+ │ │ │ │ ├── module-graph.json
1524
+ │ │ │ │ ├── symbol-graph.json
1525
+ │ │ │ │ └── symbol-references.json
1526
+ │ │ │ ├── ai_context.md
1527
+ │ │ │ ├── ai_rules.md
1528
+ │ │ │ ├── architecture.md
1529
+ │ │ │ ├── cache.json
1530
+ │ │ │ ├── conventions.md
1531
+ │ │ │ ├── dependencies.json
1532
+ │ │ │ ├── entrypoints.md
1533
+ │ │ │ ├── files.json
1534
+ │ │ │ ├── index-state.json
1535
+ │ │ │ ├── modules.json
1536
+ │ │ │ ├── project.json
1537
+ │ │ │ ├── repo_map.json
1538
+ │ │ │ ├── repo_map.md
1539
+ │ │ │ ├── schema.json
1540
+ │ │ │ ├── summary.md
1541
+ │ │ │ ├── symbols.json
1542
+ │ │ │ ├── tech_stack.md
1543
+ │ │ │ └── tools.json
1544
+ │ │ ├── src/
1545
+ │ │ │ ├── auth/
1546
+ │ │ │ │ ├── dto/
1547
+ │ │ │ │ │ └── login.dto.ts
1548
+ │ │ │ │ ├── strategies/
1549
+ │ │ │ │ │ └── jwt.strategy.ts
1550
+ │ │ │ │ ├── auth.controller.ts
1551
+ │ │ │ │ ├── auth.module.ts
1552
+ │ │ │ │ └── auth.service.ts
1553
+ │ │ │ ├── users/
1554
+ │ │ │ │ ├── users.controller.ts
1555
+ │ │ │ │ ├── users.module.ts
1556
+ │ │ │ │ └── users.service.ts
1557
+ │ │ │ ├── app.module.ts
1558
+ │ │ │ └── main.ts
1559
+ │ │ ├── package.json
1560
+ │ │ └── tsconfig.json
1561
+ │ ├── python-cli/
1562
+ │ │ ├── .ai-dev/
1563
+ │ │ │ ├── context/
1564
+ │ │ │ │ ├── features/
1565
+ │ │ │ │ │ └── cli.json
1566
+ │ │ │ │ └── flows/
1567
+ │ │ │ │ ├── list_.json
1568
+ │ │ │ │ └── remove_.json
1569
+ │ │ │ ├── graph/
1570
+ │ │ │ │ ├── knowledge-graph.json
1571
+ │ │ │ │ ├── module-graph.json
1572
+ │ │ │ │ ├── symbol-graph.json
1573
+ │ │ │ │ └── symbol-references.json
1574
+ │ │ │ ├── ai_context.md
1575
+ │ │ │ ├── ai_rules.md
1576
+ │ │ │ ├── architecture.md
1577
+ │ │ │ ├── cache.json
1578
+ │ │ │ ├── conventions.md
1579
+ │ │ │ ├── dependencies.json
1580
+ │ │ │ ├── entrypoints.md
1581
+ │ │ │ ├── files.json
1582
+ │ │ │ ├── index-state.json
1583
+ │ │ │ ├── modules.json
1584
+ │ │ │ ├── project.json
1585
+ │ │ │ ├── repo_map.json
1586
+ │ │ │ ├── repo_map.md
1587
+ │ │ │ ├── schema.json
1588
+ │ │ │ ├── summary.md
1589
+ │ │ │ ├── symbols.json
1590
+ │ │ │ ├── tech_stack.md
1591
+ │ │ │ └── tools.json
1592
+ │ │ ├── ai-context/
1593
+ │ │ │ ├── context/
1594
+ │ │ │ │ ├── features/
1595
+ │ │ │ │ │ └── cli.json
1596
+ │ │ │ │ └── flows/
1597
+ │ │ │ │ ├── list_.json
1598
+ │ │ │ │ └── remove_.json
1599
+ │ │ │ ├── graph/
1600
+ │ │ │ │ ├── knowledge-graph.json
1601
+ │ │ │ │ ├── module-graph.json
1602
+ │ │ │ │ ├── symbol-graph.json
1603
+ │ │ │ │ └── symbol-references.json
1604
+ │ │ │ ├── ai_context.md
1605
+ │ │ │ ├── ai_rules.md
1606
+ │ │ │ ├── architecture.md
1607
+ │ │ │ ├── cache.json
1608
+ │ │ │ ├── conventions.md
1609
+ │ │ │ ├── dependencies.json
1610
+ │ │ │ ├── entrypoints.md
1611
+ │ │ │ ├── files.json
1612
+ │ │ │ ├── index-state.json
1613
+ │ │ │ ├── modules.json
1614
+ │ │ │ ├── project.json
1615
+ │ │ │ ├── repo_map.json
1616
+ │ │ │ ├── repo_map.md
1617
+ │ │ │ ├── schema.json
1618
+ │ │ │ ├── summary.md
1619
+ │ │ │ ├── symbols.json
1620
+ │ │ │ ├── tech_stack.md
1621
+ │ │ │ └── tools.json
1622
+ │ │ ├── cli/
1623
+ │ │ │ ├── __init__.py
1624
+ │ │ │ ├── add_command.py
1625
+ │ │ │ ├── list_command.py
1626
+ │ │ │ └── remove_command.py
1627
+ │ │ ├── models/
1628
+ │ │ │ ├── __init__.py
1629
+ │ │ │ ├── task.py
1630
+ │ │ │ └── task_repository.py
1631
+ │ │ ├── __init__.py
1632
+ │ │ └── main.py
1633
+ │ ├── rails-app/
1634
+ │ │ ├── .ai-dev/
1635
+ │ │ │ ├── context/
1636
+ │ │ │ │ ├── features/
1637
+ │ │ │ │ │ ├── app.json
1638
+ │ │ │ │ │ └── config.json
1639
+ │ │ │ │ └── flows/
1640
+ │ │ │ │ ├── application.json
1641
+ │ │ │ │ ├── application_.json
1642
+ │ │ │ │ ├── comments.json
1643
+ │ │ │ │ ├── comments_.json
1644
+ │ │ │ │ ├── posts.json
1645
+ │ │ │ │ ├── posts_.json
1646
+ │ │ │ │ ├── routes.json
1647
+ │ │ │ │ ├── users.json
1648
+ │ │ │ │ └── users_.json
1649
+ │ │ │ ├── graph/
1650
+ │ │ │ │ ├── knowledge-graph.json
1651
+ │ │ │ │ ├── module-graph.json
1652
+ │ │ │ │ ├── symbol-graph.json
1653
+ │ │ │ │ └── symbol-references.json
1654
+ │ │ │ ├── ai_context.md
1655
+ │ │ │ ├── ai_rules.md
1656
+ │ │ │ ├── architecture.md
1657
+ │ │ │ ├── cache.json
1658
+ │ │ │ ├── conventions.md
1659
+ │ │ │ ├── dependencies.json
1660
+ │ │ │ ├── entrypoints.md
1661
+ │ │ │ ├── files.json
1662
+ │ │ │ ├── index-state.json
1663
+ │ │ │ ├── modules.json
1664
+ │ │ │ ├── project.json
1665
+ │ │ │ ├── repo_map.json
1666
+ │ │ │ ├── repo_map.md
1667
+ │ │ │ ├── schema.json
1668
+ │ │ │ ├── summary.md
1669
+ │ │ │ ├── symbols.json
1670
+ │ │ │ ├── tech_stack.md
1671
+ │ │ │ └── tools.json
1672
+ │ │ ├── ai-context/
1673
+ │ │ │ ├── context/
1674
+ │ │ │ │ ├── features/
1675
+ │ │ │ │ │ ├── app.json
1676
+ │ │ │ │ │ └── config.json
1677
+ │ │ │ │ └── flows/
1678
+ │ │ │ │ ├── application.json
1679
+ │ │ │ │ ├── application_.json
1680
+ │ │ │ │ ├── comments.json
1681
+ │ │ │ │ ├── comments_.json
1682
+ │ │ │ │ ├── posts.json
1683
+ │ │ │ │ ├── posts_.json
1684
+ │ │ │ │ ├── routes.json
1685
+ │ │ │ │ ├── users.json
1686
+ │ │ │ │ └── users_.json
1687
+ │ │ │ ├── graph/
1688
+ │ │ │ │ ├── knowledge-graph.json
1689
+ │ │ │ │ ├── module-graph.json
1690
+ │ │ │ │ ├── symbol-graph.json
1691
+ │ │ │ │ └── symbol-references.json
1692
+ │ │ │ ├── ai_context.md
1693
+ │ │ │ ├── ai_rules.md
1694
+ │ │ │ ├── architecture.md
1695
+ │ │ │ ├── cache.json
1696
+ │ │ │ ├── conventions.md
1697
+ │ │ │ ├── dependencies.json
1698
+ │ │ │ ├── entrypoints.md
1699
+ │ │ │ ├── files.json
1700
+ │ │ │ ├── index-state.json
1701
+ │ │ │ ├── modules.json
1702
+ │ │ │ ├── project.json
1703
+ │ │ │ ├── repo_map.json
1704
+ │ │ │ ├── repo_map.md
1705
+ │ │ │ ├── schema.json
1706
+ │ │ │ ├── summary.md
1707
+ │ │ │ ├── symbols.json
1708
+ │ │ │ ├── tech_stack.md
1709
+ │ │ │ └── tools.json
1710
+ │ │ ├── app/
1711
+ │ │ │ ├── controllers/
1712
+ │ │ │ │ ├── api/
1713
+ │ │ │ │ │ ├── comments_controller.rb
1714
+ │ │ │ │ │ ├── posts_controller.rb
1715
+ │ │ │ │ │ └── users_controller.rb
1716
+ │ │ │ │ └── application_controller.rb
1717
+ │ │ │ ├── models/
1718
+ │ │ │ │ ├── comment.rb
1719
+ │ │ │ │ ├── post.rb
1720
+ │ │ │ │ └── user.rb
1721
+ │ │ │ └── services/
1722
+ │ │ │ ├── post_service.rb
1723
+ │ │ │ └── user_service.rb
1724
+ │ │ ├── config/
1725
+ │ │ │ ├── application.rb
1726
+ │ │ │ ├── environment.rb
1727
+ │ │ │ └── routes.rb
1728
+ │ │ └── README.md
1729
+ │ ├── react-app/
1730
+ │ │ ├── .ai-dev/
1731
+ │ │ │ ├── context/
1732
+ │ │ │ │ ├── features/
1733
+ │ │ │ │ │ └── src.json
1734
+ │ │ │ │ └── flows/
1735
+ │ │ │ │ ├── UsersPage.json
1736
+ │ │ │ │ ├── dashboard.json
1737
+ │ │ │ │ ├── login.json
1738
+ │ │ │ │ └── users.json
1739
+ │ │ │ ├── graph/
1740
+ │ │ │ │ ├── knowledge-graph.json
1741
+ │ │ │ │ ├── module-graph.json
1742
+ │ │ │ │ ├── symbol-graph.json
1743
+ │ │ │ │ └── symbol-references.json
1744
+ │ │ │ ├── ai_context.md
1745
+ │ │ │ ├── ai_rules.md
1746
+ │ │ │ ├── architecture.md
1747
+ │ │ │ ├── cache.json
1748
+ │ │ │ ├── conventions.md
1749
+ │ │ │ ├── dependencies.json
1750
+ │ │ │ ├── entrypoints.md
1751
+ │ │ │ ├── files.json
1752
+ │ │ │ ├── index-state.json
1753
+ │ │ │ ├── modules.json
1754
+ │ │ │ ├── project.json
1755
+ │ │ │ ├── repo_map.json
1756
+ │ │ │ ├── repo_map.md
1757
+ │ │ │ ├── schema.json
1758
+ │ │ │ ├── summary.md
1759
+ │ │ │ ├── symbols.json
1760
+ │ │ │ ├── tech_stack.md
1761
+ │ │ │ └── tools.json
1762
+ │ │ ├── ai-context/
1763
+ │ │ │ ├── context/
1764
+ │ │ │ │ ├── features/
1765
+ │ │ │ │ │ └── src.json
1766
+ │ │ │ │ └── flows/
1767
+ │ │ │ │ ├── UsersPage.json
1768
+ │ │ │ │ ├── dashboard.json
1769
+ │ │ │ │ ├── login.json
1770
+ │ │ │ │ └── users.json
1771
+ │ │ │ ├── graph/
1772
+ │ │ │ │ ├── knowledge-graph.json
1773
+ │ │ │ │ ├── module-graph.json
1774
+ │ │ │ │ ├── symbol-graph.json
1775
+ │ │ │ │ └── symbol-references.json
1776
+ │ │ │ ├── ai_context.md
1777
+ │ │ │ ├── ai_rules.md
1778
+ │ │ │ ├── architecture.md
1779
+ │ │ │ ├── cache.json
1780
+ │ │ │ ├── conventions.md
1781
+ │ │ │ ├── dependencies.json
1782
+ │ │ │ ├── entrypoints.md
1783
+ │ │ │ ├── files.json
1784
+ │ │ │ ├── index-state.json
1785
+ │ │ │ ├── modules.json
1786
+ │ │ │ ├── project.json
1787
+ │ │ │ ├── repo_map.json
1788
+ │ │ │ ├── repo_map.md
1789
+ │ │ │ ├── schema.json
1790
+ │ │ │ ├── summary.md
1791
+ │ │ │ ├── symbols.json
1792
+ │ │ │ ├── tech_stack.md
1793
+ │ │ │ └── tools.json
1794
+ │ │ ├── src/
1795
+ │ │ │ ├── context/
1796
+ │ │ │ │ └── AuthContext.tsx
1797
+ │ │ │ ├── hooks/
1798
+ │ │ │ │ └── useAuth.ts
1799
+ │ │ │ ├── pages/
1800
+ │ │ │ │ ├── DashboardPage.tsx
1801
+ │ │ │ │ ├── LoginPage.tsx
1802
+ │ │ │ │ └── UsersPage.tsx
1803
+ │ │ │ ├── services/
1804
+ │ │ │ │ └── userService.ts
1805
+ │ │ │ ├── App.tsx
1806
+ │ │ │ └── main.tsx
1807
+ │ │ └── package.json
1808
+ │ ├── salesforce-cli/
1809
+ │ │ ├── .ai-dev/
1810
+ │ │ │ ├── context/
1811
+ │ │ │ │ ├── features/
1812
+ │ │ │ │ │ └── force-app.json
1813
+ │ │ │ │ └── flows/
1814
+ │ │ │ │ ├── account.json
1815
+ │ │ │ │ └── opportunity.json
1816
+ │ │ │ ├── graph/
1817
+ │ │ │ │ ├── knowledge-graph.json
1818
+ │ │ │ │ ├── module-graph.json
1819
+ │ │ │ │ ├── symbol-graph.json
1820
+ │ │ │ │ └── symbol-references.json
1821
+ │ │ │ ├── ai_context.md
1822
+ │ │ │ ├── ai_rules.md
1823
+ │ │ │ ├── architecture.md
1824
+ │ │ │ ├── cache.json
1825
+ │ │ │ ├── conventions.md
1826
+ │ │ │ ├── dependencies.json
1827
+ │ │ │ ├── entrypoints.md
1828
+ │ │ │ ├── files.json
1829
+ │ │ │ ├── index-state.json
1830
+ │ │ │ ├── modules.json
1831
+ │ │ │ ├── project.json
1832
+ │ │ │ ├── repo_map.json
1833
+ │ │ │ ├── repo_map.md
1834
+ │ │ │ ├── schema.json
1835
+ │ │ │ ├── summary.md
1836
+ │ │ │ ├── symbols.json
1837
+ │ │ │ ├── tech_stack.md
1838
+ │ │ │ └── tools.json
1839
+ │ │ ├── ai-context/
1840
+ │ │ │ ├── context/
1841
+ │ │ │ │ ├── features/
1842
+ │ │ │ │ │ └── force-app.json
1843
+ │ │ │ │ └── flows/
1844
+ │ │ │ │ ├── account.json
1845
+ │ │ │ │ └── opportunity.json
1846
+ │ │ │ ├── graph/
1847
+ │ │ │ │ ├── knowledge-graph.json
1848
+ │ │ │ │ ├── module-graph.json
1849
+ │ │ │ │ ├── symbol-graph.json
1850
+ │ │ │ │ └── symbol-references.json
1851
+ │ │ │ ├── ai_context.md
1852
+ │ │ │ ├── ai_rules.md
1853
+ │ │ │ ├── architecture.md
1854
+ │ │ │ ├── cache.json
1855
+ │ │ │ ├── conventions.md
1856
+ │ │ │ ├── dependencies.json
1857
+ │ │ │ ├── entrypoints.md
1858
+ │ │ │ ├── files.json
1859
+ │ │ │ ├── index-state.json
1860
+ │ │ │ ├── modules.json
1861
+ │ │ │ ├── project.json
1862
+ │ │ │ ├── repo_map.json
1863
+ │ │ │ ├── repo_map.md
1864
+ │ │ │ ├── schema.json
1865
+ │ │ │ ├── summary.md
1866
+ │ │ │ ├── symbols.json
1867
+ │ │ │ ├── tech_stack.md
1868
+ │ │ │ └── tools.json
1869
+ │ │ ├── force-app/
1870
+ │ │ │ └── main/
1871
+ │ │ │ └── default/
1872
+ │ │ │ ├── classes/
1873
+ │ │ │ │ ├── AccountController.cls
1874
+ │ │ │ │ └── OpportunityController.cls
1875
+ │ │ │ └── triggers/
1876
+ │ │ │ └── AccountTrigger.trigger
1877
+ │ │ └── sfdx-project.json
1878
+ │ └── spring-boot-app/
1879
+ │ ├── .ai-dev/
1880
+ │ │ ├── context/
1881
+ │ │ │ ├── features/
1882
+ │ │ │ │ └── src.json
1883
+ │ │ │ └── flows/
1884
+ │ │ │ ├── PostController.json
1885
+ │ │ │ ├── UserController.json
1886
+ │ │ │ ├── comment.json
1887
+ │ │ │ ├── post.json
1888
+ │ │ │ └── user.json
1889
+ │ │ ├── graph/
1890
+ │ │ │ ├── knowledge-graph.json
1891
+ │ │ │ ├── module-graph.json
1892
+ │ │ │ ├── symbol-graph.json
1893
+ │ │ │ └── symbol-references.json
1894
+ │ │ ├── ai_context.md
1895
+ │ │ ├── ai_rules.md
1896
+ │ │ ├── architecture.md
1897
+ │ │ ├── cache.json
1898
+ │ │ ├── conventions.md
1899
+ │ │ ├── dependencies.json
1900
+ │ │ ├── entrypoints.md
1901
+ │ │ ├── files.json
1902
+ │ │ ├── index-state.json
1903
+ │ │ ├── modules.json
1904
+ │ │ ├── project.json
1905
+ │ │ ├── repo_map.json
1906
+ │ │ ├── repo_map.md
1907
+ │ │ ├── schema.json
1908
+ │ │ ├── summary.md
1909
+ │ │ ├── symbols.json
1910
+ │ │ ├── tech_stack.md
1911
+ │ │ └── tools.json
1912
+ │ ├── ai-context/
1913
+ │ │ ├── context/
1914
+ │ │ │ ├── features/
1915
+ │ │ │ │ └── src.json
1916
+ │ │ │ └── flows/
1917
+ │ │ │ ├── PostController.json
1918
+ │ │ │ ├── UserController.json
1919
+ │ │ │ ├── comment.json
1920
+ │ │ │ ├── post.json
1921
+ │ │ │ └── user.json
1922
+ │ │ ├── graph/
1923
+ │ │ │ ├── knowledge-graph.json
1924
+ │ │ │ ├── module-graph.json
1925
+ │ │ │ ├── symbol-graph.json
1926
+ │ │ │ └── symbol-references.json
1927
+ │ │ ├── ai_context.md
1928
+ │ │ ├── ai_rules.md
1929
+ │ │ ├── architecture.md
1930
+ │ │ ├── cache.json
1931
+ │ │ ├── conventions.md
1932
+ │ │ ├── dependencies.json
1933
+ │ │ ├── entrypoints.md
1934
+ │ │ ├── files.json
1935
+ │ │ ├── index-state.json
1936
+ │ │ ├── modules.json
1937
+ │ │ ├── project.json
1938
+ │ │ ├── repo_map.json
1939
+ │ │ ├── repo_map.md
1940
+ │ │ ├── schema.json
1941
+ │ │ ├── summary.md
1942
+ │ │ ├── symbols.json
1943
+ │ │ ├── tech_stack.md
1944
+ │ │ └── tools.json
1945
+ │ ├── src/
1946
+ │ │ └── main/
1947
+ │ │ └── java/
1948
+ │ │ └── com/
1949
+ │ │ └── example/
1950
+ │ │ └── demo/
1951
+ │ │ ├── controllers/
1952
+ │ │ │ ├── CommentController.java
1953
+ │ │ │ ├── PostController.java
1954
+ │ │ │ └── UserController.java
1955
+ │ │ ├── models/
1956
+ │ │ │ ├── Comment.java
1957
+ │ │ │ ├── Post.java
1958
+ │ │ │ └── User.java
1959
+ │ │ ├── repositories/
1960
+ │ │ │ ├── CommentRepository.java
1961
+ │ │ │ ├── PostRepository.java
1962
+ │ │ │ └── UserRepository.java
1963
+ │ │ ├── services/
1964
+ │ │ │ ├── PostService.java
1965
+ │ │ │ └── UserService.java
1966
+ │ │ └── DemoApplication.java
1967
+ │ └── README.md
1968
+ ├── tests/
1969
+ │ ├── e2e/
1970
+ │ │ └── README.md
1971
+ │ ├── adapters.test.ts
1972
+ │ ├── analysis.test.ts
1973
+ │ ├── architectureDetector.test.ts
1974
+ │ ├── generation.test.ts
1975
+ │ ├── gitAnalyzer.test.ts
1976
+ │ ├── incrementalAnalyzer.test.ts
1977
+ │ ├── knowledgeGraph.test.ts
1978
+ │ ├── lazyAnalyzer.test.ts
1979
+ │ ├── parserRegistry.test.ts
1980
+ │ ├── phase2-fixes.test.ts
1981
+ │ ├── pipeline.integration.test.ts
1982
+ │ ├── pythonParser.test.ts
1983
+ │ ├── schema.test.ts
1984
+ │ ├── semanticContexts.test.ts
1985
+ │ └── typescriptParser.test.ts
1986
+ ├── ANALISIS_COMPLETO.md
1987
+ ├── ANALISIS_MEJORAS.md
1988
+ ├── CHANGELOG.md
1989
+ ├── CONTRIBUTING.md
1990
+ ├── FLOW.md
1991
+ ├── PLAN_DE_MEJORAS.md
1992
+ ├── PLAN_DE_TESTS.md
1993
+ ├── PLAN_MEJORAS.md
1994
+ ├── README.es.md
1995
+ ├── README.md
1996
+ ├── TEST_RESULTS.md
1997
+ ├── TEST_RESULTS_COMPARATIVE.md
1998
+ ├── TEST_RESULTS_COMPLETE.md
1999
+ ├── TEST_RESULTS_COMPREHENSIVE.md
2000
+ ├── package-lock.json
2001
+ ├── package.json
2002
+ └── tsconfig.json