ai-first-cli 1.1.2 → 1.1.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 (264) hide show
  1. package/ANALISIS_MEJORAS.md +327 -0
  2. package/BUGS.md +455 -0
  3. package/CHANGELOG.md +100 -225
  4. package/TEST_RESULTS.md +198 -0
  5. package/TEST_RESULTS_COMPARATIVE.md +159 -0
  6. package/TEST_RESULTS_COMPLETE.md +127 -0
  7. package/TEST_RESULTS_COMPREHENSIVE.md +208 -0
  8. package/ai/ai_context.md +17 -10
  9. package/ai/ai_rules.md +5 -3
  10. package/ai/architecture.md +28 -7
  11. package/ai/cache.json +832 -52
  12. package/ai/context/features/commands.json +18 -0
  13. package/ai/context/features/src.json +61 -0
  14. package/ai/context/features/test-projects.json +56 -0
  15. package/ai/context/flows/account.json +9 -0
  16. package/ai/context/flows/add_.json +9 -0
  17. package/ai/context/flows/ai-first.json +9 -0
  18. package/ai/context/flows/auth..json +10 -0
  19. package/ai/context/flows/auth.json +12 -0
  20. package/ai/context/flows/dashboard.json +9 -0
  21. package/ai/context/flows/doctor.json +9 -0
  22. package/ai/context/flows/explore.json +9 -0
  23. package/ai/context/flows/list_.json +9 -0
  24. package/ai/context/flows/login.json +9 -0
  25. package/ai/context/flows/opportunity.json +9 -0
  26. package/ai/context/flows/remove_.json +9 -0
  27. package/ai/context/flows/user.json +14 -0
  28. package/ai/context/flows/users..json +10 -0
  29. package/ai/context/flows/users.json +9 -0
  30. package/ai/conventions.md +3 -2
  31. package/ai/dependencies.json +429 -251
  32. package/ai/entrypoints.md +10 -0
  33. package/ai/files.json +822 -46
  34. package/ai/git/commit-activity.json +126 -39
  35. package/ai/git/recent-features.json +3 -1
  36. package/ai/git/recent-files.json +6 -6
  37. package/ai/git/recent-flows.json +3 -1
  38. package/ai/graph/knowledge-graph.json +954 -182
  39. package/ai/graph/module-graph.json +270 -0
  40. package/ai/graph/symbol-graph.json +48991 -16523
  41. package/ai/graph/symbol-references.json +953 -56
  42. package/ai/hierarchy.json +3 -24
  43. package/ai/index-state.json +1261 -253
  44. package/ai/index.db +0 -0
  45. package/ai/modules.json +226 -0
  46. package/ai/project.json +29 -0
  47. package/ai/repo-map.json +2284 -250
  48. package/ai/repo_map.json +2731 -231
  49. package/ai/repo_map.md +559 -2
  50. package/ai/schema.json +5 -0
  51. package/ai/summary.md +16 -7
  52. package/ai/tech_stack.md +4 -1
  53. package/ai/tools.json +10 -0
  54. package/dist/analyzers/dependencies.d.ts.map +1 -1
  55. package/dist/analyzers/dependencies.js +8 -16
  56. package/dist/analyzers/dependencies.js.map +1 -1
  57. package/dist/analyzers/symbols.d.ts.map +1 -1
  58. package/dist/analyzers/symbols.js +60 -0
  59. package/dist/analyzers/symbols.js.map +1 -1
  60. package/dist/commands/ai-first.d.ts +1 -0
  61. package/dist/commands/ai-first.d.ts.map +1 -1
  62. package/dist/commands/ai-first.js +29 -6
  63. package/dist/commands/ai-first.js.map +1 -1
  64. package/dist/core/semanticContexts.d.ts.map +1 -1
  65. package/dist/core/semanticContexts.js +48 -26
  66. package/dist/core/semanticContexts.js.map +1 -1
  67. package/dist/core/symbolGraph.d.ts.map +1 -1
  68. package/dist/core/symbolGraph.js +14 -2
  69. package/dist/core/symbolGraph.js.map +1 -1
  70. package/dist/utils/fileUtils.d.ts.map +1 -1
  71. package/dist/utils/fileUtils.js +5 -0
  72. package/dist/utils/fileUtils.js.map +1 -1
  73. package/package.json +2 -2
  74. package/src/analyzers/dependencies.ts +10 -20
  75. package/src/analyzers/symbols.ts +64 -0
  76. package/src/commands/ai-first.ts +32 -8
  77. package/src/core/semanticContexts.ts +54 -29
  78. package/src/core/symbolGraph.ts +16 -2
  79. package/src/utils/fileUtils.ts +5 -0
  80. package/test-projects/express-api/ai/ai_context.md +112 -0
  81. package/test-projects/express-api/ai/ai_rules.md +50 -0
  82. package/test-projects/express-api/ai/architecture.md +62 -0
  83. package/test-projects/express-api/ai/cache.json +125 -0
  84. package/test-projects/express-api/ai/context/features/controllers.json +13 -0
  85. package/test-projects/express-api/ai/context/features/services.json +13 -0
  86. package/test-projects/express-api/ai/context/flows/auth.json +12 -0
  87. package/test-projects/express-api/ai/context/flows/user.json +13 -0
  88. package/test-projects/express-api/ai/conventions.md +51 -0
  89. package/test-projects/express-api/ai/dependencies.json +54 -0
  90. package/test-projects/express-api/ai/entrypoints.md +17 -0
  91. package/test-projects/express-api/ai/files.json +169 -0
  92. package/test-projects/express-api/ai/graph/knowledge-graph.json +98 -0
  93. package/test-projects/express-api/ai/graph/module-graph.json +44 -0
  94. package/test-projects/express-api/ai/graph/symbol-graph.json +882 -0
  95. package/test-projects/express-api/ai/graph/symbol-references.json +51 -0
  96. package/test-projects/express-api/ai/index-state.json +238 -0
  97. package/test-projects/express-api/ai/index.db +0 -0
  98. package/test-projects/express-api/ai/modules.json +30 -0
  99. package/test-projects/express-api/ai/project.json +15 -0
  100. package/test-projects/express-api/ai/repo-map.json +291 -0
  101. package/test-projects/express-api/ai/repo_map.json +100 -0
  102. package/test-projects/express-api/ai/repo_map.md +36 -0
  103. package/test-projects/express-api/ai/schema.json +5 -0
  104. package/test-projects/express-api/ai/summary.md +14 -0
  105. package/test-projects/express-api/ai/symbols.json +1174 -0
  106. package/test-projects/express-api/ai/tech_stack.md +38 -0
  107. package/test-projects/express-api/ai/tools.json +10 -0
  108. package/test-projects/express-api/controllers/authController.js +32 -0
  109. package/test-projects/express-api/controllers/userController.js +51 -0
  110. package/test-projects/express-api/index.js +21 -0
  111. package/test-projects/express-api/middleware/authMiddleware.js +30 -0
  112. package/test-projects/express-api/models/userRepository.js +25 -0
  113. package/test-projects/express-api/package.json +18 -0
  114. package/test-projects/express-api/services/authService.js +17 -0
  115. package/test-projects/express-api/services/userService.js +28 -0
  116. package/test-projects/nestjs-backend/ai/ai_context.md +110 -0
  117. package/test-projects/nestjs-backend/ai/ai_rules.md +52 -0
  118. package/test-projects/nestjs-backend/ai/architecture.md +43 -0
  119. package/test-projects/nestjs-backend/ai/cache.json +137 -0
  120. package/test-projects/nestjs-backend/ai/context/features/src.json +23 -0
  121. package/test-projects/nestjs-backend/ai/context/flows/auth..json +10 -0
  122. package/test-projects/nestjs-backend/ai/context/flows/users..json +10 -0
  123. package/test-projects/nestjs-backend/ai/conventions.md +52 -0
  124. package/test-projects/nestjs-backend/ai/dependencies.json +152 -0
  125. package/test-projects/nestjs-backend/ai/entrypoints.md +18 -0
  126. package/test-projects/nestjs-backend/ai/files.json +184 -0
  127. package/test-projects/nestjs-backend/ai/graph/knowledge-graph.json +74 -0
  128. package/test-projects/nestjs-backend/ai/graph/module-graph.json +29 -0
  129. package/test-projects/nestjs-backend/ai/graph/symbol-graph.json +304 -0
  130. package/test-projects/nestjs-backend/ai/graph/symbol-references.json +5 -0
  131. package/test-projects/nestjs-backend/ai/index-state.json +259 -0
  132. package/test-projects/nestjs-backend/ai/index.db +0 -0
  133. package/test-projects/nestjs-backend/ai/modules.json +19 -0
  134. package/test-projects/nestjs-backend/ai/project.json +14 -0
  135. package/test-projects/nestjs-backend/ai/repo-map.json +323 -0
  136. package/test-projects/nestjs-backend/ai/repo_map.json +141 -0
  137. package/test-projects/nestjs-backend/ai/repo_map.md +39 -0
  138. package/test-projects/nestjs-backend/ai/schema.json +5 -0
  139. package/test-projects/nestjs-backend/ai/summary.md +11 -0
  140. package/test-projects/nestjs-backend/ai/symbols.json +527 -0
  141. package/test-projects/nestjs-backend/ai/tech_stack.md +37 -0
  142. package/test-projects/nestjs-backend/ai/tools.json +10 -0
  143. package/test-projects/nestjs-backend/package.json +22 -0
  144. package/test-projects/nestjs-backend/src/app.module.ts +8 -0
  145. package/test-projects/nestjs-backend/src/auth/auth.controller.ts +22 -0
  146. package/test-projects/nestjs-backend/src/auth/auth.module.ts +11 -0
  147. package/test-projects/nestjs-backend/src/auth/auth.service.ts +28 -0
  148. package/test-projects/nestjs-backend/src/auth/dto/login.dto.ts +4 -0
  149. package/test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts +18 -0
  150. package/test-projects/nestjs-backend/src/main.ts +9 -0
  151. package/test-projects/nestjs-backend/src/users/users.controller.ts +32 -0
  152. package/test-projects/nestjs-backend/src/users/users.module.ts +10 -0
  153. package/test-projects/nestjs-backend/src/users/users.service.ts +42 -0
  154. package/test-projects/nestjs-backend/tsconfig.json +21 -0
  155. package/test-projects/python-cli/__init__.py +1 -0
  156. package/test-projects/python-cli/ai/ai_context.md +94 -0
  157. package/test-projects/python-cli/ai/ai_rules.md +47 -0
  158. package/test-projects/python-cli/ai/architecture.md +49 -0
  159. package/test-projects/python-cli/ai/cache.json +129 -0
  160. package/test-projects/python-cli/ai/context/features/cli.json +16 -0
  161. package/test-projects/python-cli/ai/context/flows/add_.json +9 -0
  162. package/test-projects/python-cli/ai/context/flows/list_.json +9 -0
  163. package/test-projects/python-cli/ai/context/flows/remove_.json +9 -0
  164. package/test-projects/python-cli/ai/conventions.md +51 -0
  165. package/test-projects/python-cli/ai/dependencies.json +66 -0
  166. package/test-projects/python-cli/ai/entrypoints.md +4 -0
  167. package/test-projects/python-cli/ai/files.json +174 -0
  168. package/test-projects/python-cli/ai/graph/knowledge-graph.json +83 -0
  169. package/test-projects/python-cli/ai/graph/module-graph.json +31 -0
  170. package/test-projects/python-cli/ai/graph/symbol-graph.json +358 -0
  171. package/test-projects/python-cli/ai/graph/symbol-references.json +11 -0
  172. package/test-projects/python-cli/ai/index-state.json +245 -0
  173. package/test-projects/python-cli/ai/index.db +0 -0
  174. package/test-projects/python-cli/ai/modules.json +21 -0
  175. package/test-projects/python-cli/ai/project.json +15 -0
  176. package/test-projects/python-cli/ai/repo-map.json +290 -0
  177. package/test-projects/python-cli/ai/repo_map.json +99 -0
  178. package/test-projects/python-cli/ai/repo_map.md +32 -0
  179. package/test-projects/python-cli/ai/schema.json +5 -0
  180. package/test-projects/python-cli/ai/summary.md +11 -0
  181. package/test-projects/python-cli/ai/symbols.json +475 -0
  182. package/test-projects/python-cli/ai/tech_stack.md +30 -0
  183. package/test-projects/python-cli/ai/tools.json +10 -0
  184. package/test-projects/python-cli/cli/__init__.py +1 -0
  185. package/test-projects/python-cli/cli/add_command.py +6 -0
  186. package/test-projects/python-cli/cli/list_command.py +7 -0
  187. package/test-projects/python-cli/cli/remove_command.py +6 -0
  188. package/test-projects/python-cli/main.py +34 -0
  189. package/test-projects/python-cli/models/__init__.py +2 -0
  190. package/test-projects/python-cli/models/task.py +19 -0
  191. package/test-projects/python-cli/models/task_repository.py +44 -0
  192. package/test-projects/react-app/ai/ai_context.md +95 -0
  193. package/test-projects/react-app/ai/ai_rules.md +49 -0
  194. package/test-projects/react-app/ai/architecture.md +33 -0
  195. package/test-projects/react-app/ai/cache.json +129 -0
  196. package/test-projects/react-app/ai/context/features/src.json +18 -0
  197. package/test-projects/react-app/ai/context/flows/dashboard.json +9 -0
  198. package/test-projects/react-app/ai/context/flows/login.json +9 -0
  199. package/test-projects/react-app/ai/context/flows/users.json +9 -0
  200. package/test-projects/react-app/ai/conventions.md +52 -0
  201. package/test-projects/react-app/ai/dependencies.json +128 -0
  202. package/test-projects/react-app/ai/entrypoints.md +4 -0
  203. package/test-projects/react-app/ai/files.json +174 -0
  204. package/test-projects/react-app/ai/graph/knowledge-graph.json +83 -0
  205. package/test-projects/react-app/ai/graph/module-graph.json +31 -0
  206. package/test-projects/react-app/ai/graph/symbol-graph.json +868 -0
  207. package/test-projects/react-app/ai/graph/symbol-references.json +31 -0
  208. package/test-projects/react-app/ai/index-state.json +245 -0
  209. package/test-projects/react-app/ai/index.db +0 -0
  210. package/test-projects/react-app/ai/modules.json +17 -0
  211. package/test-projects/react-app/ai/project.json +15 -0
  212. package/test-projects/react-app/ai/repo-map.json +305 -0
  213. package/test-projects/react-app/ai/repo_map.json +114 -0
  214. package/test-projects/react-app/ai/repo_map.md +31 -0
  215. package/test-projects/react-app/ai/schema.json +5 -0
  216. package/test-projects/react-app/ai/summary.md +11 -0
  217. package/test-projects/react-app/ai/symbols.json +985 -0
  218. package/test-projects/react-app/ai/tech_stack.md +38 -0
  219. package/test-projects/react-app/ai/tools.json +10 -0
  220. package/test-projects/react-app/package.json +16 -0
  221. package/test-projects/react-app/src/App.tsx +21 -0
  222. package/test-projects/react-app/src/context/AuthContext.tsx +41 -0
  223. package/test-projects/react-app/src/hooks/useAuth.ts +10 -0
  224. package/test-projects/react-app/src/main.tsx +10 -0
  225. package/test-projects/react-app/src/pages/DashboardPage.tsx +17 -0
  226. package/test-projects/react-app/src/pages/LoginPage.tsx +41 -0
  227. package/test-projects/react-app/src/pages/UsersPage.tsx +36 -0
  228. package/test-projects/react-app/src/services/userService.ts +37 -0
  229. package/test-projects/salesforce-cli/.forceignore +27 -0
  230. package/test-projects/salesforce-cli/ai/ai_context.md +88 -0
  231. package/test-projects/salesforce-cli/ai/ai_rules.md +47 -0
  232. package/test-projects/salesforce-cli/ai/architecture.md +33 -0
  233. package/test-projects/salesforce-cli/ai/cache.json +105 -0
  234. package/test-projects/salesforce-cli/ai/context/features/force-app.json +14 -0
  235. package/test-projects/salesforce-cli/ai/context/flows/account.json +9 -0
  236. package/test-projects/salesforce-cli/ai/context/flows/opportunity.json +9 -0
  237. package/test-projects/salesforce-cli/ai/conventions.md +51 -0
  238. package/test-projects/salesforce-cli/ai/dependencies.json +6 -0
  239. package/test-projects/salesforce-cli/ai/entrypoints.md +4 -0
  240. package/test-projects/salesforce-cli/ai/files.json +144 -0
  241. package/test-projects/salesforce-cli/ai/graph/knowledge-graph.json +64 -0
  242. package/test-projects/salesforce-cli/ai/graph/module-graph.json +13 -0
  243. package/test-projects/salesforce-cli/ai/graph/symbol-graph.json +148 -0
  244. package/test-projects/salesforce-cli/ai/graph/symbol-references.json +1 -0
  245. package/test-projects/salesforce-cli/ai/index-state.json +203 -0
  246. package/test-projects/salesforce-cli/ai/index.db +0 -0
  247. package/test-projects/salesforce-cli/ai/modules.json +12 -0
  248. package/test-projects/salesforce-cli/ai/project.json +14 -0
  249. package/test-projects/salesforce-cli/ai/repo-map.json +251 -0
  250. package/test-projects/salesforce-cli/ai/repo_map.json +69 -0
  251. package/test-projects/salesforce-cli/ai/repo_map.md +21 -0
  252. package/test-projects/salesforce-cli/ai/schema.json +5 -0
  253. package/test-projects/salesforce-cli/ai/summary.md +11 -0
  254. package/test-projects/salesforce-cli/ai/symbols.json +245 -0
  255. package/test-projects/salesforce-cli/ai/tech_stack.md +30 -0
  256. package/test-projects/salesforce-cli/ai/tools.json +10 -0
  257. package/test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls +24 -0
  258. package/test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls +25 -0
  259. package/test-projects/salesforce-cli/force-app/main/default/objects/Project__c.object.xml +45 -0
  260. package/test-projects/salesforce-cli/force-app/main/default/triggers/AccountTrigger.trigger +33 -0
  261. package/test-projects/salesforce-cli/sfdx-project.json +11 -0
  262. package/tests/e2e/README.md +85 -0
  263. package/tests/e2e/run-e2e.sh +88 -0
  264. package/tests/semanticContexts.test.ts +23 -25
