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