ai-first-cli 1.2.3 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (470) hide show
  1. package/CHANGELOG.md +292 -6
  2. package/README.md +24 -4
  3. package/dist/analyzers/symbols.d.ts.map +1 -1
  4. package/dist/analyzers/symbols.js +9 -7
  5. package/dist/analyzers/symbols.js.map +1 -1
  6. package/dist/analyzers/techStack.d.ts.map +1 -1
  7. package/dist/analyzers/techStack.js +198 -3
  8. package/dist/analyzers/techStack.js.map +1 -1
  9. package/dist/commands/ai-first.d.ts.map +1 -1
  10. package/dist/commands/ai-first.js +14 -13
  11. package/dist/commands/ai-first.js.map +1 -1
  12. package/dist/core/analysis/architectureDetector.d.ts +37 -0
  13. package/dist/core/analysis/architectureDetector.d.ts.map +1 -0
  14. package/dist/core/analysis/architectureDetector.js +316 -0
  15. package/dist/core/analysis/architectureDetector.js.map +1 -0
  16. package/dist/core/analysis/callGraphBuilder.d.ts +37 -0
  17. package/dist/core/analysis/callGraphBuilder.d.ts.map +1 -0
  18. package/dist/core/analysis/callGraphBuilder.js +101 -0
  19. package/dist/core/analysis/callGraphBuilder.js.map +1 -0
  20. package/dist/core/analysis/dependencyAnalyzer.d.ts +45 -0
  21. package/dist/core/analysis/dependencyAnalyzer.d.ts.map +1 -0
  22. package/dist/core/analysis/dependencyAnalyzer.js +98 -0
  23. package/dist/core/analysis/dependencyAnalyzer.js.map +1 -0
  24. package/dist/core/analysis/index.d.ts +5 -0
  25. package/dist/core/analysis/index.d.ts.map +1 -0
  26. package/dist/core/analysis/index.js +5 -0
  27. package/dist/core/analysis/index.js.map +1 -0
  28. package/dist/core/analysis/inheritanceAnalyzer.d.ts +35 -0
  29. package/dist/core/analysis/inheritanceAnalyzer.d.ts.map +1 -0
  30. package/dist/core/analysis/inheritanceAnalyzer.js +115 -0
  31. package/dist/core/analysis/inheritanceAnalyzer.js.map +1 -0
  32. package/dist/core/ccp.d.ts.map +1 -1
  33. package/dist/core/ccp.js +3 -2
  34. package/dist/core/ccp.js.map +1 -1
  35. package/dist/core/generation/aiContextGenerator.d.ts +71 -0
  36. package/dist/core/generation/aiContextGenerator.d.ts.map +1 -0
  37. package/dist/core/generation/aiContextGenerator.js +217 -0
  38. package/dist/core/generation/aiContextGenerator.js.map +1 -0
  39. package/dist/core/generation/architectureGenerator.d.ts +17 -0
  40. package/dist/core/generation/architectureGenerator.d.ts.map +1 -0
  41. package/dist/core/generation/architectureGenerator.js +160 -0
  42. package/dist/core/generation/architectureGenerator.js.map +1 -0
  43. package/dist/core/generation/flowGenerator.d.ts +52 -0
  44. package/dist/core/generation/flowGenerator.d.ts.map +1 -0
  45. package/dist/core/generation/flowGenerator.js +164 -0
  46. package/dist/core/generation/flowGenerator.js.map +1 -0
  47. package/dist/core/generation/index.d.ts +4 -0
  48. package/dist/core/generation/index.d.ts.map +1 -0
  49. package/dist/core/generation/index.js +4 -0
  50. package/dist/core/generation/index.js.map +1 -0
  51. package/dist/core/hierarchyGenerator.d.ts.map +1 -1
  52. package/dist/core/hierarchyGenerator.js +3 -2
  53. package/dist/core/hierarchyGenerator.js.map +1 -1
  54. package/dist/core/parsers/index.d.ts +20 -0
  55. package/dist/core/parsers/index.d.ts.map +1 -0
  56. package/dist/core/parsers/index.js +76 -0
  57. package/dist/core/parsers/index.js.map +1 -0
  58. package/dist/core/parsers/pythonParser.d.ts +37 -0
  59. package/dist/core/parsers/pythonParser.d.ts.map +1 -0
  60. package/dist/core/parsers/pythonParser.js +229 -0
  61. package/dist/core/parsers/pythonParser.js.map +1 -0
  62. package/dist/core/parsers/typescriptParser.d.ts +54 -0
  63. package/dist/core/parsers/typescriptParser.d.ts.map +1 -0
  64. package/dist/core/parsers/typescriptParser.js +291 -0
  65. package/dist/core/parsers/typescriptParser.js.map +1 -0
  66. package/dist/core/pipeline.d.ts +42 -0
  67. package/dist/core/pipeline.d.ts.map +1 -0
  68. package/dist/core/pipeline.js +172 -0
  69. package/dist/core/pipeline.js.map +1 -0
  70. package/dist/core/semanticContexts.js +1 -1
  71. package/dist/core/semanticContexts.js.map +1 -1
  72. package/dist/utils/constants.d.ts +46 -0
  73. package/dist/utils/constants.d.ts.map +1 -0
  74. package/dist/utils/constants.js +67 -0
  75. package/dist/utils/constants.js.map +1 -0
  76. package/package.json +1 -1
  77. package/run-all-tests.sh +184 -0
  78. package/src/analyzers/symbols.ts +12 -7
  79. package/src/analyzers/techStack.ts +203 -3
  80. package/src/commands/ai-first.ts +14 -13
  81. package/src/core/analysis/architectureDetector.ts +487 -0
  82. package/src/core/analysis/callGraphBuilder.ts +158 -0
  83. package/src/core/analysis/dependencyAnalyzer.ts +167 -0
  84. package/src/core/analysis/index.ts +28 -0
  85. package/src/core/analysis/inheritanceAnalyzer.ts +169 -0
  86. package/src/core/ccp.ts +3 -2
  87. package/src/core/generation/aiContextGenerator.ts +335 -0
  88. package/src/core/generation/architectureGenerator.ts +200 -0
  89. package/src/core/generation/flowGenerator.ts +238 -0
  90. package/src/core/generation/index.ts +16 -0
  91. package/src/core/hierarchyGenerator.ts +3 -2
  92. package/src/core/parsers/index.ts +99 -0
  93. package/src/core/parsers/pythonParser.ts +302 -0
  94. package/src/core/parsers/typescriptParser.ts +445 -0
  95. package/src/core/pipeline.ts +241 -0
  96. package/src/core/semanticContexts.ts +1 -1
  97. package/src/utils/constants.ts +78 -0
  98. package/tests/analysis.test.ts +283 -0
  99. package/tests/architectureDetector.test.ts +137 -0
  100. package/tests/generation.test.ts +216 -0
  101. package/tests/parserRegistry.test.ts +139 -0
  102. package/tests/pipeline.integration.test.ts +245 -0
  103. package/tests/pythonParser.test.ts +210 -0
  104. package/tests/typescriptParser.test.ts +197 -0
  105. package/.ai-dev/index.db +0 -0
  106. package/ANALISIS_COMPLETO.md +0 -424
  107. package/ANALISIS_MEJORAS.md +0 -327
  108. package/BUGS.md +0 -455
  109. package/PLAN_MEJORAS.md +0 -216
  110. package/STATUS_ADAPTADORES +0 -126
  111. package/TEST_RESULTS.md +0 -198
  112. package/TEST_RESULTS_COMPARATIVE.md +0 -159
  113. package/TEST_RESULTS_COMPLETE.md +0 -127
  114. package/TEST_RESULTS_COMPREHENSIVE.md +0 -208
  115. package/TEST_RESULTS_PHASE1.md +0 -420
  116. package/ai/dependencies.json +0 -15
  117. package/ai/graph/knowledge-graph.json +0 -12
  118. package/ai-context/ai_context.md +0 -130
  119. package/ai-context/ai_rules.md +0 -54
  120. package/ai-context/architecture.md +0 -136
  121. package/ai-context/cache.json +0 -2349
  122. package/ai-context/ccp/jira-123/context.json +0 -7
  123. package/ai-context/context/features/commands.json +0 -18
  124. package/ai-context/context/features/src.json +0 -61
  125. package/ai-context/context/features/test-projects.json +0 -69
  126. package/ai-context/context/flows/account.json +0 -9
  127. package/ai-context/context/flows/ai-first.json +0 -9
  128. package/ai-context/context/flows/api.json +0 -9
  129. package/ai-context/context/flows/auth.json +0 -13
  130. package/ai-context/context/flows/category.json +0 -12
  131. package/ai-context/context/flows/comment.json +0 -16
  132. package/ai-context/context/flows/dashboard.json +0 -9
  133. package/ai-context/context/flows/doctor.json +0 -9
  134. package/ai-context/context/flows/explore.json +0 -9
  135. package/ai-context/context/flows/login.json +0 -9
  136. package/ai-context/context/flows/opportunity.json +0 -9
  137. package/ai-context/context/flows/post.json +0 -18
  138. package/ai-context/context/flows/routes.json +0 -19
  139. package/ai-context/context/flows/user.json +0 -20
  140. package/ai-context/context/flows/users.json +0 -9
  141. package/ai-context/context/flows/views.json +0 -14
  142. package/ai-context/context/repo.json +0 -56
  143. package/ai-context/context/utils.json +0 -7
  144. package/ai-context/conventions.md +0 -53
  145. package/ai-context/dependencies.json +0 -2978
  146. package/ai-context/embeddings.json +0 -23828
  147. package/ai-context/entrypoints.md +0 -42
  148. package/ai-context/files.json +0 -2944
  149. package/ai-context/git/commit-activity.json +0 -8646
  150. package/ai-context/git/recent-features.json +0 -1
  151. package/ai-context/git/recent-files.json +0 -52
  152. package/ai-context/git/recent-flows.json +0 -1
  153. package/ai-context/graph/knowledge-graph.json +0 -44129
  154. package/ai-context/graph/module-graph.json +0 -866
  155. package/ai-context/graph/symbol-graph.json +0 -200622
  156. package/ai-context/graph/symbol-references.json +0 -6778
  157. package/ai-context/hierarchy.json +0 -20
  158. package/ai-context/index-state.json +0 -4487
  159. package/ai-context/index.db +0 -0
  160. package/ai-context/modules.json +0 -933
  161. package/ai-context/project.json +0 -30
  162. package/ai-context/repo_map.json +0 -9116
  163. package/ai-context/repo_map.md +0 -2061
  164. package/ai-context/schema.json +0 -5
  165. package/ai-context/summary.md +0 -47
  166. package/ai-context/symbols.json +0 -65351
  167. package/ai-context/tech_stack.md +0 -47
  168. package/ai-context/tools.json +0 -10
  169. package/test-projects/django-app/.ai-dev/index.db +0 -0
  170. package/test-projects/django-app/ai-context/ai_context.md +0 -92
  171. package/test-projects/django-app/ai-context/ai_rules.md +0 -47
  172. package/test-projects/django-app/ai-context/architecture.md +0 -57
  173. package/test-projects/django-app/ai-context/cache.json +0 -169
  174. package/test-projects/django-app/ai-context/context/flows/views.json +0 -10
  175. package/test-projects/django-app/ai-context/conventions.md +0 -51
  176. package/test-projects/django-app/ai-context/dependencies.json +0 -312
  177. package/test-projects/django-app/ai-context/entrypoints.md +0 -4
  178. package/test-projects/django-app/ai-context/files.json +0 -209
  179. package/test-projects/django-app/ai-context/graph/knowledge-graph.json +0 -36
  180. package/test-projects/django-app/ai-context/graph/module-graph.json +0 -145
  181. package/test-projects/django-app/ai-context/graph/symbol-graph.json +0 -1488
  182. package/test-projects/django-app/ai-context/graph/symbol-references.json +0 -1
  183. package/test-projects/django-app/ai-context/index-state.json +0 -294
  184. package/test-projects/django-app/ai-context/index.db +0 -0
  185. package/test-projects/django-app/ai-context/modules.json +0 -35
  186. package/test-projects/django-app/ai-context/project.json +0 -11
  187. package/test-projects/django-app/ai-context/repo_map.json +0 -412
  188. package/test-projects/django-app/ai-context/repo_map.md +0 -105
  189. package/test-projects/django-app/ai-context/schema.json +0 -5
  190. package/test-projects/django-app/ai-context/summary.md +0 -15
  191. package/test-projects/django-app/ai-context/symbols.json +0 -1
  192. package/test-projects/django-app/ai-context/tech_stack.md +0 -32
  193. package/test-projects/django-app/ai-context/tools.json +0 -10
  194. package/test-projects/express-api/ai-context/ai_context.md +0 -112
  195. package/test-projects/express-api/ai-context/ai_rules.md +0 -50
  196. package/test-projects/express-api/ai-context/architecture.md +0 -62
  197. package/test-projects/express-api/ai-context/context/features/controllers.json +0 -13
  198. package/test-projects/express-api/ai-context/context/features/services.json +0 -13
  199. package/test-projects/express-api/ai-context/context/flows/auth.json +0 -12
  200. package/test-projects/express-api/ai-context/context/flows/user.json +0 -13
  201. package/test-projects/express-api/ai-context/conventions.md +0 -51
  202. package/test-projects/express-api/ai-context/dependencies.json +0 -54
  203. package/test-projects/express-api/ai-context/entrypoints.md +0 -17
  204. package/test-projects/express-api/ai-context/modules.json +0 -30
  205. package/test-projects/express-api/ai-context/project.json +0 -15
  206. package/test-projects/express-api/ai-context/repo_map.json +0 -100
  207. package/test-projects/express-api/ai-context/repo_map.md +0 -36
  208. package/test-projects/express-api/ai-context/schema.json +0 -5
  209. package/test-projects/express-api/ai-context/summary.md +0 -14
  210. package/test-projects/express-api/ai-context/symbols.json +0 -7
  211. package/test-projects/express-api/ai-context/tech_stack.md +0 -38
  212. package/test-projects/express-api/ai-context/tools.json +0 -10
  213. package/test-projects/fastapi-app/.ai-dev/index.db +0 -0
  214. package/test-projects/fastapi-app/ai-context/ai_context.md +0 -89
  215. package/test-projects/fastapi-app/ai-context/ai_rules.md +0 -47
  216. package/test-projects/fastapi-app/ai-context/architecture.md +0 -39
  217. package/test-projects/fastapi-app/ai-context/cache.json +0 -125
  218. package/test-projects/fastapi-app/ai-context/conventions.md +0 -51
  219. package/test-projects/fastapi-app/ai-context/dependencies.json +0 -244
  220. package/test-projects/fastapi-app/ai-context/entrypoints.md +0 -4
  221. package/test-projects/fastapi-app/ai-context/files.json +0 -154
  222. package/test-projects/fastapi-app/ai-context/graph/knowledge-graph.json +0 -15
  223. package/test-projects/fastapi-app/ai-context/graph/module-graph.json +0 -78
  224. package/test-projects/fastapi-app/ai-context/graph/symbol-graph.json +0 -1724
  225. package/test-projects/fastapi-app/ai-context/graph/symbol-references.json +0 -51
  226. package/test-projects/fastapi-app/ai-context/index-state.json +0 -217
  227. package/test-projects/fastapi-app/ai-context/index.db +0 -0
  228. package/test-projects/fastapi-app/ai-context/modules.json +0 -16
  229. package/test-projects/fastapi-app/ai-context/project.json +0 -9
  230. package/test-projects/fastapi-app/ai-context/repo_map.json +0 -298
  231. package/test-projects/fastapi-app/ai-context/repo_map.md +0 -74
  232. package/test-projects/fastapi-app/ai-context/schema.json +0 -5
  233. package/test-projects/fastapi-app/ai-context/summary.md +0 -12
  234. package/test-projects/fastapi-app/ai-context/symbols.json +0 -1
  235. package/test-projects/fastapi-app/ai-context/tech_stack.md +0 -32
  236. package/test-projects/fastapi-app/ai-context/tools.json +0 -10
  237. package/test-projects/flask-app/.ai-dev/index.db +0 -0
  238. package/test-projects/flask-app/ai-context/ai_context.md +0 -94
  239. package/test-projects/flask-app/ai-context/ai_rules.md +0 -47
  240. package/test-projects/flask-app/ai-context/architecture.md +0 -49
  241. package/test-projects/flask-app/ai-context/cache.json +0 -157
  242. package/test-projects/flask-app/ai-context/context/features/app.json +0 -25
  243. package/test-projects/flask-app/ai-context/context/flows/routes.json +0 -14
  244. package/test-projects/flask-app/ai-context/conventions.md +0 -51
  245. package/test-projects/flask-app/ai-context/dependencies.json +0 -298
  246. package/test-projects/flask-app/ai-context/entrypoints.md +0 -4
  247. package/test-projects/flask-app/ai-context/files.json +0 -194
  248. package/test-projects/flask-app/ai-context/graph/knowledge-graph.json +0 -60
  249. package/test-projects/flask-app/ai-context/graph/module-graph.json +0 -95
  250. package/test-projects/flask-app/ai-context/graph/symbol-graph.json +0 -1448
  251. package/test-projects/flask-app/ai-context/graph/symbol-references.json +0 -45
  252. package/test-projects/flask-app/ai-context/index-state.json +0 -273
  253. package/test-projects/flask-app/ai-context/index.db +0 -0
  254. package/test-projects/flask-app/ai-context/modules.json +0 -21
  255. package/test-projects/flask-app/ai-context/project.json +0 -13
  256. package/test-projects/flask-app/ai-context/repo_map.json +0 -400
  257. package/test-projects/flask-app/ai-context/repo_map.md +0 -98
  258. package/test-projects/flask-app/ai-context/schema.json +0 -5
  259. package/test-projects/flask-app/ai-context/summary.md +0 -13
  260. package/test-projects/flask-app/ai-context/symbols.json +0 -1
  261. package/test-projects/flask-app/ai-context/tech_stack.md +0 -32
  262. package/test-projects/flask-app/ai-context/tools.json +0 -10
  263. package/test-projects/laravel-app/.ai-dev/index.db +0 -0
  264. package/test-projects/laravel-app/ai-context/ai_context.md +0 -97
  265. package/test-projects/laravel-app/ai-context/ai_rules.md +0 -47
  266. package/test-projects/laravel-app/ai-context/architecture.md +0 -60
  267. package/test-projects/laravel-app/ai-context/cache.json +0 -161
  268. package/test-projects/laravel-app/ai-context/context/features/app.json +0 -21
  269. package/test-projects/laravel-app/ai-context/context/flows/.json +0 -9
  270. package/test-projects/laravel-app/ai-context/context/flows/category.json +0 -12
  271. package/test-projects/laravel-app/ai-context/context/flows/comment.json +0 -12
  272. package/test-projects/laravel-app/ai-context/context/flows/post.json +0 -12
  273. package/test-projects/laravel-app/ai-context/context/flows/unnamed.json +0 -9
  274. package/test-projects/laravel-app/ai-context/conventions.md +0 -51
  275. package/test-projects/laravel-app/ai-context/dependencies.json +0 -6
  276. package/test-projects/laravel-app/ai-context/entrypoints.md +0 -4
  277. package/test-projects/laravel-app/ai-context/files.json +0 -199
  278. package/test-projects/laravel-app/ai-context/graph/knowledge-graph.json +0 -98
  279. package/test-projects/laravel-app/ai-context/graph/module-graph.json +0 -30
  280. package/test-projects/laravel-app/ai-context/graph/symbol-graph.json +0 -5
  281. package/test-projects/laravel-app/ai-context/graph/symbol-references.json +0 -1
  282. package/test-projects/laravel-app/ai-context/index-state.json +0 -280
  283. package/test-projects/laravel-app/ai-context/index.db +0 -0
  284. package/test-projects/laravel-app/ai-context/modules.json +0 -29
  285. package/test-projects/laravel-app/ai-context/project.json +0 -17
  286. package/test-projects/laravel-app/ai-context/repo_map.json +0 -419
  287. package/test-projects/laravel-app/ai-context/repo_map.md +0 -106
  288. package/test-projects/laravel-app/ai-context/schema.json +0 -5
  289. package/test-projects/laravel-app/ai-context/summary.md +0 -15
  290. package/test-projects/laravel-app/ai-context/symbols.json +0 -1
  291. package/test-projects/laravel-app/ai-context/tech_stack.md +0 -34
  292. package/test-projects/laravel-app/ai-context/tools.json +0 -10
  293. package/test-projects/nestjs-backend/.ai-dev/index.db +0 -0
  294. package/test-projects/nestjs-backend/ai-context/ai_context.md +0 -111
  295. package/test-projects/nestjs-backend/ai-context/ai_rules.md +0 -52
  296. package/test-projects/nestjs-backend/ai-context/architecture.md +0 -49
  297. package/test-projects/nestjs-backend/ai-context/cache.json +0 -169
  298. package/test-projects/nestjs-backend/ai-context/context/features/src.json +0 -23
  299. package/test-projects/nestjs-backend/ai-context/context/flows/auth.controller.json +0 -14
  300. package/test-projects/nestjs-backend/ai-context/context/flows/auth.json +0 -10
  301. package/test-projects/nestjs-backend/ai-context/context/flows/users..json +0 -10
  302. package/test-projects/nestjs-backend/ai-context/context/flows/users.controller.json +0 -14
  303. package/test-projects/nestjs-backend/ai-context/context/flows/users.json +0 -10
  304. package/test-projects/nestjs-backend/ai-context/conventions.md +0 -52
  305. package/test-projects/nestjs-backend/ai-context/dependencies.json +0 -152
  306. package/test-projects/nestjs-backend/ai-context/entrypoints.md +0 -18
  307. package/test-projects/nestjs-backend/ai-context/files.json +0 -209
  308. package/test-projects/nestjs-backend/ai-context/graph/knowledge-graph.json +0 -132
  309. package/test-projects/nestjs-backend/ai-context/graph/module-graph.json +0 -29
  310. package/test-projects/nestjs-backend/ai-context/graph/symbol-graph.json +0 -304
  311. package/test-projects/nestjs-backend/ai-context/graph/symbol-references.json +0 -5
  312. package/test-projects/nestjs-backend/ai-context/index-state.json +0 -294
  313. package/test-projects/nestjs-backend/ai-context/index.db +0 -0
  314. package/test-projects/nestjs-backend/ai-context/modules.json +0 -19
  315. package/test-projects/nestjs-backend/ai-context/project.json +0 -18
  316. package/test-projects/nestjs-backend/ai-context/repo_map.json +0 -427
  317. package/test-projects/nestjs-backend/ai-context/repo_map.md +0 -104
  318. package/test-projects/nestjs-backend/ai-context/schema.json +0 -5
  319. package/test-projects/nestjs-backend/ai-context/summary.md +0 -13
  320. package/test-projects/nestjs-backend/ai-context/symbols.json +0 -1
  321. package/test-projects/nestjs-backend/ai-context/tech_stack.md +0 -38
  322. package/test-projects/nestjs-backend/ai-context/tools.json +0 -10
  323. package/test-projects/python-cli/.ai-dev/index.db +0 -0
  324. package/test-projects/python-cli/ai-context/ai_context.md +0 -95
  325. package/test-projects/python-cli/ai-context/ai_rules.md +0 -47
  326. package/test-projects/python-cli/ai-context/architecture.md +0 -55
  327. package/test-projects/python-cli/ai-context/cache.json +0 -149
  328. package/test-projects/python-cli/ai-context/context/features/cli.json +0 -16
  329. package/test-projects/python-cli/ai-context/context/flows/list_.json +0 -9
  330. package/test-projects/python-cli/ai-context/context/flows/remove_.json +0 -9
  331. package/test-projects/python-cli/ai-context/conventions.md +0 -51
  332. package/test-projects/python-cli/ai-context/dependencies.json +0 -66
  333. package/test-projects/python-cli/ai-context/entrypoints.md +0 -4
  334. package/test-projects/python-cli/ai-context/files.json +0 -184
  335. package/test-projects/python-cli/ai-context/graph/knowledge-graph.json +0 -83
  336. package/test-projects/python-cli/ai-context/graph/module-graph.json +0 -31
  337. package/test-projects/python-cli/ai-context/graph/symbol-graph.json +0 -358
  338. package/test-projects/python-cli/ai-context/graph/symbol-references.json +0 -11
  339. package/test-projects/python-cli/ai-context/index-state.json +0 -259
  340. package/test-projects/python-cli/ai-context/index.db +0 -0
  341. package/test-projects/python-cli/ai-context/modules.json +0 -21
  342. package/test-projects/python-cli/ai-context/project.json +0 -15
  343. package/test-projects/python-cli/ai-context/repo_map.json +0 -367
  344. package/test-projects/python-cli/ai-context/repo_map.md +0 -93
  345. package/test-projects/python-cli/ai-context/schema.json +0 -5
  346. package/test-projects/python-cli/ai-context/summary.md +0 -14
  347. package/test-projects/python-cli/ai-context/symbols.json +0 -1
  348. package/test-projects/python-cli/ai-context/tech_stack.md +0 -32
  349. package/test-projects/python-cli/ai-context/tools.json +0 -10
  350. package/test-projects/rails-app/.ai-dev/index.db +0 -0
  351. package/test-projects/rails-app/ai-context/ai_context.md +0 -94
  352. package/test-projects/rails-app/ai-context/ai_rules.md +0 -47
  353. package/test-projects/rails-app/ai-context/architecture.md +0 -49
  354. package/test-projects/rails-app/ai-context/cache.json +0 -193
  355. package/test-projects/rails-app/ai-context/context/features/app.json +0 -24
  356. package/test-projects/rails-app/ai-context/context/features/config.json +0 -13
  357. package/test-projects/rails-app/ai-context/context/flows/application.json +0 -9
  358. package/test-projects/rails-app/ai-context/context/flows/application_.json +0 -9
  359. package/test-projects/rails-app/ai-context/context/flows/comments.json +0 -11
  360. package/test-projects/rails-app/ai-context/context/flows/comments_.json +0 -11
  361. package/test-projects/rails-app/ai-context/context/flows/posts.json +0 -11
  362. package/test-projects/rails-app/ai-context/context/flows/posts_.json +0 -11
  363. package/test-projects/rails-app/ai-context/context/flows/routes.json +0 -9
  364. package/test-projects/rails-app/ai-context/context/flows/users.json +0 -11
  365. package/test-projects/rails-app/ai-context/context/flows/users_.json +0 -11
  366. package/test-projects/rails-app/ai-context/conventions.md +0 -51
  367. package/test-projects/rails-app/ai-context/dependencies.json +0 -6
  368. package/test-projects/rails-app/ai-context/entrypoints.md +0 -4
  369. package/test-projects/rails-app/ai-context/files.json +0 -239
  370. package/test-projects/rails-app/ai-context/graph/knowledge-graph.json +0 -130
  371. package/test-projects/rails-app/ai-context/graph/module-graph.json +0 -27
  372. package/test-projects/rails-app/ai-context/graph/symbol-graph.json +0 -5
  373. package/test-projects/rails-app/ai-context/graph/symbol-references.json +0 -1
  374. package/test-projects/rails-app/ai-context/index-state.json +0 -336
  375. package/test-projects/rails-app/ai-context/index.db +0 -0
  376. package/test-projects/rails-app/ai-context/modules.json +0 -26
  377. package/test-projects/rails-app/ai-context/project.json +0 -22
  378. package/test-projects/rails-app/ai-context/repo_map.json +0 -486
  379. package/test-projects/rails-app/ai-context/repo_map.md +0 -117
  380. package/test-projects/rails-app/ai-context/schema.json +0 -5
  381. package/test-projects/rails-app/ai-context/summary.md +0 -13
  382. package/test-projects/rails-app/ai-context/symbols.json +0 -1
  383. package/test-projects/rails-app/ai-context/tech_stack.md +0 -32
  384. package/test-projects/rails-app/ai-context/tools.json +0 -10
  385. package/test-projects/react-app/.ai-dev/index.db +0 -0
  386. package/test-projects/react-app/ai-context/ai_context.md +0 -96
  387. package/test-projects/react-app/ai-context/ai_rules.md +0 -49
  388. package/test-projects/react-app/ai-context/architecture.md +0 -39
  389. package/test-projects/react-app/ai-context/cache.json +0 -153
  390. package/test-projects/react-app/ai-context/context/features/src.json +0 -18
  391. package/test-projects/react-app/ai-context/context/flows/UsersPage.json +0 -14
  392. package/test-projects/react-app/ai-context/context/flows/dashboard.json +0 -9
  393. package/test-projects/react-app/ai-context/context/flows/login.json +0 -9
  394. package/test-projects/react-app/ai-context/context/flows/users.json +0 -9
  395. package/test-projects/react-app/ai-context/conventions.md +0 -52
  396. package/test-projects/react-app/ai-context/dependencies.json +0 -128
  397. package/test-projects/react-app/ai-context/entrypoints.md +0 -4
  398. package/test-projects/react-app/ai-context/files.json +0 -189
  399. package/test-projects/react-app/ai-context/graph/knowledge-graph.json +0 -112
  400. package/test-projects/react-app/ai-context/graph/module-graph.json +0 -31
  401. package/test-projects/react-app/ai-context/graph/symbol-graph.json +0 -868
  402. package/test-projects/react-app/ai-context/graph/symbol-references.json +0 -31
  403. package/test-projects/react-app/ai-context/index-state.json +0 -266
  404. package/test-projects/react-app/ai-context/index.db +0 -0
  405. package/test-projects/react-app/ai-context/modules.json +0 -17
  406. package/test-projects/react-app/ai-context/project.json +0 -16
  407. package/test-projects/react-app/ai-context/repo_map.json +0 -391
  408. package/test-projects/react-app/ai-context/repo_map.md +0 -94
  409. package/test-projects/react-app/ai-context/schema.json +0 -5
  410. package/test-projects/react-app/ai-context/summary.md +0 -13
  411. package/test-projects/react-app/ai-context/symbols.json +0 -1
  412. package/test-projects/react-app/ai-context/tech_stack.md +0 -39
  413. package/test-projects/react-app/ai-context/tools.json +0 -10
  414. package/test-projects/salesforce-cli/.ai-dev/index.db +0 -0
  415. package/test-projects/salesforce-cli/ai-context/ai_context.md +0 -89
  416. package/test-projects/salesforce-cli/ai-context/ai_rules.md +0 -47
  417. package/test-projects/salesforce-cli/ai-context/architecture.md +0 -39
  418. package/test-projects/salesforce-cli/ai-context/cache.json +0 -125
  419. package/test-projects/salesforce-cli/ai-context/context/features/force-app.json +0 -14
  420. package/test-projects/salesforce-cli/ai-context/context/flows/account.json +0 -9
  421. package/test-projects/salesforce-cli/ai-context/context/flows/opportunity.json +0 -9
  422. package/test-projects/salesforce-cli/ai-context/conventions.md +0 -51
  423. package/test-projects/salesforce-cli/ai-context/dependencies.json +0 -6
  424. package/test-projects/salesforce-cli/ai-context/entrypoints.md +0 -4
  425. package/test-projects/salesforce-cli/ai-context/files.json +0 -154
  426. package/test-projects/salesforce-cli/ai-context/graph/knowledge-graph.json +0 -64
  427. package/test-projects/salesforce-cli/ai-context/graph/module-graph.json +0 -13
  428. package/test-projects/salesforce-cli/ai-context/graph/symbol-graph.json +0 -148
  429. package/test-projects/salesforce-cli/ai-context/graph/symbol-references.json +0 -1
  430. package/test-projects/salesforce-cli/ai-context/index-state.json +0 -217
  431. package/test-projects/salesforce-cli/ai-context/index.db +0 -0
  432. package/test-projects/salesforce-cli/ai-context/modules.json +0 -12
  433. package/test-projects/salesforce-cli/ai-context/project.json +0 -14
  434. package/test-projects/salesforce-cli/ai-context/repo_map.json +0 -328
  435. package/test-projects/salesforce-cli/ai-context/repo_map.md +0 -80
  436. package/test-projects/salesforce-cli/ai-context/schema.json +0 -5
  437. package/test-projects/salesforce-cli/ai-context/summary.md +0 -13
  438. package/test-projects/salesforce-cli/ai-context/symbols.json +0 -1
  439. package/test-projects/salesforce-cli/ai-context/tech_stack.md +0 -31
  440. package/test-projects/salesforce-cli/ai-context/tools.json +0 -10
  441. package/test-projects/spring-boot-app/.ai-dev/index.db +0 -0
  442. package/test-projects/spring-boot-app/ai-context/ai_context.md +0 -91
  443. package/test-projects/spring-boot-app/ai-context/ai_rules.md +0 -48
  444. package/test-projects/spring-boot-app/ai-context/architecture.md +0 -39
  445. package/test-projects/spring-boot-app/ai-context/cache.json +0 -173
  446. package/test-projects/spring-boot-app/ai-context/context/features/src.json +0 -26
  447. package/test-projects/spring-boot-app/ai-context/context/flows/PostController.json +0 -19
  448. package/test-projects/spring-boot-app/ai-context/context/flows/UserController.json +0 -19
  449. package/test-projects/spring-boot-app/ai-context/context/flows/comment.json +0 -11
  450. package/test-projects/spring-boot-app/ai-context/context/flows/post.json +0 -14
  451. package/test-projects/spring-boot-app/ai-context/context/flows/user.json +0 -14
  452. package/test-projects/spring-boot-app/ai-context/conventions.md +0 -52
  453. package/test-projects/spring-boot-app/ai-context/dependencies.json +0 -326
  454. package/test-projects/spring-boot-app/ai-context/entrypoints.md +0 -4
  455. package/test-projects/spring-boot-app/ai-context/files.json +0 -214
  456. package/test-projects/spring-boot-app/ai-context/graph/knowledge-graph.json +0 -231
  457. package/test-projects/spring-boot-app/ai-context/graph/module-graph.json +0 -22
  458. package/test-projects/spring-boot-app/ai-context/graph/symbol-graph.json +0 -794
  459. package/test-projects/spring-boot-app/ai-context/graph/symbol-references.json +0 -70
  460. package/test-projects/spring-boot-app/ai-context/index-state.json +0 -301
  461. package/test-projects/spring-boot-app/ai-context/index.db +0 -0
  462. package/test-projects/spring-boot-app/ai-context/modules.json +0 -21
  463. package/test-projects/spring-boot-app/ai-context/project.json +0 -17
  464. package/test-projects/spring-boot-app/ai-context/repo_map.json +0 -461
  465. package/test-projects/spring-boot-app/ai-context/repo_map.md +0 -109
  466. package/test-projects/spring-boot-app/ai-context/schema.json +0 -5
  467. package/test-projects/spring-boot-app/ai-context/summary.md +0 -12
  468. package/test-projects/spring-boot-app/ai-context/symbols.json +0 -1
  469. package/test-projects/spring-boot-app/ai-context/tech_stack.md +0 -32
  470. package/test-projects/spring-boot-app/ai-context/tools.json +0 -10