@@ -12,15 +12,32 @@
12
12
  "docs/.vitepress/config.ts",
13
13
  "docs/.vitepress/theme/custom.css",
14
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",
15
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",
16
25
  "docs/es/index.md",
17
26
  "docs/examples/express-api.md",
18
27
  "docs/examples/index.md",
19
28
  "docs/examples/python-django.md",
20
29
  "docs/examples/react-app.md",
30
+ "docs/guide/adapters.md",
31
+ "docs/guide/ai-repository-schema.md",
21
32
  "docs/guide/architecture.md",
33
+ "docs/guide/flows.md",
22
34
  "docs/guide/getting-started.md",
35
+ "docs/guide/git-intelligence.md",
36
+ "docs/guide/incremental-analysis.md",
23
37
  "docs/guide/installation.md",
38
+ "docs/guide/knowledge-graph.md",
39
+ "docs/guide/lazy-indexing.md",
40
+ "docs/guide/performance.md",
24
41
  "docs/guide/quick-start.md",
25
42
  "docs/index.md",
26
43
  "docs/reference/commands.md"
@@ -50,24 +67,201 @@
50
67
  "src/commands/ai-first.ts",
51
68
  "src/commands/doctor.ts",
52
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",
53
85
  "src/core/aiContextGenerator.ts",
