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