@@ -1,2349 +0,0 @@
1
- {
2
- "files": {
3
- ".netlify/state.json": {
4
- "hash": "18a32a19520dc577b2a8faa5a5b24660",
5
- "mtime": 1773089671614.5596
6
- },
7
- "ANALISIS_COMPLETO.md": {
8
- "hash": "d83e2304adc6e0c3085b1e60ac3da61c",
9
- "mtime": 1773845526410.2007
10
- },
11
- "ANALISIS_MEJORAS.md": {
12
- "hash": "be77cf9d0386bb0bd0b8a01050837005",
13
- "mtime": 1773797381719.1362
14
- },
15
- "BUGS.md": {
16
- "hash": "c0173c586524a860ecdc3e6a2d468a1c",
17
- "mtime": 1773797238389.9348
18
- },
19
- "CHANGELOG.md": {
20
- "hash": "960656671015416f3ee6715f3d647867",
21
- "mtime": 1773797150695.5867
22
- },
23
- "CONTRIBUTING.md": {
24
- "hash": "f08bff9a750bbe18e8e2d20a291aea6b",
25
- "mtime": 1773008956996.6243
26
- },
27
- "FLOW.md": {
28
- "hash": "3229cb5aed9575b09415c641ffa24a81",
29
- "mtime": 1773010195719.8748
30
- },
31
- "PLAN_MEJORAS.md": {
32
- "hash": "8429a595b64327888c55f06fe67a7cbe",
33
- "mtime": 1773854140224.48
34
- },
35
- "README.es.md": {
36
- "hash": "01dec2cc8fb7dd7d1a4812f42b193d07",
37
- "mtime": 1773165384491.799
38
- },
39
- "README.md": {
40
- "hash": "9712f00575eb69d064e44c9ca7f12097",
41
- "mtime": 1773165282282.2097
42
- },
43
- "TEST_RESULTS.md": {
44
- "hash": "4dcc48b362e754348f1c26a78a8a419a",
45
- "mtime": 1773795118813.5083
46
- },
47
- "TEST_RESULTS_COMPARATIVE.md": {
48
- "hash": "f885cecf865df3e9fbe9e196436dd98a",
49
- "mtime": 1773795738092.3345
50
- },
51
- "TEST_RESULTS_COMPLETE.md": {
52
- "hash": "28ab6574db905dacefaf1b46ac41bb1a",
53
- "mtime": 1773796602392.1162
54
- },
55
- "TEST_RESULTS_COMPREHENSIVE.md": {
56
- "hash": "e8dceb19849928c2ed969cb811b647b9",
57
- "mtime": 1773796206591.9136
58
- },
59
- "TEST_RESULTS_PHASE1.md": {
60
- "hash": "cfd4aad15d6b273528faf0c43a4f12de",
61
- "mtime": 1773854897635.4668
62
- },
63
- "ai/ai_context.md": {
64
- "hash": "ad4a51ec2a6277f097ec9a80c5517686",
65
- "mtime": 1773861683213.9294
66
- },
67
- "ai/ai_rules.md": {
68
- "hash": "468baddf7848a3e0d49328e4e75cb495",
69
- "mtime": 1773861683213.9294
70
- },
71
- "ai/architecture.md": {
72
- "hash": "ac965d6508a0baac14f2a5e039373190",
73
- "mtime": 1773861683115.9277
74
- },
75
- "ai/cache.json": {
76
- "hash": "d9f3eff04ad30319045da56d9e356694",
77
- "mtime": 1773854929664.0325
78
- },
79
- "ai/ccp/jira-123/context.json": {
80
- "hash": "60531ec055a219c58dfde8ae0d511c8a",
81
- "mtime": 1773162450033.8916
82
- },
83
- "ai/context/features/commands.json": {
84
- "hash": "48e3fd06862409e55b7e154a6683071a",
85
- "mtime": 1773851281856.6865
86
- },
87
- "ai/context/features/src.json": {
88
- "hash": "cdc2cf9c106cf259a0a96d6e4001dd21",
89
- "mtime": 1773861683248.93
90
- },
91
- "ai/context/features/test-projects.json": {
92
- "hash": "3cf9abe53c00499e19f446bb5e33afdc",
93
- "mtime": 1773861683248.93
94
- },
95
- "ai/context/flows/account.json": {
96
- "hash": "b2c5f559c33e0b7bcf8ef848bbf94fc1",
97
- "mtime": 1773851281856.6865
98
- },
99
- "ai/context/flows/add_.json": {
100
- "hash": "55a902e5509ae357f962e04591bb8bf5",
101
- "mtime": 1773861683249.93
102
- },
103
- "ai/context/flows/ai-first.json": {
104
- "hash": "519e23e52c3fd00fe7620dcdda3dfd8a",
105
- "mtime": 1773861683248.93
106
- },
107
- "ai/context/flows/api.json": {
108
- "hash": "b6d2b3b5f66876810647907f3ce64cb8",
109
- "mtime": 1773861683249.93
110
- },
111
- "ai/context/flows/auth..json": {
112
- "hash": "2c4c9ca9f58b85fe40411c2c41c7623d",
113
- "mtime": 1773861683249.93
114
- },
115
- "ai/context/flows/auth.json": {
116
- "hash": "5cc3201e74ffb877bc40cf53d0f1a022",
117
- "mtime": 1773861683248.93
118
- },
119
- "ai/context/flows/category.json": {
120
- "hash": "cf87b916cb3c943136cf8f3539ef65dc",
121
- "mtime": 1773861683248.93
122
- },
123
- "ai/context/flows/comment.json": {
124
- "hash": "add34ffed48b550e174dfca7f1625e7b",
125
- "mtime": 1773861683248.93
126
- },
127
- "ai/context/flows/comments_.json": {
128
- "hash": "2bb1c4a68b2326aedd9c8294288978c3",
129
- "mtime": 1773861683249.93
130
- },
131
- "ai/context/flows/dashboard.json": {
132
- "hash": "e2cec18eb964929e180e23dece8417c0",
133
- "mtime": 1773851281857.6865
134
- },
135
- "ai/context/flows/doctor.json": {
136
- "hash": "7ea1481871abde355cad12cf6529bd3e",
137
- "mtime": 1773861683248.93
138
- },
139
- "ai/context/flows/explore.json": {
140
- "hash": "dc98cfe5667da6160b45c9dec5adfd11",
141
- "mtime": 1773861683248.93
142
- },
143
- "ai/context/flows/list_.json": {
144
- "hash": "1d8c41032eb16cb916cbcdfe05b21468",
145
- "mtime": 1773861683249.93
146
- },
147
- "ai/context/flows/login.json": {
148
- "hash": "2990a4b77d43e47f42d40d72cd6686d0",
149
- "mtime": 1773851281857.6865
150
- },
151
- "ai/context/flows/opportunity.json": {
152
- "hash": "5807c6713416c0918fe8cf87561d0c86",
153
- "mtime": 1773851281857.6865
154
- },
155
- "ai/context/flows/post.json": {
156
- "hash": "378facf71a8606f3ee160d2473263379",
157
- "mtime": 1773861683248.93
158
- },
159
- "ai/context/flows/posts_.json": {
160
- "hash": "3b2580700cfb6b1a8138d30df99399db",
161
- "mtime": 1773861683249.93
162
- },
163
- "ai/context/flows/remove_.json": {
164
- "hash": "f5536b94612783995e76dc8ed74a28da",
165
- "mtime": 1773861683249.93
166
- },
167
- "ai/context/flows/routes.json": {
168
- "hash": "00b67f4db96c2a8fab4422b20f5cd534",
169
- "mtime": 1773861683248.93
170
- },
171
- "ai/context/flows/user.json": {
172
- "hash": "93d4e3c2656f297d9a71e4aaa51b7fd3",
173
- "mtime": 1773861683248.93
174
- },
175
- "ai/context/flows/users..json": {
176
- "hash": "bba4acffbadec25f444b28379acb5294",
177
- "mtime": 1773861683249.93
178
- },
179
- "ai/context/flows/users.json": {
180
- "hash": "f273e00f06ca0730ce57f646168d0633",
181
- "mtime": 1773851281858.6865
182
- },
183
- "ai/context/flows/users_.json": {
184
- "hash": "70747fc217ba5a01487c3870e788f701",
185
- "mtime": 1773861683249.93
186
- },
187
- "ai/context/flows/views.json": {
188
- "hash": "5c601564d4eb4a68e12a312e74ffad13",
189
- "mtime": 1773861683248.93
190
- },
191
- "ai/context/repo.json": {
192
- "hash": "bd1c6fa8dd53ef2812310be1b0fb660c",
193
- "mtime": 1773162421927.4534
194
- },
195
- "ai/context/utils.json": {
196
- "hash": "1e24ba3674bfffeb902de264f3bfe104",
197
- "mtime": 1773162421927.4534
198
- },
199
- "ai/conventions.md": {
200
- "hash": "3dfe3926ca897908529e645c31176604",
201
- "mtime": 1773861683120.928
202
- },
203
- "ai/dependencies.json": {
204
- "hash": "5c42f814ecc05c9b765eb5c3d1df3538",
205
- "mtime": 1773861683206.9292
206
- },
207
- "ai/embeddings.json": {
208
- "hash": "26a10d77ee69ae123cc71fee255587c7",
209
- "mtime": 1773074029679.9358
210
- },
211
- "ai/entrypoints.md": {
212
- "hash": "ec0759563a5d2f2d9351ee65013fbde8",
213
- "mtime": 1773861683118.928
214
- },
215
- "ai/files.json": {
216
- "hash": "805a52fb8e9a1b995e4dbe79f71a725e",
217
- "mtime": 1773861683695.937
218
- },
219
- "ai/git/commit-activity.json": {
220
- "hash": "a316ee82ce5e61bcfac27710f35d999c",
221
- "mtime": 1773854929666.0325
222
- },
223
- "ai/git/recent-features.json": {
224
- "hash": "d751713988987e9331980363e24189ce",
225
- "mtime": 1773854929666.0325
226
- },
227
- "ai/git/recent-files.json": {
228
- "hash": "02e54f0e55236da0d7e799a1ce22b47b",
229
- "mtime": 1773854929666.0325
230
- },
231
- "ai/git/recent-flows.json": {
232
- "hash": "d751713988987e9331980363e24189ce",
233
- "mtime": 1773854929666.0325
234
- },
235
- "ai/graph/knowledge-graph.json": {
236
- "hash": "f3b4695cd4d8fa147bb274506586c88d",
237
- "mtime": 1773854929667.0325
238
- },
239
- "ai/graph/module-graph.json": {
240
- "hash": "79ece2ad0d153f888fd671535e95812a",
241
- "mtime": 1773861683350.9316
242
- },
243
- "ai/graph/symbol-graph.json": {
244
- "hash": "0fed8ad53527714320a8fed486264455",
245
- "mtime": 1773861683679.9368
246
- },
247
- "ai/graph/symbol-references.json": {
248
- "hash": "72805d0c57e1e933751701c756fb4296",
249
- "mtime": 1773861683693.937
250
- },
251
- "ai/hierarchy.json": {
252
- "hash": "6acd89feb85aa3b73608b4a076062f5a",
253
- "mtime": 1773854929670.0327
254
- },
255
- "ai/index-state.json": {
256
- "hash": "0c557017ee79e08150c6608cdba09601",
257
- "mtime": 1773854929671.0327
258
- },
259
- "ai/modules.json": {
260
- "hash": "283094fee199bd2b19ff5550d82384da",
261
- "mtime": 1773861683326.9312
262
- },
263
- "ai/project.json": {
264
- "hash": "a74d96e6ea8c2031b09619dbb8f3d1bd",
265
- "mtime": 1773861683250.93
266
- },
267
- "ai/repo-map.json": {
268
- "hash": "bf720b25a20829ac2b7a9e4a6c25869c",
269
- "mtime": 1773861683330.9312
270
- },
271
- "ai/repo_map.json": {
272
- "hash": "683e925f0bb7bb86a0a95b4f045f247d",
273
- "mtime": 1773861683111.9277
274
- },
275
- "ai/repo_map.md": {
276
- "hash": "76db6ab5077517843b4e9673c713b074",
277
- "mtime": 1773861683109.9277
278
- },
279
- "ai/schema.json": {
280
- "hash": "4f0b7ea89f849a2d8f24cab1e27e0b35",
281
- "mtime": 1773861683249.93
282
- },
283
- "ai/summary.md": {
284
- "hash": "2a759ad5606e7ff84df3c85bb9f01e62",
285
- "mtime": 1773861683112.9277
286
- },
287
- "ai/symbols.json": {
288
- "hash": "9ef3d9b7a04b6d50e0086dfec6c9a37f",
289
- "mtime": 1773861683188.929
290
- },
291
- "ai/tech_stack.md": {
292
- "hash": "0a379fa423f21f42370f81b95e58f3a7",
293
- "mtime": 1773861683118.928
294
- },
295
- "ai/tools.json": {
296
- "hash": "b1356e52c74e9b3b6a0d397b790a4968",
297
- "mtime": 1773861683250.93
298
- },
299
- "docs/.vitepress/config.ts": {
300
- "hash": "6c53efc8669f87bc9040096b96847be3",
301
- "mtime": 1773090332406.6528
302
- },
303
- "docs/.vitepress/theme/custom.css": {
304
- "hash": "924287015c3c64819e66cdfc0f24fa46",
305
- "mtime": 1773076171344.3733
306
- },
307
- "docs/.vitepress/theme/index.ts": {
308
- "hash": "a9a72e0000dd7687fd2d899d79e4aee0",
309
- "mtime": 1773076127580.8638
310
- },
311
- "docs/es/guide/adapters.md": {
312
- "hash": "a593b919a72920866a143d68d3f6114a",
313
- "mtime": 1773184836139.1023
314
- },
315
- "docs/es/guide/ai-repository-schema.md": {
316
- "hash": "36634728939ebe93bd4f47ebcbeee945",
317
- "mtime": 1773251866778.0652
318
- },
319
- "docs/es/guide/features.md": {
320
- "hash": "0b8d521e9b1156336091a441b64518f0",
321
- "mtime": 1773178691579.252
322
- },
323
- "docs/es/guide/flows.md": {
324
- "hash": "00cd75411f18ab0c21c0b1d110b14064",
325
- "mtime": 1773178392796.509
326
- },
327
- "docs/es/guide/getting-started.md": {
328
- "hash": "c446f6957beff061b7b41b0ccef510e2",
329
- "mtime": 1773090370625.2866
330
- },
331
- "docs/es/guide/git-intelligence.md": {
332
- "hash": "e47e2199964d144cb4e841a0c7a8b881",
333
- "mtime": 1773238994485.4612
334
- },
335
- "docs/es/guide/incremental-analysis.md": {
336
- "hash": "526453da195d833ad614c9a32585e3f3",
337
- "mtime": 1773247246616.0706
338
- },
339
- "docs/es/guide/knowledge-graph.md": {
340
- "hash": "a4deda34b2f4f587858127a7299c5e0b",
341
- "mtime": 1773244257027.961
342
- },
343
- "docs/es/guide/lazy-indexing.md": {
344
- "hash": "50862945713d450e7ca2401e62ce3e66",
345
- "mtime": 1773258482771.7268
346
- },
347
- "docs/es/guide/performance.md": {
348
- "hash": "624e29f574a1bc47347754e918476dcc",
349
- "mtime": 1773181129397.9136
350
- },
351
- "docs/es/index.md": {
352
- "hash": "920ea9e39b01a04495d68306c26d2fe9",
353
- "mtime": 1773090256493.4934
354
- },
355
- "docs/examples/express-api.md": {
356
- "hash": "54af0d58910939c041d98437a73cf231",
357
- "mtime": 1773076482605.2854
358
- },
359
- "docs/examples/index.md": {
360
- "hash": "67f774e8e8b170d44b51cfcfff9ecdd7",
361
- "mtime": 1773076421849.489
362
- },
363
- "docs/examples/python-django.md": {
364
- "hash": "a57217d9a4a0eba7e6750caf75b86aae",
365
- "mtime": 1773076518221.758
366
- },
367
- "docs/examples/react-app.md": {
368
- "hash": "c3ae0d56ab0de03f6957a2c3685e2a10",
369
- "mtime": 1773076494650.4448
370
- },
371
- "docs/guide/adapters.md": {
372
- "hash": "54aff0280eef4b341723d9fe1f4936a1",
373
- "mtime": 1773194224066.7905
374
- },
375
- "docs/guide/ai-repository-schema.md": {
376
- "hash": "b953a4c87754d0ac445df26967444891",
377
- "mtime": 1773251800916.9807
378
- },
379
- "docs/guide/architecture.md": {
380
- "hash": "a73bf154ed909b4d0157e0f8f37a97aa",
381
- "mtime": 1773176294334.256
382
- },
383
- "docs/guide/flows.md": {
384
- "hash": "58dc503bbdf067153ba4a0b04a8c56f0",
385
- "mtime": 1773176979656.7134
386
- },
387
- "docs/guide/getting-started.md": {
388
- "hash": "b783c85c32dc67ffa2133915b5cd93fb",
389
- "mtime": 1773076199524.7075
390
- },
391
- "docs/guide/git-intelligence.md": {
392
- "hash": "2e6f8fc3e8efba54d92eea8cc631c19e",
393
- "mtime": 1773238937863.8408
394
- },
395
- "docs/guide/incremental-analysis.md": {
396
- "hash": "d4293f8de2ca740e2736c282f8b1514b",
397
- "mtime": 1773247186818.0437
398
- },
399
- "docs/guide/installation.md": {
400
- "hash": "7926dceb824c696ff79bc357aee27580",
401
- "mtime": 1773076224028.002
402
- },
403
- "docs/guide/knowledge-graph.md": {
404
- "hash": "3c00be517112f0fb1e865cedd2ec5a81",
405
- "mtime": 1773244190994.9873
406
- },
407
- "docs/guide/lazy-indexing.md": {
408
- "hash": "29c43fc104003e8819e731e45f7c640d",
409
- "mtime": 1773258407656.5571
410
- },
411
- "docs/guide/performance.md": {
412
- "hash": "a2a5434f93591785a72e202ff700467f",
413
- "mtime": 1773181094035.3489
414
- },
415
- "docs/guide/quick-start.md": {
416
- "hash": "dfa4c6196895c98b84845c138182dae6",
417
- "mtime": 1773076244371.249
418
- },
419
- "docs/index.md": {
420
- "hash": "9032437ec565b4935df406022143d2ae",
421
- "mtime": 1773089168385.8672
422
- },
423
- "docs/reference/commands.md": {
424
- "hash": "f9b509d9a44a4a8ffebc433d4adb07c5",
425
- "mtime": 1773095909341.2031
426
- },
427
- "examples/01-express-api.md": {
428
- "hash": "54af0d58910939c041d98437a73cf231",
429
- "mtime": 1773014837445.3228
430
- },
431
- "examples/02-react-app.md": {
432
- "hash": "2f1948bf3765228b37697f9f48d37b79",
433
- "mtime": 1773014866555.722
434
- },
435
- "examples/03-python-django.md": {
436
- "hash": "fccd23e390a3d29d7d0d5d34a14d8cf3",
437
- "mtime": 1773014902647.2178
438
- },
439
- "examples/README.md": {
440
- "hash": "4e8a85046bacda16352b5dff84e3ffe4",
441
- "mtime": 1773014931866.6204
442
- },
443
- "package-lock.json": {
444
- "hash": "52220838924486c8aa10ed329be1adf5",
445
- "mtime": 1773083490249.47
446
- },
447
- "package.json": {
448
- "hash": "df5d8aec6d7b3e2829995654a76aaf80",
449
- "mtime": 1773797139334.4119
450
- },
451
- "src/analyzers/aiRules.ts": {
452
- "hash": "3213f98ebd24246dd24b2c39f696bd14",
453
- "mtime": 1773009335276.8303
454
- },
455
- "src/analyzers/androidResources.ts": {
456
- "hash": "d260211a62c187920db680c232367505",
457
- "mtime": 1773153784923.4502
458
- },
459
- "src/analyzers/architecture.ts": {
460
- "hash": "263e2e84afa0800cd4e95820f7d5aacb",
461
- "mtime": 1773007837808.1536
462
- },
463
- "src/analyzers/conventions.ts": {
464
- "hash": "887a991db6e0b9d658046b81cbe719b6",
465
- "mtime": 1773008352611.8462
466
- },
467
- "src/analyzers/dependencies.ts": {
468
- "hash": "b0a73ac0cfe33821632a918e2529fdad",
469
- "mtime": 1773790761658.4297
470
- },
471
- "src/analyzers/entrypoints.ts": {
472
- "hash": "c4a26db8302561ab46319ed6ba9019be",
473
- "mtime": 1773153667235.145
474
- },
475
- "src/analyzers/gradleModules.ts": {
476
- "hash": "fd4d77c29f554bf967e2ce4a05574497",
477
- "mtime": 1773153804000.0356
478
- },
479
- "src/analyzers/symbols.ts": {
480
- "hash": "f861ab716c8341b280b72f1322eaa125",
481
- "mtime": 1773854929727.6602
482
- },
483
- "src/analyzers/techStack.ts": {
484
- "hash": "64ef322c5475e2b0ef1d95eab41b6b4c",
485
- "mtime": 1773153400053.8142
486
- },
487
- "src/commands/ai-first.ts": {
488
- "hash": "7bfaa8a8bf6662f305f34b0608114b1d",
489
- "mtime": 1773793521992.9373
490
- },
491
- "src/commands/doctor.ts": {
492
- "hash": "bf877242c2777a92c2c13c6f20952d63",
493
- "mtime": 1773072336100.912
494
- },
495
- "src/commands/explore.ts": {
496
- "hash": "684e64267e90e13ff9ae7a7a87deaa5d",
497
- "mtime": 1773071610359.5925
498
- },
499
- "src/core/adapters/adapterRegistry.ts": {
500
- "hash": "9c82d3399bf134c40c4d0d8239252813",
501
- "mtime": 1773194865986.006
502
- },
503
- "src/core/adapters/baseAdapter.ts": {
504
- "hash": "5f64bb1c62d32109898a576b1a11fc84",
505
- "mtime": 1773183006248.3667
506
- },
507
- "src/core/adapters/community/fastapiAdapter.ts": {
508
- "hash": "1d6e19ee052f97e3edeaf100199a4f6e",
509
- "mtime": 1773195157323.2893
510
- },
511
- "src/core/adapters/community/index.ts": {
512
- "hash": "869811b9969b694a69da22a0acf65062",
513
- "mtime": 1773185647607.2932
514
- },
515
- "src/core/adapters/community/laravelAdapter.ts": {
516
- "hash": "783b2d3973cb186133b0291cecf5bea4",
517
- "mtime": 1773185437305.221
518
- },
519
- "src/core/adapters/community/nestjsAdapter.ts": {
520
- "hash": "1497421c1608545d575172567db22956",
521
- "mtime": 1773185475791.7996
522
- },
523
- "src/core/adapters/community/phoenixAdapter.ts": {
524
- "hash": "06f5634a4d352223e4cd8f5ea795a7e4",
525
- "mtime": 1773185580466.3152
526
- },
527
- "src/core/adapters/community/springBootAdapter.ts": {
528
- "hash": "a4da44ea1657a242cfe06e2c80263c3b",
529
- "mtime": 1773185539438.7197
530
- },
531
- "src/core/adapters/dotnetAdapter.ts": {
532
- "hash": "cb85de66279ec84e49b78e202ad53172",
533
- "mtime": 1773183211018.439
534
- },
535
- "src/core/adapters/index.ts": {
536
- "hash": "52fbc30e12817507e27c51584e710041",
537
- "mtime": 1773194224100.791
538
- },
539
- "src/core/adapters/javascriptAdapter.ts": {
540
- "hash": "4344fc5d7dfa44800a3c27d04bf5b23d",
541
- "mtime": 1773183042396.908
542
- },
543
- "src/core/adapters/pythonAdapter.ts": {
544
- "hash": "01bf12d95ab7ebf0819b1bbc97bd0223",
545
- "mtime": 1773183091831.6492
546
- },
547
- "src/core/adapters/railsAdapter.ts": {
548
- "hash": "ce0622664c7614cd86fe33a6ed5cf9ec",
549
- "mtime": 1773183128570.2004
550
- },
551
- "src/core/adapters/salesforceAdapter.ts": {
552
- "hash": "9080869edee1b246baf94caf66732cf1",
553
- "mtime": 1773183167520.7852
554
- },
555
- "src/core/adapters/sdk.ts": {
556
- "hash": "cfe5d3b363b701aae09b29250274d495",
557
- "mtime": 1773185372752.242
558
- },
559
- "src/core/aiContextGenerator.ts": {
560
- "hash": "c520cef1f061e0f8517734b30957b947",
561
- "mtime": 1773013859071.9048
562
- },
563
- "src/core/ccp.ts": {
564
- "hash": "cdab3bf243f95155d0a15e26b6582afb",
565
- "mtime": 1773157731340.6924
566
- },
567
- "src/core/chunker.ts": {
568
- "hash": "7f53952952c9d801672a5a6ad729e7d5",
569
- "mtime": 1773073665099.1428
570
- },
571
- "src/core/contextGenerator.ts": {
572
- "hash": "0e3c3077c006ce8092c64f0232f750c0",
573
- "mtime": 1773006174980.9766
574
- },
575
- "src/core/contextPacket.ts": {
576
- "hash": "0febc90214d77fc907e412222f94e6c1",
577
- "mtime": 1773095515712.9194
578
- },
579
- "src/core/embeddings.ts": {
580
- "hash": "ce1769d7adec0510a295672f69a8ba41",
581
- "mtime": 1773073766382.3613
582
- },
583
- "src/core/gitAnalyzer.ts": {
584
- "hash": "cc017c698e64892c23a1761440d9dbd7",
585
- "mtime": 1773237342075.0762
586
- },
587
- "src/core/hierarchyGenerator.ts": {
588
- "hash": "c83b44b554d5aab8759f6a4807985a24",
589
- "mtime": 1773016072837.5437
590
- },
591
- "src/core/incrementalAnalyzer.ts": {
592
- "hash": "7057f4102daa2b59a53f62776a56b9e1",
593
- "mtime": 1773246228077.465
594
- },
595
- "src/core/indexState.ts": {
596
- "hash": "412559800f738abb82e28c9eb71f8a6c",
597
- "mtime": 1773073382179.3071
598
- },
599
- "src/core/indexer.ts": {
600
- "hash": "6e5b002d8661cf176d236b2e362db46c",
601
- "mtime": 1773012050361.3564
602
- },
603
- "src/core/knowledgeGraphBuilder.ts": {
604
- "hash": "274e5831b4e8be00cec10f2668b90735",
605
- "mtime": 1773242876540.4153
606
- },
607
- "src/core/lazyAnalyzer.ts": {
608
- "hash": "b28a51c974b1f4ea7eb98acd5ba6fddd",
609
- "mtime": 1773257763051.4905
610
- },
611
- "src/core/moduleGraph.ts": {
612
- "hash": "0bf6db06febcf2f929d92fdf569d753b",
613
- "mtime": 1773071610359.6934
614
- },
615
- "src/core/repoMapper.ts": {
616
- "hash": "2b5a86b04f99bcbfaa6b29291857a0d4",
617
- "mtime": 1773005052293.012
618
- },
619
- "src/core/repoScanner.ts": {
620
- "hash": "78c4baf429b8365b779d779faec6c6f2",
621
- "mtime": 1773004069943.8745
622
- },
623
- "src/core/schema.ts": {
624
- "hash": "e6f173aea750cf98e4ef363846edd2b2",
625
- "mtime": 1773249080973.0469
626
- },
627
- "src/core/semanticContexts.ts": {
628
- "hash": "8c335cda53cbdecd1190a15d30910c17",
629
- "mtime": 1773854929727.958
630
- },
631
- "src/core/symbolGraph.ts": {
632
- "hash": "32cf884e7fd3e92bd87c94d0610a2654",
633
- "mtime": 1773854929728.3672
634
- },
635
- "src/index.ts": {
636
- "hash": "f79ef17442d3a4a7a0288a646e2b21b0",
637
- "mtime": 1773069735666.7573
638
- },
639
- "src/types/sql.js.d.ts": {
640
- "hash": "5b68823eaec8a56784c956075d1954ce",
641
- "mtime": 1773010637558.1929
642
- },
643
- "src/utils/fileUtils.ts": {
644
- "hash": "f1b6c884e3f78c088b276ff82a7ad09e",
645
- "mtime": 1773778112059.0947
646
- },
647
- "test-projects/django-app/README.md": {
648
- "hash": "2b099275e8f719d2a008071b600752a7",
649
- "mtime": 1773847503082.22
650
- },
651
- "test-projects/django-app/ai/ai_context.md": {
652
- "hash": "4926e5dd61c81d03cee052db56664235",
653
- "mtime": 1773847524423.5146
654
- },
655
- "test-projects/django-app/ai/ai_rules.md": {
656
- "hash": "b7db08ce64e7b0afd2e515992bc0a561",
657
- "mtime": 1773847524422.5146
658
- },
659
- "test-projects/django-app/ai/architecture.md": {
660
- "hash": "fa4d5fbe8c4e29ebc725a92b12d88b04",
661
- "mtime": 1773847524416.5146
662
- },
663
- "test-projects/django-app/ai/cache.json": {
664
- "hash": "29106f930a901a1723c2c25d22e43f31",
665
- "mtime": 1773847532764.63
666
- },
667
- "test-projects/django-app/ai/context/flows/views.json": {
668
- "hash": "a914f6473aa639c9261d9491913a5440",
669
- "mtime": 1773847532766.63
670
- },
671
- "test-projects/django-app/ai/conventions.md": {
672
- "hash": "d11ac646a8916e3c6cc376f610368317",
673
- "mtime": 1773847524419.5146
674
- },
675
- "test-projects/django-app/ai/dependencies.json": {
676
- "hash": "ef1c6db344eea60efd35525d7edfbdc5",
677
- "mtime": 1773847524421.5146
678
- },
679
- "test-projects/django-app/ai/entrypoints.md": {
680
- "hash": "34c8965a66697d9f1d428bb0904f5d8d",
681
- "mtime": 1773847524418.5146
682
- },
683
- "test-projects/django-app/ai/files.json": {
684
- "hash": "7b7f0e91d52466a3bfc61934f7318773",
685
- "mtime": 1773854929728.3672
686
- },
687
- "test-projects/django-app/ai/graph/module-graph.json": {
688
- "hash": "b226564aa5093d79889b9d70969a7018",
689
- "mtime": 1773847532754.6296
690
- },
691
- "test-projects/django-app/ai/graph/symbol-graph.json": {
692
- "hash": "b1bd34e7d1007ce43b7fe133c1c2ba93",
693
- "mtime": 1773847532762.63
694
- },
695
- "test-projects/django-app/ai/graph/symbol-references.json": {
696
- "hash": "99914b932bd37a50b983c5e7c90ae93b",
697
- "mtime": 1773847532762.63
698
- },
699
- "test-projects/django-app/ai/index-state.json": {
700
- "hash": "bfc0668aa599dec27819bd72c7bfe674",
701
- "mtime": 1773854929728.3672
702
- },
703
- "test-projects/django-app/ai/modules.json": {
704
- "hash": "cba831f3ad2e9f04973d35fad2f07b55",
705
- "mtime": 1773854831967.291
706
- },
707
- "test-projects/django-app/ai/project.json": {
708
- "hash": "446f506ec7e9c0573dfc4a245b7c7084",
709
- "mtime": 1773847524425.5146
710
- },
711
- "test-projects/django-app/ai/repo-map.json": {
712
- "hash": "22e7d221904a4f61d95484fab517e546",
713
- "mtime": 1773847532746.6296
714
- },
715
- "test-projects/django-app/ai/repo_map.json": {
716
- "hash": "9940eb9df7de6de79da4220bc1c3ca2b",
717
- "mtime": 1773847524415.5146
718
- },
719
- "test-projects/django-app/ai/repo_map.md": {
720
- "hash": "9e1e333f34d5b4166d3fca576c2c77b9",
721
- "mtime": 1773847524415.5146
722
- },
723
- "test-projects/django-app/ai/schema.json": {
724
- "hash": "9aef49ca496598670fa99edc138df4a4",
725
- "mtime": 1773847524425.5146
726
- },
727
- "test-projects/django-app/ai/summary.md": {
728
- "hash": "21d8172f53214fcb4765fdbfc60783ca",
729
- "mtime": 1773847524415.5146
730
- },
731
- "test-projects/django-app/ai/symbols.json": {
732
- "hash": "a5f3112d44cfa4dc256b75bda253df0e",
733
- "mtime": 1773847524420.5146
734
- },
735
- "test-projects/django-app/ai/tech_stack.md": {
736
- "hash": "f5d7720e17390f42b9f81c4b3c0d1bdf",
737
- "mtime": 1773847524418.5146
738
- },
739
- "test-projects/django-app/ai/tools.json": {
740
- "hash": "b1356e52c74e9b3b6a0d397b790a4968",
741
- "mtime": 1773847524425.5146
742
- },
743
- "test-projects/django-app/blog/__init__.py": {
744
- "hash": "d41d8cd98f00b204e9800998ecf8427e",
745
- "mtime": 1773847262320.9067
746
- },
747
- "test-projects/django-app/blog/admin.py": {
748
- "hash": "ef8b15c55e00e9ef835b4cc1a3ae8307",
749
- "mtime": 1773847452965.5286
750
- },
751
- "test-projects/django-app/blog/models.py": {
752
- "hash": "11cf32800211bc954798a3775a0c1429",
753
- "mtime": 1773847281082.164
754
- },
755
- "test-projects/django-app/blog/serializers.py": {
756
- "hash": "efb817010fdd412250c980c9d7b738a2",
757
- "mtime": 1773847304708.4883
758
- },
759
- "test-projects/django-app/blog/urls.py": {
760
- "hash": "235d6b0d52e581825c76a37dba5d46f4",
761
- "mtime": 1773847343339.019
762
- },
763
- "test-projects/django-app/blog/views.py": {
764
- "hash": "b51bcfc62e8a9cc4e36d6e04d0d66ac2",
765
- "mtime": 1773847331379.8545
766
- },
767
- "test-projects/django-app/django_app/__init__.py": {
768
- "hash": "d41d8cd98f00b204e9800998ecf8427e",
769
- "mtime": 1773847262320.9067
770
- },
771
- "test-projects/django-app/django_app/settings.py": {
772
- "hash": "ec0ff12dd114d0f70b04dee4e6753ded",
773
- "mtime": 1773847230399.4692
774
- },
775
- "test-projects/django-app/django_app/urls.py": {
776
- "hash": "646e11e6cbfc20b5a1c457bd04058b6f",
777
- "mtime": 1773847241419.62
778
- },
779
- "test-projects/django-app/django_app/wsgi.py": {
780
- "hash": "8997e7b6236b6d5cc5ab76625293b138",
781
- "mtime": 1773847252217.768
782
- },
783
- "test-projects/django-app/manage.py": {
784
- "hash": "557480f24dd7cddb10ad7fdcf39b6c79",
785
- "mtime": 1773847204930.1206
786
- },
787
- "test-projects/django-app/users/__init__.py": {
788
- "hash": "d41d8cd98f00b204e9800998ecf8427e",
789
- "mtime": 1773847262320.9067
790
- },
791
- "test-projects/django-app/users/admin.py": {
792
- "hash": "3a42200ccb8543463198e6df6bbf3601",
793
- "mtime": 1773847468180.7383
794
- },
795
- "test-projects/django-app/users/models.py": {
796
- "hash": "861e708ed26ccbcb76365faf6d540ac6",
797
- "mtime": 1773847363660.2983
798
- },
799
- "test-projects/django-app/users/serializers.py": {
800
- "hash": "709f852da00f6f58d0b9cdb84bb7fe24",
801
- "mtime": 1773847389572.655
802
- },
803
- "test-projects/django-app/users/urls.py": {
804
- "hash": "c331ed123fa4e1121d48eead9befbb0d",
805
- "mtime": 1773847438434.3281
806
- },
807
- "test-projects/django-app/users/views.py": {
808
- "hash": "91fa1403cd82ec70898d487250d9673b",
809
- "mtime": 1773847426896.1692
810
- },
811
- "test-projects/express-api/ai/ai_context.md": {
812
- "hash": "286f0083010c4a66f3906b020b9cc7b4",
813
- "mtime": 1773796492348.4023
814
- },
815
- "test-projects/express-api/ai/ai_rules.md": {
816
- "hash": "fa1a632e71f5b7055dee7d1368600ce0",
817
- "mtime": 1773796492348.4023
818
- },
819
- "test-projects/express-api/ai/architecture.md": {
820
- "hash": "5e9f157447aac07a89cf6fe7bffcdad4",
821
- "mtime": 1773796492342.4023
822
- },
823
- "test-projects/express-api/ai/cache.json": {
824
- "hash": "3c6e4d40d9a93aec0c33ac72d4fc4e85",
825
- "mtime": 1773854929729.0337
826
- },
827
- "test-projects/express-api/ai/context/features/controllers.json": {
828
- "hash": "65a9f94a405e51bd65bd7a5378dbb164",
829
- "mtime": 1773796517401.7932
830
- },
831
- "test-projects/express-api/ai/context/features/services.json": {
832
- "hash": "113525da53ad952071cca194ba355d48",
833
- "mtime": 1773796517401.7932
834
- },
835
- "test-projects/express-api/ai/context/flows/auth.json": {
836
- "hash": "a6200259a521a38e08dc6396d870a633",
837
- "mtime": 1773796517401.7932
838
- },
839
- "test-projects/express-api/ai/context/flows/user.json": {
840
- "hash": "af049ebfc3b8ce808e6091ac96a651ee",
841
- "mtime": 1773796517401.7932
842
- },
843
- "test-projects/express-api/ai/conventions.md": {
844
- "hash": "fa8f117204dbd53d6b787e6ec1791dbf",
845
- "mtime": 1773796492344.4023
846
- },
847
- "test-projects/express-api/ai/dependencies.json": {
848
- "hash": "b59a369568a90136bf6d54a022aae411",
849
- "mtime": 1773796492346.4023
850
- },
851
- "test-projects/express-api/ai/entrypoints.md": {
852
- "hash": "17b75097fff8baf7e8218553431dad64",
853
- "mtime": 1773796492343.4023
854
- },
855
- "test-projects/express-api/ai/files.json": {
856
- "hash": "4041be286c1f3bef227566eb3131babc",
857
- "mtime": 1773854929729.0337
858
- },
859
- "test-projects/express-api/ai/graph/knowledge-graph.json": {
860
- "hash": "f77f4f49dab0623ff144b6e971feabdc",
861
- "mtime": 1773796549349.291
862
- },
863
- "test-projects/express-api/ai/graph/module-graph.json": {
864
- "hash": "43383456483e635b66ff8960f3b39f03",
865
- "mtime": 1773796517391.793
866
- },
867
- "test-projects/express-api/ai/graph/symbol-graph.json": {
868
- "hash": "d254a317177342dab8125c05c4616101",
869
- "mtime": 1773796517397.7932
870
- },
871
- "test-projects/express-api/ai/graph/symbol-references.json": {
872
- "hash": "656c3df0aaaf021cc2f25769a7945c41",
873
- "mtime": 1773796517397.7932
874
- },
875
- "test-projects/express-api/ai/index-state.json": {
876
- "hash": "8870c8839252ed08c5c2804959db7841",
877
- "mtime": 1773854832180.295
878
- },
879
- "test-projects/express-api/ai/modules.json": {
880
- "hash": "52396bb2eb3346493e373bf55805ef90",
881
- "mtime": 1773854832117.2937
882
- },
883
- "test-projects/express-api/ai/project.json": {
884
- "hash": "1bb817bdbded1961f92fd41ff357d31b",
885
- "mtime": 1773854929729.0337
886
- },
887
- "test-projects/express-api/ai/repo-map.json": {
888
- "hash": "d59ff56ea2af1192014b5a9977c3cc01",
889
- "mtime": 1773854929729.0337
890
- },
891
- "test-projects/express-api/ai/repo_map.json": {
892
- "hash": "2c931b22a4f0555492ca98f0e74d0511",
893
- "mtime": 1773854929729.0337
894
- },
895
- "test-projects/express-api/ai/repo_map.md": {
896
- "hash": "35963e46f602438bc7b1318c630c9616",
897
- "mtime": 1773796492340.4023
898
- },
899
- "test-projects/express-api/ai/schema.json": {
900
- "hash": "13d7dee9946a2959f9b7309ee88b23f6",
901
- "mtime": 1773854929729.0337
902
- },
903
- "test-projects/express-api/ai/summary.md": {
904
- "hash": "792c7fa8536cdf57b7506a5b4390e1fd",
905
- "mtime": 1773796492341.4023
906
- },
907
- "test-projects/express-api/ai/symbols.json": {
908
- "hash": "55f09cedb48590dcdc4c0a4506026d52",
909
- "mtime": 1773796492346.4023
910
- },
911
- "test-projects/express-api/ai/tech_stack.md": {
912
- "hash": "bce98c307ddce9864d341031c914ba8a",
913
- "mtime": 1773796492343.4023
914
- },
915
- "test-projects/express-api/ai/tools.json": {
916
- "hash": "b1356e52c74e9b3b6a0d397b790a4968",
917
- "mtime": 1773796492350.4023
918
- },
919
- "test-projects/express-api/controllers/authController.js": {
920
- "hash": "7354721b063c069c013d70e04f4bee0f",
921
- "mtime": 1773776832721.0393
922
- },
923
- "test-projects/express-api/controllers/userController.js": {
924
- "hash": "e43bb45b1c75b7e4bcd072c60a70d848",
925
- "mtime": 1773776845003.1538
926
- },
927
- "test-projects/express-api/index.js": {
928
- "hash": "b866780bf160f2bfb2ac6baba6a1f6b1",
929
- "mtime": 1773776791058.662
930
- },
931
- "test-projects/express-api/middleware/authMiddleware.js": {
932
- "hash": "bd1176bd90f83f93b3f66d07758267e5",
933
- "mtime": 1773776926397.9497
934
- },
935
- "test-projects/express-api/models/userRepository.js": {
936
- "hash": "fdf8dfbb70b15c82f0d2b13e51a640f6",
937
- "mtime": 1773776885672.544
938
- },
939
- "test-projects/express-api/package.json": {
940
- "hash": "c64180130f77b5472a2850aafa61c7e9",
941
- "mtime": 1773776784437.6038
942
- },
943
- "test-projects/express-api/services/authService.js": {
944
- "hash": "cacf5bd493a669c8ef7b95bef67cf7e5",
945
- "mtime": 1773776853984.2388
946
- },
947
- "test-projects/express-api/services/userService.js": {
948
- "hash": "cb3b6f655977d154edee4038d6105d10",
949
- "mtime": 1773776865182.3455
950
- },
951
- "test-projects/fastapi-app/README.md": {
952
- "hash": "bf26100b42bb769b5067306a5fb0a830",
953
- "mtime": 1773848160010.3352
954
- },
955
- "test-projects/fastapi-app/ai/ai_context.md": {
956
- "hash": "06b0588ccaa38e93b82047e29c26dbf4",
957
- "mtime": 1773848180015.6138
958
- },
959
- "test-projects/fastapi-app/ai/ai_rules.md": {
960
- "hash": "b7db08ce64e7b0afd2e515992bc0a561",
961
- "mtime": 1773848180015.6138
962
- },
963
- "test-projects/fastapi-app/ai/architecture.md": {
964
- "hash": "423f9f9db4f90e3e12c8aab7f022ef98",
965
- "mtime": 1773848180010.6138
966
- },
967
- "test-projects/fastapi-app/ai/cache.json": {
968
- "hash": "429adfe1177228af3779a24147bc7e1b",
969
- "mtime": 1773848188957.7383
970
- },
971
- "test-projects/fastapi-app/ai/conventions.md": {
972
- "hash": "d11ac646a8916e3c6cc376f610368317",
973
- "mtime": 1773848180012.6138
974
- },
975
- "test-projects/fastapi-app/ai/dependencies.json": {
976
- "hash": "246c5a632d3afd7fd186dc0f028157f6",
977
- "mtime": 1773848180014.6138
978
- },
979
- "test-projects/fastapi-app/ai/entrypoints.md": {
980
- "hash": "34c8965a66697d9f1d428bb0904f5d8d",
981
- "mtime": 1773848180011.6138
982
- },
983
- "test-projects/fastapi-app/ai/files.json": {
984
- "hash": "2e3b91dd5469562139f75f79287027d8",
985
- "mtime": 1773854929729.0337
986
- },
987
- "test-projects/fastapi-app/ai/graph/module-graph.json": {
988
- "hash": "dccb5b1211bf9c438fefd949ef8d280d",
989
- "mtime": 1773848188949.738
990
- },
991
- "test-projects/fastapi-app/ai/graph/symbol-graph.json": {
992
- "hash": "dacfe5d47c55c042e7a83e970b975fd2",
993
- "mtime": 1773848188955.7383
994
- },
995
- "test-projects/fastapi-app/ai/graph/symbol-references.json": {
996
- "hash": "1cac27d66672fe0c2cf2c0f030e38795",
997
- "mtime": 1773848188956.7383
998
- },
999
- "test-projects/fastapi-app/ai/index-state.json": {
1000
- "hash": "140a19ce26a2a62352b6eb6457d91fc5",
1001
- "mtime": 1773854929729.0337
1002
- },
1003
- "test-projects/fastapi-app/ai/modules.json": {
1004
- "hash": "1c7630ab9b91c57c6cb9ccb384cc3f4e",
1005
- "mtime": 1773854832245.2961
1006
- },
1007
- "test-projects/fastapi-app/ai/project.json": {
1008
- "hash": "1067d825cc4be093755993728968ba7f",
1009
- "mtime": 1773848180017.6138
1010
- },
1011
- "test-projects/fastapi-app/ai/repo-map.json": {
1012
- "hash": "618ba6fae84d28fb96cfad500fb0b32a",
1013
- "mtime": 1773848188947.738
1014
- },
1015
- "test-projects/fastapi-app/ai/repo_map.json": {
1016
- "hash": "01a62da84320e9b5989803f90799e278",
1017
- "mtime": 1773848180009.6135
1018
- },
1019
- "test-projects/fastapi-app/ai/repo_map.md": {
1020
- "hash": "e6e7d946bb0e4408e4e373f5b8fd6a74",
1021
- "mtime": 1773848180008.6135
1022
- },
1023
- "test-projects/fastapi-app/ai/schema.json": {
1024
- "hash": "da47e464464bc5767261d258df5b17c4",
1025
- "mtime": 1773848180017.6138
1026
- },
1027
- "test-projects/fastapi-app/ai/summary.md": {
1028
- "hash": "9a081d026396cae093add00fc2c34320",
1029
- "mtime": 1773848180009.6135
1030
- },
1031
- "test-projects/fastapi-app/ai/symbols.json": {
1032
- "hash": "a89ac8114a5482c6128299186c367207",
1033
- "mtime": 1773848180013.6138
1034
- },
1035
- "test-projects/fastapi-app/ai/tech_stack.md": {
1036
- "hash": "f5d7720e17390f42b9f81c4b3c0d1bdf",
1037
- "mtime": 1773848180011.6138
1038
- },
1039
- "test-projects/fastapi-app/ai/tools.json": {
1040
- "hash": "b1356e52c74e9b3b6a0d397b790a4968",
1041
- "mtime": 1773848180017.6138
1042
- },
1043
- "test-projects/fastapi-app/app/database.py": {
1044
- "hash": "119e69e1cbb98dd5dbad6dd6667c31c8",
1045
- "mtime": 1773847938779.2578
1046
- },
1047
- "test-projects/fastapi-app/app/dependencies.py": {
1048
- "hash": "a4bcf7c973d54dfba67718f52c0d1e9b",
1049
- "mtime": 1773848033913.5806
1050
- },
1051
- "test-projects/fastapi-app/app/main.py": {
1052
- "hash": "19a812c3ee021a6e96bdf3aee822ac95",
1053
- "mtime": 1773848130927.9304
1054
- },
1055
- "test-projects/fastapi-app/app/models.py": {
1056
- "hash": "a246bcc28f34e2ea398115358f06ec1e",
1057
- "mtime": 1773847967580.6582
1058
- },
1059
- "test-projects/fastapi-app/app/routers/auth.py": {
1060
- "hash": "7f51218c007b8f521b149f0801d8b145",
1061
- "mtime": 1773848061086.9585
1062
- },
1063
- "test-projects/fastapi-app/app/routers/posts.py": {
1064
- "hash": "f8db1a2d760c7e611af7c610dbab4162",
1065
- "mtime": 1773848113520.6882
1066
- },
1067
- "test-projects/fastapi-app/app/schemas.py": {
1068
- "hash": "4049102356e992bc2c4442d589cd2ced",
1069
- "mtime": 1773848005561.1863
1070
- },
1071
- "test-projects/flask-app/README.md": {
1072
- "hash": "071fe06a414db5cf64f67408324178eb",
1073
- "mtime": 1773848514509.6038
1074
- },
1075
- "test-projects/flask-app/ai/ai_context.md": {
1076
- "hash": "cf729a56ec41c185778ce65866e495a7",
1077
- "mtime": 1773848536627.0344
1078
- },
1079
- "test-projects/flask-app/ai/ai_rules.md": {
1080
- "hash": "e3b8a915d60578c37888d5589cc8a8b4",
1081
- "mtime": 1773848536627.0344
1082
- },
1083
- "test-projects/flask-app/ai/architecture.md": {
1084
- "hash": "5436c01ae8a7ed86df7421cf06c4a2ea",
1085
- "mtime": 1773848536621.0344
1086
- },
1087
- "test-projects/flask-app/ai/cache.json": {
1088
- "hash": "452dea2cf3172e79ede6d8bd57f1d7d6",
1089
- "mtime": 1773848544258.1821
1090
- },
1091
- "test-projects/flask-app/ai/context/features/app.json": {
1092
- "hash": "1d70801cc444a0b89b9d8b821d3bd9fa",
1093
- "mtime": 1773848544260.1821
1094
- },
1095
- "test-projects/flask-app/ai/context/flows/routes.json": {
1096
- "hash": "5ddf9a5c298ea6a4642971022d75d3a3",
1097
- "mtime": 1773848544260.1821
1098
- },
1099
- "test-projects/flask-app/ai/conventions.md": {
1100
- "hash": "d11ac646a8916e3c6cc376f610368317",
1101
- "mtime": 1773848536623.0344
1102
- },
1103
- "test-projects/flask-app/ai/dependencies.json": {
1104
- "hash": "a1df2bb705e3dfc1d871a0f4b5599918",
1105
- "mtime": 1773848536626.0344
1106
- },
1107
- "test-projects/flask-app/ai/entrypoints.md": {
1108
- "hash": "34c8965a66697d9f1d428bb0904f5d8d",
1109
- "mtime": 1773848536623.0344
1110
- },
1111
- "test-projects/flask-app/ai/files.json": {
1112
- "hash": "fbef1c8bb7bf176d0b15f8e232cefee9",
1113
- "mtime": 1773854929729.0337
1114
- },
1115
- "test-projects/flask-app/ai/graph/module-graph.json": {
1116
- "hash": "02a02b0cbc9e18fbb1a22a7ab03e332d",
1117
- "mtime": 1773848544249.182
1118
- },
1119
- "test-projects/flask-app/ai/graph/symbol-graph.json": {
1120
- "hash": "c6510825e8319f971555c34d69b398f8",
1121
- "mtime": 1773848544256.1821
1122
- },
1123
- "test-projects/flask-app/ai/graph/symbol-references.json": {
1124
- "hash": "50d531c7ec9c163df25e05dbeda9d3dc",
1125
- "mtime": 1773848544256.1821
1126
- },
1127
- "test-projects/flask-app/ai/index-state.json": {
1128
- "hash": "e6134693beb94e4a0ffec54a51e056d3",
1129
- "mtime": 1773854929729.0337
1130
- },
1131
- "test-projects/flask-app/ai/modules.json": {
1132
- "hash": "38c0bc646d910f72304c2f0c0a7dc547",
1133
- "mtime": 1773854832384.2986
1134
- },
1135
- "test-projects/flask-app/ai/project.json": {
1136
- "hash": "cef4e1e0702fd7503ab8c8e1461a5eed",
1137
- "mtime": 1773848536629.0347
1138
- },
1139
- "test-projects/flask-app/ai/repo-map.json": {
1140
- "hash": "3fa4e569753bb24a62a351af4e536168",
1141
- "mtime": 1773848544247.182
1142
- },
1143
- "test-projects/flask-app/ai/repo_map.json": {
1144
- "hash": "b1e8e7df6742fdc1b4856421917a1aea",
1145
- "mtime": 1773848536620.0344
1146
- },
1147
- "test-projects/flask-app/ai/repo_map.md": {
1148
- "hash": "00b39c99697e3a192ac9582c29acbd0c",
1149
- "mtime": 1773848536620.0344
1150
- },
1151
- "test-projects/flask-app/ai/schema.json": {
1152
- "hash": "b242479cd54da3a1069f9a72d4087693",
1153
- "mtime": 1773848536629.0347
1154
- },
1155
- "test-projects/flask-app/ai/summary.md": {
1156
- "hash": "6e8e4144d042cab6e79a4263a02e8c8e",
1157
- "mtime": 1773848536620.0344
1158
- },
1159
- "test-projects/flask-app/ai/symbols.json": {
1160
- "hash": "303ff8a7e834966302a3ef8665c10efa",
1161
- "mtime": 1773848536625.0344
1162
- },
1163
- "test-projects/flask-app/ai/tech_stack.md": {
1164
- "hash": "f5d7720e17390f42b9f81c4b3c0d1bdf",
1165
- "mtime": 1773848536622.0344
1166
- },
1167
- "test-projects/flask-app/ai/tools.json": {
1168
- "hash": "b1356e52c74e9b3b6a0d397b790a4968",
1169
- "mtime": 1773848536629.0347
1170
- },
1171
- "test-projects/flask-app/app/__init__.py": {
1172
- "hash": "135b544eb6253b213ebe2931693d7e81",
1173
- "mtime": 1773848317056.531
1174
- },
1175
- "test-projects/flask-app/app/api/__init__.py": {
1176
- "hash": "9ef74422b71d8e4eb23da44a55746762",
1177
- "mtime": 1773848498343.286
1178
- },
1179
- "test-projects/flask-app/app/api/routes.py": {
1180
- "hash": "5b5e6a14a1d593e67abd927391313750",
1181
- "mtime": 1773848496063.241
1182
- },
1183
- "test-projects/flask-app/app/auth/__init__.py": {
1184
- "hash": "abf9b359f664fe1d79755ece5091a5da",
1185
- "mtime": 1773848426716.8467
1186
- },
1187
- "test-projects/flask-app/app/auth/forms.py": {
1188
- "hash": "89d621d726eb0aab9e5395e5d5785b5e",
1189
- "mtime": 1773848423372.7783
1190
- },
1191
- "test-projects/flask-app/app/auth/routes.py": {
1192
- "hash": "786f87aafcd30ab8c036f77c1f28a994",
1193
- "mtime": 1773848412451.5537
1194
- },
1195
- "test-projects/flask-app/app/blog/__init__.py": {
1196
- "hash": "3aadb4a0fa81a23f19574d14d8f7b0b6",
1197
- "mtime": 1773848463715.5967
1198
- },
1199
- "test-projects/flask-app/app/blog/forms.py": {
1200
- "hash": "f5bb29b358afcf2c49a9e43f6a4cade0",
1201
- "mtime": 1773848462522.5728
1202
- },
1203
- "test-projects/flask-app/app/blog/routes.py": {
1204
- "hash": "e5c182cbc60aa3b179790f48608340a7",
1205
- "mtime": 1773848455560.4326
1206
- },
1207
- "test-projects/flask-app/app/main/__init__.py": {
1208
- "hash": "2ec8b9aaec26dc4cadc268b03d26644a",
1209
- "mtime": 1773848389471.0767
1210
- },
1211
- "test-projects/flask-app/app/main/routes.py": {
1212
- "hash": "11851d841b8f782e855c201064be0932",
1213
- "mtime": 1773848388172.0493
1214
- },
1215
- "test-projects/flask-app/app/models.py": {
1216
- "hash": "80684c0f3c472100220ebf3265dbdd2a",
1217
- "mtime": 1773848367634.6174
1218
- },
1219
- "test-projects/flask-app/config.py": {
1220
- "hash": "f955d56ff51f4f024d586ba42f1c6320",
1221
- "mtime": 1773848326297.732
1222
- },
1223
- "test-projects/laravel-app/README.md": {
1224
- "hash": "63be1b116847a4eacdb95be2aeab72c2",
1225
- "mtime": 1773847786371.1416
1226
- },
1227
- "test-projects/laravel-app/ai/ai_context.md": {
1228
- "hash": "15ab5feae2638cabf3a2685cfe7f8ee4",
1229
- "mtime": 1773854736818.5432
1230
- },
1231
- "test-projects/laravel-app/ai/ai_rules.md": {
1232
- "hash": "2e09780ab0f6bb945f7401219fe243d4",
1233
- "mtime": 1773854736818.5432
1234
- },
1235
- "test-projects/laravel-app/ai/architecture.md": {
1236
- "hash": "6c860fc433c730671d752ddf9f58cbca",
1237
- "mtime": 1773854736813.5432
1238
- },
1239
- "test-projects/laravel-app/ai/cache.json": {
1240
- "hash": "b753a30235e999795838c0d5cb154c66",
1241
- "mtime": 1773854929730.0337
1242
- },
1243
- "test-projects/laravel-app/ai/context/features/app.json": {
1244
- "hash": "48ed0274a6a81b1c50955d402b3c2695",
1245
- "mtime": 1773854736911.5452
1246
- },
1247
- "test-projects/laravel-app/ai/context/flows/category.json": {
1248
- "hash": "437bcbd406d6d1288bd16213b6be4767",
1249
- "mtime": 1773854736911.5452
1250
- },
1251
- "test-projects/laravel-app/ai/context/flows/comment.json": {
1252
- "hash": "c2ebad5e63035bae2fde39e9f863e9cb",
1253
- "mtime": 1773854736911.5452
1254
- },
1255
- "test-projects/laravel-app/ai/context/flows/post.json": {
1256
- "hash": "f704d1cdb7823ec237964b578e9935b7",
1257
- "mtime": 1773854736911.5452
1258
- },
1259
- "test-projects/laravel-app/ai/context/flows/unnamed.json": {
1260
- "hash": "0d3ba6968f125bdddd28f7b908d4c9e0",
1261
- "mtime": 1773854736911.5452
1262
- },
1263
- "test-projects/laravel-app/ai/conventions.md": {
1264
- "hash": "d11ac646a8916e3c6cc376f610368317",
1265
- "mtime": 1773854736815.5432
1266
- },
1267
- "test-projects/laravel-app/ai/dependencies.json": {
1268
- "hash": "038f80a99cbcc45991786b645398758e",
1269
- "mtime": 1773854736817.5432
1270
- },
1271
- "test-projects/laravel-app/ai/entrypoints.md": {
1272
- "hash": "34c8965a66697d9f1d428bb0904f5d8d",
1273
- "mtime": 1773854736814.5432
1274
- },
1275
- "test-projects/laravel-app/ai/files.json": {
1276
- "hash": "17c7ffe15934f3eb665046045dd500da",
1277
- "mtime": 1773854929730.0337
1278
- },
1279
- "test-projects/laravel-app/ai/graph/module-graph.json": {
1280
- "hash": "08886f9cf775a3e58668f9c166b6f1ae",
1281
- "mtime": 1773854736900.545
1282
- },
1283
- "test-projects/laravel-app/ai/graph/symbol-graph.json": {
1284
- "hash": "79a11e66d1c9ebdbec716c31b9eb11db",
1285
- "mtime": 1773854929730.0337
1286
- },
1287
- "test-projects/laravel-app/ai/graph/symbol-references.json": {
1288
- "hash": "99914b932bd37a50b983c5e7c90ae93b",
1289
- "mtime": 1773854929730.0337
1290
- },
1291
- "test-projects/laravel-app/ai/index-state.json": {
1292
- "hash": "e7da95c458fbcbf04c7d84fc58575b42",
1293
- "mtime": 1773854929730.0337
1294
- },
1295
- "test-projects/laravel-app/ai/modules.json": {
1296
- "hash": "2a7554702c3a5bcd823e4c634f012bb7",
1297
- "mtime": 1773854832519.301
1298
- },
1299
- "test-projects/laravel-app/ai/project.json": {
1300
- "hash": "4f84fe1080f4b75b4285e8c8e1bcca0a",
1301
- "mtime": 1773854929730.0337
1302
- },
1303
- "test-projects/laravel-app/ai/repo-map.json": {
1304
- "hash": "e3eef6b0e39948ede51b992e3fd98afb",
1305
- "mtime": 1773854929730.0337
1306
- },
1307
- "test-projects/laravel-app/ai/repo_map.json": {
1308
- "hash": "fbfd40643cc587d96742b7d25f11a4e8",
1309
- "mtime": 1773854929730.0337
1310
- },
1311
- "test-projects/laravel-app/ai/repo_map.md": {
1312
- "hash": "9ee5fd15680ac4effd4398914d3b698c",
1313
- "mtime": 1773854736809.5432
1314
- },
1315
- "test-projects/laravel-app/ai/schema.json": {
1316
- "hash": "827bc0de2e5f071098e8ec8a65b30211",
1317
- "mtime": 1773854929730.0337
1318
- },
1319
- "test-projects/laravel-app/ai/summary.md": {
1320
- "hash": "9dbbf46bbf4b35c92e5294250b50a54b",
1321
- "mtime": 1773854736812.5432
1322
- },
1323
- "test-projects/laravel-app/ai/symbols.json": {
1324
- "hash": "6edde050dc3089a9e15bf3934226a7c4",
1325
- "mtime": 1773854929731.0337
1326
- },
1327
- "test-projects/laravel-app/ai/tech_stack.md": {
1328
- "hash": "fd84b9bddb9a4ced339df8f8eec6abe1",
1329
- "mtime": 1773854736814.5432
1330
- },
1331
- "test-projects/laravel-app/ai/tools.json": {
1332
- "hash": "b1356e52c74e9b3b6a0d397b790a4968",
1333
- "mtime": 1773854736821.5435
1334
- },
1335
- "test-projects/laravel-app/app/Http/Controllers/Api/CategoryController.php": {
1336
- "hash": "eae63919c19317d673da75fae862ac1b",
1337
- "mtime": 1773847799280.3206
1338
- },
1339
- "test-projects/laravel-app/app/Http/Controllers/Api/CommentController.php": {
1340
- "hash": "6dac8cef07f04ac0b0f20d76f4ca8348",
1341
- "mtime": 1773847807128.4294
1342
- },
1343
- "test-projects/laravel-app/app/Http/Controllers/Api/PostController.php": {
1344
- "hash": "105dfc4a6f054cd19e4e1b14453c02ac",
1345
- "mtime": 1773847736086.444
1346
- },
1347
- "test-projects/laravel-app/app/Http/Controllers/Controller.php": {
1348
- "hash": "42517d7dc7e3d0d3045b06ed842b565e",
1349
- "mtime": 1773847748755.6199
1350
- },
1351
- "test-projects/laravel-app/app/Models/Category.php": {
1352
- "hash": "8982d52ddaad742bd03abfe7ee89cf5c",
1353
- "mtime": 1773847700804.955
1354
- },
1355
- "test-projects/laravel-app/app/Models/Comment.php": {
1356
- "hash": "9efa05310b8bc1ca407c4db0aaf191f5",
1357
- "mtime": 1773847664829.4568
1358
- },
1359
- "test-projects/laravel-app/app/Models/Post.php": {
1360
- "hash": "235a49b0fb8acb6d27ad0a76f9e67e46",
1361
- "mtime": 1773847648272.2275
1362
- },
1363
- "test-projects/laravel-app/app/Models/User.php": {
1364
- "hash": "20cc08b187ba186031da18582a03c9a9",
1365
- "mtime": 1773847685326.7407
1366
- },
1367
- "test-projects/laravel-app/bootstrap/app.php": {
1368
- "hash": "9ce9c023ef044aa0246244f18202bd9e",
1369
- "mtime": 1773847620203.8389
1370
- },
1371
- "test-projects/laravel-app/composer.json": {
1372
- "hash": "1fd162ecf419a1aa7a24e660429335ee",
1373
- "mtime": 1773847763470.8237
1374
- },
1375
- "test-projects/laravel-app/routes/api.php": {
1376
- "hash": "2ce87617f3fee458e3e5fda64a536495",
1377
- "mtime": 1773847757081.7354
1378
- },
1379
- "test-projects/nestjs-backend/ai/ai_context.md": {
1380
- "hash": "01e94675a8faa5d598f2782c09e3d5ad",
1381
- "mtime": 1773854807532.8474
1382
- },
1383
- "test-projects/nestjs-backend/ai/ai_rules.md": {
1384
- "hash": "0056c2b3f1d212bd870734924f577d09",
1385
- "mtime": 1773854807531.8474
1386
- },
1387
- "test-projects/nestjs-backend/ai/architecture.md": {
1388
- "hash": "b763c79531f89caf3a6731d8c6b4f157",
1389
- "mtime": 1773854807525.8474
1390
- },
1391
- "test-projects/nestjs-backend/ai/cache.json": {
1392
- "hash": "26c8ef59478d363a106dfd15b861e043",
1393
- "mtime": 1773854929731.0337
1394
- },
1395
- "test-projects/nestjs-backend/ai/context/features/src.json": {
1396
- "hash": "e62d7f714439c64f0a0051436687b023",
1397
- "mtime": 1773854807614.8489
1398
- },
1399
- "test-projects/nestjs-backend/ai/context/flows/auth..json": {
1400
- "hash": "064519d0be7978f42c408cf2f99edaf9",
1401
- "mtime": 1773854929731.0337
1402
- },
1403
- "test-projects/nestjs-backend/ai/context/flows/auth.controller.json": {
1404
- "hash": "a61ee04c482158f50919e84978222248",
1405
- "mtime": 1773854929731.0337
1406
- },
1407
- "test-projects/nestjs-backend/ai/context/flows/auth.json": {
1408
- "hash": "064519d0be7978f42c408cf2f99edaf9",
1409
- "mtime": 1773854807615.8489
1410
- },
1411
- "test-projects/nestjs-backend/ai/context/flows/users..json": {
1412
- "hash": "743cdda74793f8b1d4fac2656267c24b",
1413
- "mtime": 1773854929731.0337
1414
- },
1415
- "test-projects/nestjs-backend/ai/context/flows/users.controller.json": {
1416
- "hash": "a797f6c268b0619dc79a49e34ed9dc0f",
1417
- "mtime": 1773854929731.0337
1418
- },
1419
- "test-projects/nestjs-backend/ai/context/flows/users.json": {
1420
- "hash": "743cdda74793f8b1d4fac2656267c24b",
1421
- "mtime": 1773854807615.8489
1422
- },
1423
- "test-projects/nestjs-backend/ai/conventions.md": {
1424
- "hash": "9924468f87cfd5d2328fa48737aac075",
1425
- "mtime": 1773854807528.8474
1426
- },
1427
- "test-projects/nestjs-backend/ai/dependencies.json": {
1428
- "hash": "02d90ce28c41920d2591c9a29255813d",
1429
- "mtime": 1773854929731.0337
1430
- },
1431
- "test-projects/nestjs-backend/ai/entrypoints.md": {
1432
- "hash": "31bc6c36186b7db7764086f994a34fcf",
1433
- "mtime": 1773854807527.8474
1434
- },
1435
- "test-projects/nestjs-backend/ai/files.json": {
1436
- "hash": "6fc0e5f9f769544e4d28bbd29197b2f5",
1437
- "mtime": 1773854929731.0337
1438
- },
1439
- "test-projects/nestjs-backend/ai/graph/module-graph.json": {
1440
- "hash": "0e4d69958d08b9aaf402549b2cfe2b3a",
1441
- "mtime": 1773854807603.8489
1442
- },
1443
- "test-projects/nestjs-backend/ai/graph/symbol-graph.json": {
1444
- "hash": "0b661a46325dfe546710ef24eab5bd4f",
1445
- "mtime": 1773854929731.0337
1446
- },
1447
- "test-projects/nestjs-backend/ai/graph/symbol-references.json": {
1448
- "hash": "afadcb8711e7e5322742b99da7ec3e50",
1449
- "mtime": 1773854929731.0337
1450
- },
1451
- "test-projects/nestjs-backend/ai/index-state.json": {
1452
- "hash": "0a1cb9edc3311943232bc10889d43ba0",
1453
- "mtime": 1773854832725.3047
1454
- },
1455
- "test-projects/nestjs-backend/ai/modules.json": {
1456
- "hash": "11513775b7ba2c22e59f9bd915ea33fa",
1457
- "mtime": 1773854832659.3035
1458
- },
1459
- "test-projects/nestjs-backend/ai/project.json": {
1460
- "hash": "c6b3d408145afd2fd35063120fd6d922",
1461
- "mtime": 1773854929731.0337
1462
- },
1463
- "test-projects/nestjs-backend/ai/repo-map.json": {
1464
- "hash": "3b95375593b57740d1511afecbc9ec06",
1465
- "mtime": 1773854929731.0337
1466
- },
1467
- "test-projects/nestjs-backend/ai/repo_map.json": {
1468
- "hash": "5286055a82f31ff2a9e6091b4299928b",
1469
- "mtime": 1773854929731.0337
1470
- },
1471
- "test-projects/nestjs-backend/ai/repo_map.md": {
1472
- "hash": "d3b93db63ba7b92c1bcba98b7682b487",
1473
- "mtime": 1773854807523.8474
1474
- },
1475
- "test-projects/nestjs-backend/ai/schema.json": {
1476
- "hash": "f39eaae38116c54da7659e845e463132",
1477
- "mtime": 1773854929731.0337
1478
- },
1479
- "test-projects/nestjs-backend/ai/summary.md": {
1480
- "hash": "c97180815314cb04e69623f705703641",
1481
- "mtime": 1773854807524.8474
1482
- },
1483
- "test-projects/nestjs-backend/ai/symbols.json": {
1484
- "hash": "86f0962de99584aca04f8773850703ba",
1485
- "mtime": 1773854807529.8474
1486
- },
1487
- "test-projects/nestjs-backend/ai/tech_stack.md": {
1488
- "hash": "a84eb022eb8e5959365181abc81e5f9d",
1489
- "mtime": 1773854807526.8474
1490
- },
1491
- "test-projects/nestjs-backend/ai/tools.json": {
1492
- "hash": "b1356e52c74e9b3b6a0d397b790a4968",
1493
- "mtime": 1773854807534.8474
1494
- },
1495
- "test-projects/nestjs-backend/package.json": {
1496
- "hash": "54188023d3f4898db4ed5ecb0963ad7c",
1497
- "mtime": 1773776957019.264
1498
- },
1499
- "test-projects/nestjs-backend/src/app.module.ts": {
1500
- "hash": "340f55f1f816bff231e0d7cceb640a6a",
1501
- "mtime": 1773777098469.8062
1502
- },
1503
- "test-projects/nestjs-backend/src/auth/auth.controller.ts": {
1504
- "hash": "042f9828f736d2cd17f81a9f38e92902",
1505
- "mtime": 1773776992110.6333
1506
- },
1507
- "test-projects/nestjs-backend/src/auth/auth.module.ts": {
1508
- "hash": "d77f0da16ab8259e61017e585aa84ba1",
1509
- "mtime": 1773776981771.5234
1510
- },
1511
- "test-projects/nestjs-backend/src/auth/auth.service.ts": {
1512
- "hash": "82d1c6ef4273438c42f5ec7a6d11af7e",
1513
- "mtime": 1773777003294.753
1514
- },
1515
- "test-projects/nestjs-backend/src/auth/dto/login.dto.ts": {
1516
- "hash": "ea30ef087078e1172bffc80a370ebff3",
1517
- "mtime": 1773777024191.979
1518
- },
1519
- "test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts": {
1520
- "hash": "0f76815e6d72c4b1d3324713b6c09853",
1521
- "mtime": 1773777033163.077
1522
- },
1523
- "test-projects/nestjs-backend/src/main.ts": {
1524
- "hash": "37685b56941c1e865638bae7fd76d81c",
1525
- "mtime": 1773777107555.9097
1526
- },
1527
- "test-projects/nestjs-backend/src/users/users.controller.ts": {
1528
- "hash": "41b4cfa3872766fb0578a901abd294fa",
1529
- "mtime": 1773777065483.4343
1530
- },
1531
- "test-projects/nestjs-backend/src/users/users.module.ts": {
1532
- "hash": "f3eb2901994d3dcf77b5bb6766f937aa",
1533
- "mtime": 1773777054886.3164
1534
- },
1535
- "test-projects/nestjs-backend/src/users/users.service.ts": {
1536
- "hash": "34c037f935826f26a9f72d53774a3223",
1537
- "mtime": 1773777078186.5767
1538
- },
1539
- "test-projects/nestjs-backend/tsconfig.json": {
1540
- "hash": "f0902e207501d022c8048ac457251ecc",
1541
- "mtime": 1773777131755.1877
1542
- },
1543
- "test-projects/python-cli/__init__.py": {
1544
- "hash": "b8e919564af9b6e38c79d449bb77a7b5",
1545
- "mtime": 1773777152897.4336
1546
- },
1547
- "test-projects/python-cli/ai/ai_context.md": {
1548
- "hash": "ed58b5050b4b428a2dc5ddde0d8f0784",
1549
- "mtime": 1773796492511.405
1550
- },
1551
- "test-projects/python-cli/ai/ai_rules.md": {
1552
- "hash": "497d2aaa36fc25e1a1d43ad93a5e3631",
1553
- "mtime": 1773796492510.405
1554
- },
1555
- "test-projects/python-cli/ai/architecture.md": {
1556
- "hash": "96f6c50d3d91f5ac670473220a4aa87e",
1557
- "mtime": 1773796492506.4048
1558
- },
1559
- "test-projects/python-cli/ai/cache.json": {
1560
- "hash": "fa069f54b96796535e6acc9b3238696b",
1561
- "mtime": 1773854929732.0337
1562
- },
1563
- "test-projects/python-cli/ai/context/features/cli.json": {
1564
- "hash": "db233eedf90a4de1cbb42f260b4ec159",
1565
- "mtime": 1773796517557.7957
1566
- },
1567
- "test-projects/python-cli/ai/context/flows/add_.json": {
1568
- "hash": "8fd1b0ccd628661384b1982917527e10",
1569
- "mtime": 1773796517557.7957
1570
- },
1571
- "test-projects/python-cli/ai/context/flows/list_.json": {
1572
- "hash": "2307454625174d3b69e727acf6e10261",
1573
- "mtime": 1773796517557.7957
1574
- },
1575
- "test-projects/python-cli/ai/context/flows/remove_.json": {
1576
- "hash": "12bece7cdabce999d2430fee0b316b3b",
1577
- "mtime": 1773796517557.7957
1578
- },
1579
- "test-projects/python-cli/ai/conventions.md": {
1580
- "hash": "9c37d280c1cab6899447a58aa03b0f44",
1581
- "mtime": 1773796492508.4048
1582
- },
1583
- "test-projects/python-cli/ai/dependencies.json": {
1584
- "hash": "b1333fe58b2dddfa6ecb8c53292f442f",
1585
- "mtime": 1773796492509.405
1586
- },
1587
- "test-projects/python-cli/ai/entrypoints.md": {
1588
- "hash": "34c8965a66697d9f1d428bb0904f5d8d",
1589
- "mtime": 1773796492507.4048
1590
- },
1591
- "test-projects/python-cli/ai/files.json": {
1592
- "hash": "c82d9d1331bd255fc43be845aa368725",
1593
- "mtime": 1773854929732.0337
1594
- },
1595
- "test-projects/python-cli/ai/graph/knowledge-graph.json": {
1596
- "hash": "9641492007f1599955e6db2b90705b53",
1597
- "mtime": 1773796549477.293
1598
- },
1599
- "test-projects/python-cli/ai/graph/module-graph.json": {
1600
- "hash": "54539a6536c57542d107b5e587852d21",
1601
- "mtime": 1773796517549.7954
1602
- },
1603
- "test-projects/python-cli/ai/graph/symbol-graph.json": {
1604
- "hash": "d142e1a1a55b23200fe02b7aee7472df",
1605
- "mtime": 1773796517553.7954
1606
- },
1607
- "test-projects/python-cli/ai/graph/symbol-references.json": {
1608
- "hash": "de6f7fd1e3fb7cc19d8ec0efd2ac8d57",
1609
- "mtime": 1773796517554.7957
1610
- },
1611
- "test-projects/python-cli/ai/index-state.json": {
1612
- "hash": "853666bdf0060524fb4bebdc2afae5b0",
1613
- "mtime": 1773854832868.3074
1614
- },
1615
- "test-projects/python-cli/ai/modules.json": {
1616
- "hash": "366ccb4be2fcb4b7098548e68cee7a06",
1617
- "mtime": 1773854832804.3062
1618
- },
1619
- "test-projects/python-cli/ai/project.json": {
1620
- "hash": "0511f31fdb8944b75813100c96738f88",
1621
- "mtime": 1773796492513.405
1622
- },
1623
- "test-projects/python-cli/ai/repo-map.json": {
1624
- "hash": "d69f73250cea151ebef88e78f50ae286",
1625
- "mtime": 1773854929732.0337
1626
- },
1627
- "test-projects/python-cli/ai/repo_map.json": {
1628
- "hash": "aa9b5cffb4fea856e640d50ae2f843be",
1629
- "mtime": 1773796492505.4048
1630
- },
1631
- "test-projects/python-cli/ai/repo_map.md": {
1632
- "hash": "ef0d7f67520571d71a944a89aed09b85",
1633
- "mtime": 1773796492504.4048
1634
- },
1635
- "test-projects/python-cli/ai/schema.json": {
1636
- "hash": "5f906385bbf15f468465b9b3b4e4cabb",
1637
- "mtime": 1773796492512.405
1638
- },
1639
- "test-projects/python-cli/ai/summary.md": {
1640
- "hash": "ce45f19fa9b88934464c679faa8bb5e1",
1641
- "mtime": 1773796492505.4048
1642
- },
1643
- "test-projects/python-cli/ai/symbols.json": {
1644
- "hash": "cd04c4c359d5fdffb6f49d080ee81749",
1645
- "mtime": 1773796492509.405
1646
- },
1647
- "test-projects/python-cli/ai/tech_stack.md": {
1648
- "hash": "549e166f1ac035b5c54f522a1962321e",
1649
- "mtime": 1773796492507.4048
1650
- },
1651
- "test-projects/python-cli/ai/tools.json": {
1652
- "hash": "b1356e52c74e9b3b6a0d397b790a4968",
1653
- "mtime": 1773796492513.405
1654
- },
1655
- "test-projects/python-cli/cli/__init__.py": {
1656
- "hash": "a3b6d5054e9628836636cf4d6927e33a",
1657
- "mtime": 1773777227193.3157
1658
- },
1659
- "test-projects/python-cli/cli/add_command.py": {
1660
- "hash": "d9b48d790c714aebf7b29db0f8aa3464",
1661
- "mtime": 1773777196493.9478
1662
- },
1663
- "test-projects/python-cli/cli/list_command.py": {
1664
- "hash": "fd7ca8830013f013e16afd191e6c5c75",
1665
- "mtime": 1773777202889.024
1666
- },
1667
- "test-projects/python-cli/cli/remove_command.py": {
1668
- "hash": "1209f465970ad86ef87ed6c0409cef50",
1669
- "mtime": 1773777208836.0952
1670
- },
1671
- "test-projects/python-cli/main.py": {
1672
- "hash": "8e7d98c3b644a2b27f760c017100e886",
1673
- "mtime": 1773777186036.8235
1674
- },
1675
- "test-projects/python-cli/models/__init__.py": {
1676
- "hash": "a99db8f336d72b5c5700545705baf7de",
1677
- "mtime": 1773777266541.7935
1678
- },
1679
- "test-projects/python-cli/models/task.py": {
1680
- "hash": "95274739cbb686a2f8c661836623c692",
1681
- "mtime": 1773777234068.3987
1682
- },
1683
- "test-projects/python-cli/models/task_repository.py": {
1684
- "hash": "68215671f3b74e5dbd6fdc06671b08b1",
1685
- "mtime": 1773777261367.7302
1686
- },
1687
- "test-projects/rails-app/README.md": {
1688
- "hash": "3ef44ec9e999fbbf4cc8576bd9996e24",
1689
- "mtime": 1773853678950.926
1690
- },
1691
- "test-projects/rails-app/ai/ai_context.md": {
1692
- "hash": "2b88de40fafdef3feb62eb1bdc9d1450",
1693
- "mtime": 1773854723408.2922
1694
- },
1695
- "test-projects/rails-app/ai/ai_rules.md": {
1696
- "hash": "b34350fb34dabf766cc8425b6a5c32cb",
1697
- "mtime": 1773854723408.2922
1698
- },
1699
- "test-projects/rails-app/ai/architecture.md": {
1700
- "hash": "c2692ffcacf44f02742598328eaa2329",
1701
- "mtime": 1773854723402.2922
1702
- },
1703
- "test-projects/rails-app/ai/cache.json": {
1704
- "hash": "e4d6d1eda920d24846bd61736d855d14",
1705
- "mtime": 1773854929732.0337
1706
- },
1707
- "test-projects/rails-app/ai/context/features/app.json": {
1708
- "hash": "3bf2bb6ca87e997141474e32fa2986fa",
1709
- "mtime": 1773854723495.294
1710
- },
1711
- "test-projects/rails-app/ai/context/features/config.json": {
1712
- "hash": "db2ab595087aba40287ee15c6d79552c",
1713
- "mtime": 1773854723495.294
1714
- },
1715
- "test-projects/rails-app/ai/context/flows/application.json": {
1716
- "hash": "b796ad3fa8bca08e15dcbade1439944c",
1717
- "mtime": 1773854723495.294
1718
- },
1719
- "test-projects/rails-app/ai/context/flows/application_.json": {
1720
- "hash": "b796ad3fa8bca08e15dcbade1439944c",
1721
- "mtime": 1773854929732.0337
1722
- },
1723
- "test-projects/rails-app/ai/context/flows/comments.json": {
1724
- "hash": "d90ee6034c82ea59410cc3da7471901d",
1725
- "mtime": 1773854723495.294
1726
- },
1727
- "test-projects/rails-app/ai/context/flows/comments_.json": {
1728
- "hash": "d90ee6034c82ea59410cc3da7471901d",
1729
- "mtime": 1773854929732.0337
1730
- },
1731
- "test-projects/rails-app/ai/context/flows/posts.json": {
1732
- "hash": "a4142ffe2c2908069728bfd86d73d8a3",
1733
- "mtime": 1773854723495.294
1734
- },
1735
- "test-projects/rails-app/ai/context/flows/posts_.json": {
1736
- "hash": "a4142ffe2c2908069728bfd86d73d8a3",
1737
- "mtime": 1773854929732.0337
1738
- },
1739
- "test-projects/rails-app/ai/context/flows/routes.json": {
1740
- "hash": "c63b4ddeccd3090f084d1e090cdc2cad",
1741
- "mtime": 1773854723495.294
1742
- },
1743
- "test-projects/rails-app/ai/context/flows/users.json": {
1744
- "hash": "6ec4411b509c8d1d063bd0228a9fc186",
1745
- "mtime": 1773854723495.294
1746
- },
1747
- "test-projects/rails-app/ai/context/flows/users_.json": {
1748
- "hash": "6ec4411b509c8d1d063bd0228a9fc186",
1749
- "mtime": 1773854929732.0337
1750
- },
1751
- "test-projects/rails-app/ai/conventions.md": {
1752
- "hash": "271252881dc9d70018eda35db35449ef",
1753
- "mtime": 1773854723405.2922
1754
- },
1755
- "test-projects/rails-app/ai/dependencies.json": {
1756
- "hash": "038f80a99cbcc45991786b645398758e",
1757
- "mtime": 1773854723407.2922
1758
- },
1759
- "test-projects/rails-app/ai/entrypoints.md": {
1760
- "hash": "34c8965a66697d9f1d428bb0904f5d8d",
1761
- "mtime": 1773854723404.2922
1762
- },
1763
- "test-projects/rails-app/ai/files.json": {
1764
- "hash": "8b503e51fdc90b73d0c02e481e65ab3f",
1765
- "mtime": 1773854929732.0337
1766
- },
1767
- "test-projects/rails-app/ai/graph/knowledge-graph.json": {
1768
- "hash": "69c2e2b44738fe82fa46d5c6da082634",
1769
- "mtime": 1773854929732.0337
1770
- },
1771
- "test-projects/rails-app/ai/graph/module-graph.json": {
1772
- "hash": "1ec6b5cded4704395df625458db3360e",
1773
- "mtime": 1773854723485.2937
1774
- },
1775
- "test-projects/rails-app/ai/graph/symbol-graph.json": {
1776
- "hash": "79a11e66d1c9ebdbec716c31b9eb11db",
1777
- "mtime": 1773854929732.0337
1778
- },
1779
- "test-projects/rails-app/ai/graph/symbol-references.json": {
1780
- "hash": "99914b932bd37a50b983c5e7c90ae93b",
1781
- "mtime": 1773854723491.294
1782
- },
1783
- "test-projects/rails-app/ai/index-state.json": {
1784
- "hash": "7ec666d7977235df3b8f143c2877d1ca",
1785
- "mtime": 1773854929733.0337
1786
- },
1787
- "test-projects/rails-app/ai/modules.json": {
1788
- "hash": "b86162ee33ceced7d087170aeb03bae5",
1789
- "mtime": 1773854832947.3088
1790
- },
1791
- "test-projects/rails-app/ai/project.json": {
1792
- "hash": "8320f4be11fc7ac2d8a77f01e2fb1bf1",
1793
- "mtime": 1773854929733.0337
1794
- },
1795
- "test-projects/rails-app/ai/repo-map.json": {
1796
- "hash": "a02197cb10fa510fc230f7f0f480028e",
1797
- "mtime": 1773854929733.0337
1798
- },
1799
- "test-projects/rails-app/ai/repo_map.json": {
1800
- "hash": "e1a4828e985e97f765bc36bd71b14323",
1801
- "mtime": 1773854929733.0337
1802
- },
1803
- "test-projects/rails-app/ai/repo_map.md": {
1804
- "hash": "6be292d9062029469958f996ab4b05cc",
1805
- "mtime": 1773854723400.2922
1806
- },
1807
- "test-projects/rails-app/ai/schema.json": {
1808
- "hash": "aa050d62e0686ae90b5f60ed7969e3b9",
1809
- "mtime": 1773854929733.0337
1810
- },
1811
- "test-projects/rails-app/ai/summary.md": {
1812
- "hash": "87c1c31c6bc816e49363f4406c287ed5",
1813
- "mtime": 1773854723401.2922
1814
- },
1815
- "test-projects/rails-app/ai/symbols.json": {
1816
- "hash": "6edde050dc3089a9e15bf3934226a7c4",
1817
- "mtime": 1773854929733.0337
1818
- },
1819
- "test-projects/rails-app/ai/tech_stack.md": {
1820
- "hash": "eaaa6e1eb439a6bd2f1b510ca4f72f32",
1821
- "mtime": 1773854723403.2922
1822
- },
1823
- "test-projects/rails-app/ai/tools.json": {
1824
- "hash": "b1356e52c74e9b3b6a0d397b790a4968",
1825
- "mtime": 1773854723411.2925
1826
- },
1827
- "test-projects/rails-app/app/controllers/api/comments_controller.rb": {
1828
- "hash": "e3b584186544ce602aad545c965bc2a2",
1829
- "mtime": 1773853631697.262
1830
- },
1831
- "test-projects/rails-app/app/controllers/api/posts_controller.rb": {
1832
- "hash": "b1de2ba0bc7c211e7d9835e6774c679b",
1833
- "mtime": 1773853614445.0198
1834
- },
1835
- "test-projects/rails-app/app/controllers/api/users_controller.rb": {
1836
- "hash": "af3c6c69f25f83ba384a677b2f1509ff",
1837
- "mtime": 1773853603625.8682
1838
- },
1839
- "test-projects/rails-app/app/controllers/application_controller.rb": {
1840
- "hash": "6b9ad7e9ab66ff26949ecd46168804fa",
1841
- "mtime": 1773853593748.7297
1842
- },
1843
- "test-projects/rails-app/app/models/comment.rb": {
1844
- "hash": "a4948b0d232cea2dec83a7bea2e94c75",
1845
- "mtime": 1773853587660.6445
1846
- },
1847
- "test-projects/rails-app/app/models/post.rb": {
1848
- "hash": "1a970d5c75d2ffcf23b797d8da78018a",
1849
- "mtime": 1773853581771.5623
1850
- },
1851
- "test-projects/rails-app/app/models/user.rb": {
1852
- "hash": "c31306e81cef27073eabae95167c2fe9",
1853
- "mtime": 1773853574668.463
1854
- },
1855
- "test-projects/rails-app/app/services/post_service.rb": {
1856
- "hash": "8b168ea13fd7490330796c9427513d88",
1857
- "mtime": 1773853657349.6223
1858
- },
1859
- "test-projects/rails-app/app/services/user_service.rb": {
1860
- "hash": "ad982de5fd4fb6d6bf56ae11786085eb",
1861
- "mtime": 1773853643398.4263
1862
- },
1863
- "test-projects/rails-app/config/application.rb": {
1864
- "hash": "6f483e86399f29d8459f5395025fa916",
1865
- "mtime": 1773853559786.255
1866
- },
1867
- "test-projects/rails-app/config/environment.rb": {
1868
- "hash": "591ba809105639f0e8706132656ae120",
1869
- "mtime": 1773853561174.2742
1870
- },
1871
- "test-projects/rails-app/config/routes.rb": {
1872
- "hash": "3b60545df1ace195b9ce879b79b6638f",
1873
- "mtime": 1773853565362.3328
1874
- },
1875
- "test-projects/react-app/ai/ai_context.md": {
1876
- "hash": "4866a92297737fd2e34fabcd82b4974f",
1877
- "mtime": 1773796492594.4062
1878
- },
1879
- "test-projects/react-app/ai/ai_rules.md": {
1880
- "hash": "187ea54135fe8b42b7d38acb8c45ace3",
1881
- "mtime": 1773796492594.4062
1882
- },
1883
- "test-projects/react-app/ai/architecture.md": {
1884
- "hash": "e8662d770fe3c6360a9fc9b20c341266",
1885
- "mtime": 1773796492588.4062
1886
- },
1887
- "test-projects/react-app/ai/cache.json": {
1888
- "hash": "c6773221d9b92c5e78a50d2f87b8f19c",
1889
- "mtime": 1773854929733.0337
1890
- },
1891
- "test-projects/react-app/ai/context/features/src.json": {
1892
- "hash": "2d248c2486297a3db63103469fcb4d7b",
1893
- "mtime": 1773796517636.7969
1894
- },
1895
- "test-projects/react-app/ai/context/flows/UsersPage.json": {
1896
- "hash": "9c80be1645cd69f5ad66d24ba46e8b85",
1897
- "mtime": 1773854929733.0337
1898
- },
1899
- "test-projects/react-app/ai/context/flows/dashboard.json": {
1900
- "hash": "0fbc56b67033373bb6157659552c82d9",
1901
- "mtime": 1773796517636.7969
1902
- },
1903
- "test-projects/react-app/ai/context/flows/login.json": {
1904
- "hash": "9311af687ac6a30df3de225f1e18f879",
1905
- "mtime": 1773796517636.7969
1906
- },
1907
- "test-projects/react-app/ai/context/flows/users.json": {
1908
- "hash": "b5ee48090ea670d1afe36d1fa13500b7",
1909
- "mtime": 1773796517636.7969
1910
- },
1911
- "test-projects/react-app/ai/conventions.md": {
1912
- "hash": "cf36cf015f6c293ebf89ec2c7756bb57",
1913
- "mtime": 1773796492590.4062
1914
- },
1915
- "test-projects/react-app/ai/dependencies.json": {
1916
- "hash": "93a2fe3aec79aca7e1253533cae99f12",
1917
- "mtime": 1773854929733.0337
1918
- },
1919
- "test-projects/react-app/ai/entrypoints.md": {
1920
- "hash": "34c8965a66697d9f1d428bb0904f5d8d",
1921
- "mtime": 1773796492589.4062
1922
- },
1923
- "test-projects/react-app/ai/files.json": {
1924
- "hash": "48ab393f8b9df782ab081eeb57c5147d",
1925
- "mtime": 1773854929733.0337
1926
- },
1927
- "test-projects/react-app/ai/graph/knowledge-graph.json": {
1928
- "hash": "fa879b4bb2bbdf4ade73108745039e7b",
1929
- "mtime": 1773796549543.294
1930
- },
1931
- "test-projects/react-app/ai/graph/module-graph.json": {
1932
- "hash": "3599338f9de3043664fde3c5ca8bc1ca",
1933
- "mtime": 1773796517626.7966
1934
- },
1935
- "test-projects/react-app/ai/graph/symbol-graph.json": {
1936
- "hash": "cdd01d0b3bdb6f26648460fa8d33b069",
1937
- "mtime": 1773796517632.7969
1938
- },
1939
- "test-projects/react-app/ai/graph/symbol-references.json": {
1940
- "hash": "a2ec09612e8db86fc410fc8b4755c07b",
1941
- "mtime": 1773796517632.7969
1942
- },
1943
- "test-projects/react-app/ai/index-state.json": {
1944
- "hash": "4c8940a512edb67a82dd9bd2aeafe1bb",
1945
- "mtime": 1773854833164.3127
1946
- },
1947
- "test-projects/react-app/ai/modules.json": {
1948
- "hash": "c539e0624fa9a288ddfb14bd48b5587e",
1949
- "mtime": 1773854833093.3113
1950
- },
1951
- "test-projects/react-app/ai/project.json": {
1952
- "hash": "e916a42c2cd97173f16f2f82189d5986",
1953
- "mtime": 1773854929733.0337
1954
- },
1955
- "test-projects/react-app/ai/repo-map.json": {
1956
- "hash": "b0821a6572790fc16e5270c4c5e9276e",
1957
- "mtime": 1773854929733.0337
1958
- },
1959
- "test-projects/react-app/ai/repo_map.json": {
1960
- "hash": "7cd5df100b5acc9f5c96d3d51e55347e",
1961
- "mtime": 1773854929733.0337
1962
- },
1963
- "test-projects/react-app/ai/repo_map.md": {
1964
- "hash": "f3361ccec5c3c9c2b4ead2c27b5fd571",
1965
- "mtime": 1773796492586.406
1966
- },
1967
- "test-projects/react-app/ai/schema.json": {
1968
- "hash": "96136c4559dbd4fb396d07196c0158ad",
1969
- "mtime": 1773854929734.0337
1970
- },
1971
- "test-projects/react-app/ai/summary.md": {
1972
- "hash": "6c7df62f23d13a49598c071057253eae",
1973
- "mtime": 1773796492587.4062
1974
- },
1975
- "test-projects/react-app/ai/symbols.json": {
1976
- "hash": "ad94b9b17ac8aee49fe27f0113994ceb",
1977
- "mtime": 1773796492592.4062
1978
- },
1979
- "test-projects/react-app/ai/tech_stack.md": {
1980
- "hash": "d7e224852b6ec88de645453bfb065c40",
1981
- "mtime": 1773796492589.4062
1982
- },
1983
- "test-projects/react-app/ai/tools.json": {
1984
- "hash": "b1356e52c74e9b3b6a0d397b790a4968",
1985
- "mtime": 1773796492596.4062
1986
- },
1987
- "test-projects/react-app/package.json": {
1988
- "hash": "12744c74a0278dc2edfb68294b9b9125",
1989
- "mtime": 1773777304827.265
1990
- },
1991
- "test-projects/react-app/src/App.tsx": {
1992
- "hash": "1bd200aa3ea7b4e1175a07d0f26f8dc4",
1993
- "mtime": 1773777339360.6953
1994
- },
1995
- "test-projects/react-app/src/context/AuthContext.tsx": {
1996
- "hash": "4113336d7e2eb6ac2b78cebe8464276e",
1997
- "mtime": 1773777350783.8386
1998
- },
1999
- "test-projects/react-app/src/hooks/useAuth.ts": {
2000
- "hash": "036b7295855cbd8214eb4653954f10cc",
2001
- "mtime": 1773777417490.685
2002
- },
2003
- "test-projects/react-app/src/main.tsx": {
2004
- "hash": "283000b4b4218c8dc8b4e634a70bbbe3",
2005
- "mtime": 1773777310472.335
2006
- },
2007
- "test-projects/react-app/src/pages/DashboardPage.tsx": {
2008
- "hash": "4c9a9c8fc6a53db6bdbb4d0de6561baf",
2009
- "mtime": 1773777385566.278
2010
- },
2011
- "test-projects/react-app/src/pages/LoginPage.tsx": {
2012
- "hash": "16a9451aafa3dd13e3c62b8816ab98d6",
2013
- "mtime": 1773777377789.1794
2014
- },
2015
- "test-projects/react-app/src/pages/UsersPage.tsx": {
2016
- "hash": "e24caa3c7d598228c36600eb1ca95b30",
2017
- "mtime": 1773777394130.387
2018
- },
2019
- "test-projects/react-app/src/services/userService.ts": {
2020
- "hash": "78df2c3240cd630cedb2095347616301",
2021
- "mtime": 1773777428144.8215
2022
- },
2023
- "test-projects/salesforce-cli/ai/ai_context.md": {
2024
- "hash": "f038c6e81ed1afc0b5582c214b42fe69",
2025
- "mtime": 1773796492673.4075
2026
- },
2027
- "test-projects/salesforce-cli/ai/ai_rules.md": {
2028
- "hash": "d6864e4c14fb24f5b12fc0dbc5fe50f7",
2029
- "mtime": 1773796492673.4075
2030
- },
2031
- "test-projects/salesforce-cli/ai/architecture.md": {
2032
- "hash": "587f3de6d1623a0fc13d924503ab2ad9",
2033
- "mtime": 1773796492669.4075
2034
- },
2035
- "test-projects/salesforce-cli/ai/cache.json": {
2036
- "hash": "057d536d2dcfcff14ee37d655336948a",
2037
- "mtime": 1773854929734.0337
2038
- },
2039
- "test-projects/salesforce-cli/ai/context/features/force-app.json": {
2040
- "hash": "05a59b12f59343ac6550313514d26378",
2041
- "mtime": 1773796517714.798
2042
- },
2043
- "test-projects/salesforce-cli/ai/context/flows/account.json": {
2044
- "hash": "b598b9ea1bc7ba8e8220ce3861cd9a6b",
2045
- "mtime": 1773796517714.798
2046
- },
2047
- "test-projects/salesforce-cli/ai/context/flows/opportunity.json": {
2048
- "hash": "ac8e6a6f053bb84d99784bd2e4556e90",
2049
- "mtime": 1773796517715.798
2050
- },
2051
- "test-projects/salesforce-cli/ai/conventions.md": {
2052
- "hash": "d11ac646a8916e3c6cc376f610368317",
2053
- "mtime": 1773796492671.4075
2054
- },
2055
- "test-projects/salesforce-cli/ai/dependencies.json": {
2056
- "hash": "038f80a99cbcc45991786b645398758e",
2057
- "mtime": 1773796492672.4075
2058
- },
2059
- "test-projects/salesforce-cli/ai/entrypoints.md": {
2060
- "hash": "34c8965a66697d9f1d428bb0904f5d8d",
2061
- "mtime": 1773796492670.4075
2062
- },
2063
- "test-projects/salesforce-cli/ai/files.json": {
2064
- "hash": "d69a645e7a5ac643dfc30df33cd9b267",
2065
- "mtime": 1773854929734.0337
2066
- },
2067
- "test-projects/salesforce-cli/ai/graph/knowledge-graph.json": {
2068
- "hash": "70dfef7b797d97d5df2254beabc335c3",
2069
- "mtime": 1773796549609.295
2070
- },
2071
- "test-projects/salesforce-cli/ai/graph/module-graph.json": {
2072
- "hash": "6848d665199d24a321d36d4e96e9dd90",
2073
- "mtime": 1773796517707.7979
2074
- },
2075
- "test-projects/salesforce-cli/ai/graph/symbol-graph.json": {
2076
- "hash": "fbd7cdd87c277789096aeeb23182dd5e",
2077
- "mtime": 1773796517711.798
2078
- },
2079
- "test-projects/salesforce-cli/ai/graph/symbol-references.json": {
2080
- "hash": "99914b932bd37a50b983c5e7c90ae93b",
2081
- "mtime": 1773796517711.798
2082
- },
2083
- "test-projects/salesforce-cli/ai/index-state.json": {
2084
- "hash": "fe92312c4252ec320829438b42b88265",
2085
- "mtime": 1773854833297.3152
2086
- },
2087
- "test-projects/salesforce-cli/ai/modules.json": {
2088
- "hash": "1d0ec72acc3fc6e1c8c1c28b1ad87252",
2089
- "mtime": 1773854833246.3142
2090
- },
2091
- "test-projects/salesforce-cli/ai/project.json": {
2092
- "hash": "0909e7d9b9c9496dce2bf848e992bf06",
2093
- "mtime": 1773854929734.0337
2094
- },
2095
- "test-projects/salesforce-cli/ai/repo-map.json": {
2096
- "hash": "f0a8d30c722f69eaaf0d928d1e242e7e",
2097
- "mtime": 1773854929734.0337
2098
- },
2099
- "test-projects/salesforce-cli/ai/repo_map.json": {
2100
- "hash": "3db22c2c179a0e59abb01cc8620dc944",
2101
- "mtime": 1773854929734.0337
2102
- },
2103
- "test-projects/salesforce-cli/ai/repo_map.md": {
2104
- "hash": "612c1b7f776ec7f0e02e6a2a80bafe3b",
2105
- "mtime": 1773796492667.4075
2106
- },
2107
- "test-projects/salesforce-cli/ai/schema.json": {
2108
- "hash": "69181f30c0d2916ef84a893c5b50ba83",
2109
- "mtime": 1773854929734.0337
2110
- },
2111
- "test-projects/salesforce-cli/ai/summary.md": {
2112
- "hash": "52c99c74210210438e7bf314915ef872",
2113
- "mtime": 1773796492668.4075
2114
- },
2115
- "test-projects/salesforce-cli/ai/symbols.json": {
2116
- "hash": "e3c31bde2bfd56e085f689eb750aa93e",
2117
- "mtime": 1773796492672.4075
2118
- },
2119
- "test-projects/salesforce-cli/ai/tech_stack.md": {
2120
- "hash": "4f67b75666a8dab1f2f82196130ab030",
2121
- "mtime": 1773796492670.4075
2122
- },
2123
- "test-projects/salesforce-cli/ai/tools.json": {
2124
- "hash": "b1356e52c74e9b3b6a0d397b790a4968",
2125
- "mtime": 1773796492675.4075
2126
- },
2127
- "test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls": {
2128
- "hash": "f42a5c32b2194cf4c6227503ba00f6fe",
2129
- "mtime": 1773777904495.204
2130
- },
2131
- "test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls": {
2132
- "hash": "27984b63f77bef40953426e0a6b0c685",
2133
- "mtime": 1773777913625.33
2134
- },
2135
- "test-projects/salesforce-cli/force-app/main/default/triggers/AccountTrigger.trigger": {
2136
- "hash": "84c54cb056848e844af710a70c5ef243",
2137
- "mtime": 1773777952108.863
2138
- },
2139
- "test-projects/salesforce-cli/sfdx-project.json": {
2140
- "hash": "d2a50cc298ee84931caa1b54ae8b18ed",
2141
- "mtime": 1773777895732.083
2142
- },
2143
- "test-projects/spring-boot-app/README.md": {
2144
- "hash": "ee92d7e508c3afd9aed6198088189034",
2145
- "mtime": 1773853695476.1587
2146
- },
2147
- "test-projects/spring-boot-app/ai/ai_context.md": {
2148
- "hash": "805894557ce87043443bf9a93a34fd4d",
2149
- "mtime": 1773853770800.222
2150
- },
2151
- "test-projects/spring-boot-app/ai/ai_rules.md": {
2152
- "hash": "dd94e2e76a4b44d39e6094e0d9d2f59b",
2153
- "mtime": 1773853770799.222
2154
- },
2155
- "test-projects/spring-boot-app/ai/architecture.md": {
2156
- "hash": "b39463d4712f6ea781823c9a5165b0c4",
2157
- "mtime": 1773853770794.222
2158
- },
2159
- "test-projects/spring-boot-app/ai/cache.json": {
2160
- "hash": "cbd7f7b4ef78c0be59cec53e1fc5eb96",
2161
- "mtime": 1773853776316.2998
2162
- },
2163
- "test-projects/spring-boot-app/ai/context/features/src.json": {
2164
- "hash": "42a60c161a5bf54c5d33ef364591c4f7",
2165
- "mtime": 1773853776318.3
2166
- },
2167
- "test-projects/spring-boot-app/ai/context/flows/PostController.json": {
2168
- "hash": "2f5e73a2ec99953c3b007452cc7bdba9",
2169
- "mtime": 1773853770802.222
2170
- },
2171
- "test-projects/spring-boot-app/ai/context/flows/UserController.json": {
2172
- "hash": "3edb3f6c856c098b62f7375a3b9780fa",
2173
- "mtime": 1773853770802.222
2174
- },
2175
- "test-projects/spring-boot-app/ai/context/flows/comment.json": {
2176
- "hash": "913f7e2f07c4a16cdf4fd01cfb8b433a",
2177
- "mtime": 1773853776318.3
2178
- },
2179
- "test-projects/spring-boot-app/ai/context/flows/post.json": {
2180
- "hash": "0aedae49606deeece03d0356244cac8a",
2181
- "mtime": 1773853776319.3
2182
- },
2183
- "test-projects/spring-boot-app/ai/context/flows/user.json": {
2184
- "hash": "e5a3d93f3de0265263bcf0de1d02bb44",
2185
- "mtime": 1773853776319.3
2186
- },
2187
- "test-projects/spring-boot-app/ai/conventions.md": {
2188
- "hash": "cf36cf015f6c293ebf89ec2c7756bb57",
2189
- "mtime": 1773853770796.222
2190
- },
2191
- "test-projects/spring-boot-app/ai/dependencies.json": {
2192
- "hash": "231ca459d245c614550189bfdfc8aa31",
2193
- "mtime": 1773853770798.222
2194
- },
2195
- "test-projects/spring-boot-app/ai/entrypoints.md": {
2196
- "hash": "34c8965a66697d9f1d428bb0904f5d8d",
2197
- "mtime": 1773853770795.222
2198
- },
2199
- "test-projects/spring-boot-app/ai/files.json": {
2200
- "hash": "b038e97b87e805d6554aa6bcdd5541c8",
2201
- "mtime": 1773854929734.0337
2202
- },
2203
- "test-projects/spring-boot-app/ai/graph/knowledge-graph.json": {
2204
- "hash": "63bcb889e49a8816c395d915d0812490",
2205
- "mtime": 1773853807662.7434
2206
- },
2207
- "test-projects/spring-boot-app/ai/graph/module-graph.json": {
2208
- "hash": "bcdee278b7c197c3fdd8cc05e248bd69",
2209
- "mtime": 1773853776307.2998
2210
- },
2211
- "test-projects/spring-boot-app/ai/graph/symbol-graph.json": {
2212
- "hash": "af3b7eee071f51f7751d2e9c06c34ca4",
2213
- "mtime": 1773853776314.2998
2214
- },
2215
- "test-projects/spring-boot-app/ai/graph/symbol-references.json": {
2216
- "hash": "d2b999dd64f0a7f70cc7fcb11a1d0450",
2217
- "mtime": 1773853776314.2998
2218
- },
2219
- "test-projects/spring-boot-app/ai/index-state.json": {
2220
- "hash": "f712e4ee8204fa320a6b98185daa9cf3",
2221
- "mtime": 1773854929734.0337
2222
- },
2223
- "test-projects/spring-boot-app/ai/modules.json": {
2224
- "hash": "8822d383d8a69f12aac8593ec2382889",
2225
- "mtime": 1773854833383.3167
2226
- },
2227
- "test-projects/spring-boot-app/ai/project.json": {
2228
- "hash": "1690f6494c5f4774a4b9f9937c5c94ce",
2229
- "mtime": 1773853770802.222
2230
- },
2231
- "test-projects/spring-boot-app/ai/repo-map.json": {
2232
- "hash": "b23ef3b9d1a9158da820bb92f19c40ef",
2233
- "mtime": 1773853776306.2998
2234
- },
2235
- "test-projects/spring-boot-app/ai/repo_map.json": {
2236
- "hash": "357e0755e2fc4ae9a135b0a786fedc44",
2237
- "mtime": 1773853770793.2217
2238
- },
2239
- "test-projects/spring-boot-app/ai/repo_map.md": {
2240
- "hash": "81ca0a8d506c9bbd24021116386e18c1",
2241
- "mtime": 1773853770792.2217
2242
- },
2243
- "test-projects/spring-boot-app/ai/schema.json": {
2244
- "hash": "cd1991ee7fb126511c11bd77a822164f",
2245
- "mtime": 1773853770802.222
2246
- },
2247
- "test-projects/spring-boot-app/ai/summary.md": {
2248
- "hash": "b0b1433dd60af9373e118e7c6b018601",
2249
- "mtime": 1773853770793.2217
2250
- },
2251
- "test-projects/spring-boot-app/ai/symbols.json": {
2252
- "hash": "b2578a94b3c80dfdfc14b3ea4d083b90",
2253
- "mtime": 1773853770797.222
2254
- },
2255
- "test-projects/spring-boot-app/ai/tech_stack.md": {
2256
- "hash": "5c79ac677f9fab6c1558ed3e32f1bd85",
2257
- "mtime": 1773853770795.222
2258
- },
2259
- "test-projects/spring-boot-app/ai/tools.json": {
2260
- "hash": "b1356e52c74e9b3b6a0d397b790a4968",
2261
- "mtime": 1773853770803.222
2262
- },
2263
- "test-projects/spring-boot-app/src/main/java/com/example/demo/DemoApplication.java": {
2264
- "hash": "2d75ac141d2c8033430f3380b665baa2",
2265
- "mtime": 1773853571729.4216
2266
- },
2267
- "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/CommentController.java": {
2268
- "hash": "5b6b97f35e3c2776a8beb278db3fb9aa",
2269
- "mtime": 1773853662865.6997
2270
- },
2271
- "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/PostController.java": {
2272
- "hash": "17440d8fbbd9b6ac6f72df6f8549beae",
2273
- "mtime": 1773853649501.512
2274
- },
2275
- "test-projects/spring-boot-app/src/main/java/com/example/demo/controllers/UserController.java": {
2276
- "hash": "f6250869c401aa8a10575ed850358ff3",
2277
- "mtime": 1773853637492.3433
2278
- },
2279
- "test-projects/spring-boot-app/src/main/java/com/example/demo/models/Comment.java": {
2280
- "hash": "a9a5d05a4b9d9f84ab9f414f44b35e87",
2281
- "mtime": 1773853589658.6726
2282
- },
2283
- "test-projects/spring-boot-app/src/main/java/com/example/demo/models/Post.java": {
2284
- "hash": "88f4abb8eeed067c6de4ee4d2771d607",
2285
- "mtime": 1773853585054.6082
2286
- },
2287
- "test-projects/spring-boot-app/src/main/java/com/example/demo/models/User.java": {
2288
- "hash": "b2dfa90af2b99d773e509ff41b449377",
2289
- "mtime": 1773853578068.5103
2290
- },
2291
- "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/CommentRepository.java": {
2292
- "hash": "8f53f0b36acfeae6e976c59947225b0a",
2293
- "mtime": 1773853599958.817
2294
- },
2295
- "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/PostRepository.java": {
2296
- "hash": "71da6b918547e00329c3417841fa1f1e",
2297
- "mtime": 1773853597248.7788
2298
- },
2299
- "test-projects/spring-boot-app/src/main/java/com/example/demo/repositories/UserRepository.java": {
2300
- "hash": "e8578153133af2fec45af59a695abcb5",
2301
- "mtime": 1773853592037.7058
2302
- },
2303
- "test-projects/spring-boot-app/src/main/java/com/example/demo/services/PostService.java": {
2304
- "hash": "cceae946c06807fb78b1a5427deb098e",
2305
- "mtime": 1773853621141.1138
2306
- },
2307
- "test-projects/spring-boot-app/src/main/java/com/example/demo/services/UserService.java": {
2308
- "hash": "fb164c2fa54b3195392774a0ca15d740",
2309
- "mtime": 1773853608542.937
2310
- },
2311
- "tests/adapters.test.ts": {
2312
- "hash": "dd001e296fb4f6840c55cace91598fe3",
2313
- "mtime": 1773189127885.884
2314
- },
2315
- "tests/e2e/README.md": {
2316
- "hash": "7f999ef4a2cf0b3aead8e52722a81922",
2317
- "mtime": 1773777663589.9187
2318
- },
2319
- "tests/gitAnalyzer.test.ts": {
2320
- "hash": "ce622fbb549463aaae743c63a4893b19",
2321
- "mtime": 1773238789169.5671
2322
- },
2323
- "tests/incrementalAnalyzer.test.ts": {
2324
- "hash": "bc6176d6120da7f2ec3329c9fb6509a7",
2325
- "mtime": 1773247021660.156
2326
- },
2327
- "tests/knowledgeGraph.test.ts": {
2328
- "hash": "0db7cd99fd3d87f88ca0a39e24a30525",
2329
- "mtime": 1773244016810.462
2330
- },
2331
- "tests/lazyAnalyzer.test.ts": {
2332
- "hash": "6726ead95b81f122da2bfa47db63964f",
2333
- "mtime": 1773258331083.3643
2334
- },
2335
- "tests/schema.test.ts": {
2336
- "hash": "0e54cc7b18fdc335a08ad5cd021cc6f7",
2337
- "mtime": 1773251240586.4749
2338
- },
2339
- "tests/semanticContexts.test.ts": {
2340
- "hash": "52883ed5b704088e58cbbc0c505d2af2",
2341
- "mtime": 1773780147914.5684
2342
- },
2343
- "tsconfig.json": {
2344
- "hash": "7f7a4bcb349bfbd33e1550e0b02d501b",
2345
- "mtime": 1773004002782.7
2346
- }
2347
- },
2348
- "lastIndexed": "2026-03-18T19:21:23.696Z"
2349
- }