54
86
  "src/core/ccp.ts",
55
87
  "src/core/chunker.ts",
56
88
  "src/core/contextGenerator.ts",
57
89
  "src/core/contextPacket.ts",
58
90
  "src/core/embeddings.ts",
91
+ "src/core/gitAnalyzer.ts",
59
92
  "src/core/hierarchyGenerator.ts",
93
+ "src/core/incrementalAnalyzer.ts",
60
94
  "src/core/indexState.ts",
61
95
  "src/core/indexer.ts",
96
+ "src/core/knowledgeGraphBuilder.ts",
97
+ "src/core/lazyAnalyzer.ts",
62
98
  "src/core/moduleGraph.ts",
63
99
  "src/core/repoMapper.ts",
64
100
  "src/core/repoScanner.ts",
101
+ "src/core/schema.ts",
65
102
  "src/core/semanticContexts.ts",
66
103
  "src/core/symbolGraph.ts",
67
104
  "src/index.ts",
68
105
  "src/types/sql.js.d.ts",
69
106
  "src/utils/fileUtils.ts"
70
107
  ]
108
+ },
109
+ {
110
+ "name": "test-projects",
111
+ "paths": [
112
+ "test-projects/express-api/ai/ai_context.md",
113
+ "test-projects/express-api/ai/ai_rules.md",
114
+ "test-projects/express-api/ai/architecture.md",
115
+ "test-projects/express-api/ai/context/features/controllers.json",
116
+ "test-projects/express-api/ai/context/features/services.json",
117
+ "test-projects/express-api/ai/context/flows/auth.json",
118
+ "test-projects/express-api/ai/context/flows/authController.json",
119
+ "test-projects/express-api/ai/context/flows/user.json",
120
+ "test-projects/express-api/ai/conventions.md",
121
+ "test-projects/express-api/ai/dependencies.json",
122
+ "test-projects/express-api/ai/entrypoints.md",
123
+ "test-projects/express-api/ai/modules.json",
124
+ "test-projects/express-api/ai/project.json",
125
+ "test-projects/express-api/ai/repo_map.json",
126
+ "test-projects/express-api/ai/repo_map.md",
127
+ "test-projects/express-api/ai/schema.json",
128
+ "test-projects/express-api/ai/summary.md",
129
+ "test-projects/express-api/ai/symbols.json",
130
+ "test-projects/express-api/ai/tech_stack.md",
131
+ "test-projects/express-api/ai/tools.json",
132
+ "test-projects/express-api/controllers/authController.js",
133
+ "test-projects/express-api/controllers/userController.js",
134
+ "test-projects/express-api/index.js",
135
+ "test-projects/express-api/middleware/authMiddleware.js",
136
+ "test-projects/express-api/models/userRepository.js",
137
+ "test-projects/express-api/package.json",
138
+ "test-projects/express-api/services/authService.js",
139
+ "test-projects/express-api/services/userService.js",
140
+ "test-projects/nestjs-backend/ai/ai_context.md",
141
+ "test-projects/nestjs-backend/ai/ai_rules.md",
142
+ "test-projects/nestjs-backend/ai/architecture.md",
143
+ "test-projects/nestjs-backend/ai/context/features/src.json",
144
+ "test-projects/nestjs-backend/ai/context/flows/auth..json",
145
+ "test-projects/nestjs-backend/ai/context/flows/auth.controller.json",
146
+ "test-projects/nestjs-backend/ai/context/flows/users..json",
147
+ "test-projects/nestjs-backend/ai/context/flows/users.controller.json",
148
+ "test-projects/nestjs-backend/ai/conventions.md",
149
+ "test-projects/nestjs-backend/ai/dependencies.json",
150
+ "test-projects/nestjs-backend/ai/entrypoints.md",
151
+ "test-projects/nestjs-backend/ai/modules.json",
152
+ "test-projects/nestjs-backend/ai/project.json",
153
+ "test-projects/nestjs-backend/ai/repo_map.json",
154
+ "test-projects/nestjs-backend/ai/repo_map.md",
155
+ "test-projects/nestjs-backend/ai/schema.json",
156
+ "test-projects/nestjs-backend/ai/summary.md",
157
+ "test-projects/nestjs-backend/ai/symbols.json",
158
+ "test-projects/nestjs-backend/ai/tech_stack.md",
159
+ "test-projects/nestjs-backend/ai/tools.json",
160
+ "test-projects/nestjs-backend/package.json",
161
+ "test-projects/nestjs-backend/src/app.module.ts",
162
+ "test-projects/nestjs-backend/src/auth/auth.controller.ts",
163
+ "test-projects/nestjs-backend/src/auth/auth.module.ts",
164
+ "test-projects/nestjs-backend/src/auth/auth.service.ts",
165
+ "test-projects/nestjs-backend/src/auth/dto/login.dto.ts",
166
+ "test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts",
167
+ "test-projects/nestjs-backend/src/main.ts",
168
+ "test-projects/nestjs-backend/src/users/users.controller.ts",
169
+ "test-projects/nestjs-backend/src/users/users.module.ts",
170
+ "test-projects/nestjs-backend/src/users/users.service.ts",
171
+ "test-projects/nestjs-backend/tsconfig.json",
172
+ "test-projects/python-cli/__init__.py",
173
+ "test-projects/python-cli/ai/ai_context.md",
174
+ "test-projects/python-cli/ai/ai_rules.md",
175
+ "test-projects/python-cli/ai/architecture.md",
176
+ "test-projects/python-cli/ai/context/features/cli.json",
177
+ "test-projects/python-cli/ai/context/flows/add_.json",
178
+ "test-projects/python-cli/ai/context/flows/list_.json",
179
+ "test-projects/python-cli/ai/context/flows/remove_.json",
180
+ "test-projects/python-cli/ai/conventions.md",
181
+ "test-projects/python-cli/ai/dependencies.json",
182
+ "test-projects/python-cli/ai/entrypoints.md",
183
+ "test-projects/python-cli/ai/modules.json",
184
+ "test-projects/python-cli/ai/project.json",
185
+ "test-projects/python-cli/ai/repo_map.json",
186
+ "test-projects/python-cli/ai/repo_map.md",
187
+ "test-projects/python-cli/ai/schema.json",
188
+ "test-projects/python-cli/ai/summary.md",
189
+ "test-projects/python-cli/ai/symbols.json",
190
+ "test-projects/python-cli/ai/tech_stack.md",
191
+ "test-projects/python-cli/ai/tools.json",
192
+ "test-projects/python-cli/cli/__init__.py",
193
+ "test-projects/python-cli/cli/add_command.py",
194
+ "test-projects/python-cli/cli/list_command.py",
195
+ "test-projects/python-cli/cli/remove_command.py",
196
+ "test-projects/python-cli/main.py",
197
+ "test-projects/python-cli/models/__init__.py",
198
+ "test-projects/python-cli/models/task.py",
199
+ "test-projects/python-cli/models/task_repository.py",
200
+ "test-projects/react-app/ai/ai_context.md",
201
+ "test-projects/react-app/ai/ai_rules.md",
202
+ "test-projects/react-app/ai/architecture.md",
203
+ "test-projects/react-app/ai/context/features/src.json",
204
+ "test-projects/react-app/ai/context/flows/UsersPage.json",
205
+ "test-projects/react-app/ai/context/flows/dashboard.json",
206
+ "test-projects/react-app/ai/context/flows/login.json",
207
+ "test-projects/react-app/ai/context/flows/users.json",
208
+ "test-projects/react-app/ai/conventions.md",
209
+ "test-projects/react-app/ai/dependencies.json",
210
+ "test-projects/react-app/ai/entrypoints.md",
211
+ "test-projects/react-app/ai/modules.json",
212
+ "test-projects/react-app/ai/project.json",
213
+ "test-projects/react-app/ai/repo_map.json",
214
+ "test-projects/react-app/ai/repo_map.md",
215
+ "test-projects/react-app/ai/schema.json",
216
+ "test-projects/react-app/ai/summary.md",
217
+ "test-projects/react-app/ai/symbols.json",
218
+ "test-projects/react-app/ai/tech_stack.md",
219
+ "test-projects/react-app/ai/tools.json",
220
+ "test-projects/react-app/package.json",
221
+ "test-projects/react-app/src/App.tsx",
222
+ "test-projects/react-app/src/context/AuthContext.tsx",
223
+ "test-projects/react-app/src/hooks/useAuth.ts",
224
+ "test-projects/react-app/src/main.tsx",
225
+ "test-projects/react-app/src/pages/DashboardPage.tsx",
226
+ "test-projects/react-app/src/pages/LoginPage.tsx",
227
+ "test-projects/react-app/src/pages/UsersPage.tsx",
228
+ "test-projects/react-app/src/services/userService.ts",
229
+ "test-projects/salesforce-cli/ai/ai_context.md",
230
+ "test-projects/salesforce-cli/ai/ai_rules.md",
231
+ "test-projects/salesforce-cli/ai/architecture.md",
232
+ "test-projects/salesforce-cli/ai/context/features/force-app.json",
233
+ "test-projects/salesforce-cli/ai/context/flows/account.json",
234
+ "test-projects/salesforce-cli/ai/context/flows/opportunity.json",
235
+ "test-projects/salesforce-cli/ai/conventions.md",
236
+ "test-projects/salesforce-cli/ai/dependencies.json",
237
+ "test-projects/salesforce-cli/ai/entrypoints.md",
238
+ "test-projects/salesforce-cli/ai/modules.json",
239
+ "test-projects/salesforce-cli/ai/project.json",
240
+ "test-projects/salesforce-cli/ai/repo_map.json",
241
+ "test-projects/salesforce-cli/ai/repo_map.md",
242
+ "test-projects/salesforce-cli/ai/schema.json",
243
+ "test-projects/salesforce-cli/ai/summary.md",
244
+ "test-projects/salesforce-cli/ai/symbols.json",
245
+ "test-projects/salesforce-cli/ai/tech_stack.md",
246
+ "test-projects/salesforce-cli/ai/tools.json",
247
+ "test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls",
248
+ "test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls",
249
+ "test-projects/salesforce-cli/force-app/main/default/triggers/AccountTrigger.trigger",
250
+ "test-projects/salesforce-cli/sfdx-project.json"
251
+ ]
252
+ },
253
+ {
254
+ "name": "tests",
255
+ "paths": [
256
+ "tests/adapters.test.ts",
257
+ "tests/e2e/README.md",
258
+ "tests/gitAnalyzer.test.ts",
259
+ "tests/incrementalAnalyzer.test.ts",
260
+ "tests/knowledgeGraph.test.ts",
261
+ "tests/lazyAnalyzer.test.ts",
262
+ "tests/schema.test.ts",
263
+ "tests/semanticContexts.test.ts"
264
+ ]
71
265
  }
72
266
  ],
73
267
  "dependencies": [
@@ -103,10 +297,22 @@
103
297
  "from": "src",
104
298
  "to": "url"
105
299
  },
300
+ {
301
+ "from": "src",
302
+ "to": "ora"
303
+ },
304
+ {
305
+ "from": "src",
306
+ "to": "process"
307
+ },
106
308
  {
107
309
  "from": "src",
108
310
  "to": "crypto"
109
311
  },
312
+ {
313
+ "from": "src",
314
+ "to": "child_process"
315
+ },
110
316
  {
111
317
  "from": "src",
112
318
  "to": "sql.js"
@@ -114,6 +320,70 @@
114
320
  {
115
321
  "from": "src",
116
322
  "to": "chokidar"
323
+ },
324
+ {
325
+ "from": "test-projects",
326
+ "to": "jsonwebtoken"
327
+ },
328
+ {
329
+ "from": "test-projects",
330
+ "to": "express"
331
+ },
332
+ {
333
+ "from": "test-projects",
334
+ "to": "bcrypt"
335
+ },
336
+ {
337
+ "from": "test-projects",
338
+ "to": "@nestjs"
339
+ },
340
+ {
341
+ "from": "test-projects",
342
+ "to": "passport-jwt"
343
+ },
344
+ {
345
+ "from": "test-projects",
346
+ "to": "cli.commands"
347
+ },
348
+ {
349
+ "from": "test-projects",
350
+ "to": "argparse"
351
+ },
352
+ {
353
+ "from": "test-projects",
354
+ "to": "datetime"
355
+ },
356
+ {
357
+ "from": "test-projects",
358
+ "to": "models.task"
359
+ },
360
+ {
361
+ "from": "test-projects",
362
+ "to": "react-router-dom"
363
+ },
364
+ {
365
+ "from": "test-projects",
366
+ "to": "react"
367
+ },
368
+ {
369
+ "from": "test-projects",
370
+ "to": "react-dom"
371
+ },
372
+ {
373
+ "from": "tests",
374
+ "to": "vitest"
375
+ },
376
+ {
377
+ "from": "tests",
378
+ "to": "fs"
379
+ },
380
+ {
381
+ "from": "tests",
382
+ "to": "path"
383
+ },
384
+ {
385
+ "from": "tests",
386
+ "to": "os"
117
387
  }
118
388
  ]
119
389
  }