ai-first-cli 1.1.2 → 1.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (264) hide show
  1. package/ANALISIS_MEJORAS.md +327 -0
  2. package/BUGS.md +455 -0
  3. package/CHANGELOG.md +100 -225
  4. package/TEST_RESULTS.md +198 -0
  5. package/TEST_RESULTS_COMPARATIVE.md +159 -0
  6. package/TEST_RESULTS_COMPLETE.md +127 -0
  7. package/TEST_RESULTS_COMPREHENSIVE.md +208 -0
  8. package/ai/ai_context.md +17 -10
  9. package/ai/ai_rules.md +5 -3
  10. package/ai/architecture.md +28 -7
  11. package/ai/cache.json +832 -52
  12. package/ai/context/features/commands.json +18 -0
  13. package/ai/context/features/src.json +61 -0
  14. package/ai/context/features/test-projects.json +56 -0
  15. package/ai/context/flows/account.json +9 -0
  16. package/ai/context/flows/add_.json +9 -0
  17. package/ai/context/flows/ai-first.json +9 -0
  18. package/ai/context/flows/auth..json +10 -0
  19. package/ai/context/flows/auth.json +12 -0
  20. package/ai/context/flows/dashboard.json +9 -0
  21. package/ai/context/flows/doctor.json +9 -0
  22. package/ai/context/flows/explore.json +9 -0
  23. package/ai/context/flows/list_.json +9 -0
  24. package/ai/context/flows/login.json +9 -0
  25. package/ai/context/flows/opportunity.json +9 -0
  26. package/ai/context/flows/remove_.json +9 -0
  27. package/ai/context/flows/user.json +14 -0
  28. package/ai/context/flows/users..json +10 -0
  29. package/ai/context/flows/users.json +9 -0
  30. package/ai/conventions.md +3 -2
  31. package/ai/dependencies.json +429 -251
  32. package/ai/entrypoints.md +10 -0
  33. package/ai/files.json +822 -46
  34. package/ai/git/commit-activity.json +126 -39
  35. package/ai/git/recent-features.json +3 -1
  36. package/ai/git/recent-files.json +6 -6
  37. package/ai/git/recent-flows.json +3 -1
  38. package/ai/graph/knowledge-graph.json +954 -182
  39. package/ai/graph/module-graph.json +270 -0
  40. package/ai/graph/symbol-graph.json +48991 -16523
  41. package/ai/graph/symbol-references.json +953 -56
  42. package/ai/hierarchy.json +3 -24
  43. package/ai/index-state.json +1261 -253
  44. package/ai/index.db +0 -0
  45. package/ai/modules.json +226 -0
  46. package/ai/project.json +29 -0
  47. package/ai/repo-map.json +2284 -250
  48. package/ai/repo_map.json +2731 -231
  49. package/ai/repo_map.md +559 -2
  50. package/ai/schema.json +5 -0
  51. package/ai/summary.md +16 -7
  52. package/ai/tech_stack.md +4 -1
  53. package/ai/tools.json +10 -0
  54. package/dist/analyzers/dependencies.d.ts.map +1 -1
  55. package/dist/analyzers/dependencies.js +8 -16
  56. package/dist/analyzers/dependencies.js.map +1 -1
  57. package/dist/analyzers/symbols.d.ts.map +1 -1
  58. package/dist/analyzers/symbols.js +60 -0
  59. package/dist/analyzers/symbols.js.map +1 -1
  60. package/dist/commands/ai-first.d.ts +1 -0
  61. package/dist/commands/ai-first.d.ts.map +1 -1
  62. package/dist/commands/ai-first.js +29 -6
  63. package/dist/commands/ai-first.js.map +1 -1
  64. package/dist/core/semanticContexts.d.ts.map +1 -1
  65. package/dist/core/semanticContexts.js +48 -26
  66. package/dist/core/semanticContexts.js.map +1 -1
  67. package/dist/core/symbolGraph.d.ts.map +1 -1
  68. package/dist/core/symbolGraph.js +14 -2
  69. package/dist/core/symbolGraph.js.map +1 -1
  70. package/dist/utils/fileUtils.d.ts.map +1 -1
  71. package/dist/utils/fileUtils.js +5 -0
  72. package/dist/utils/fileUtils.js.map +1 -1
  73. package/package.json +2 -2
  74. package/src/analyzers/dependencies.ts +10 -20
  75. package/src/analyzers/symbols.ts +64 -0
  76. package/src/commands/ai-first.ts +32 -8
  77. package/src/core/semanticContexts.ts +54 -29
  78. package/src/core/symbolGraph.ts +16 -2
  79. package/src/utils/fileUtils.ts +5 -0
  80. package/test-projects/express-api/ai/ai_context.md +112 -0
  81. package/test-projects/express-api/ai/ai_rules.md +50 -0
  82. package/test-projects/express-api/ai/architecture.md +62 -0
  83. package/test-projects/express-api/ai/cache.json +125 -0
  84. package/test-projects/express-api/ai/context/features/controllers.json +13 -0
  85. package/test-projects/express-api/ai/context/features/services.json +13 -0
  86. package/test-projects/express-api/ai/context/flows/auth.json +12 -0
  87. package/test-projects/express-api/ai/context/flows/user.json +13 -0
  88. package/test-projects/express-api/ai/conventions.md +51 -0
  89. package/test-projects/express-api/ai/dependencies.json +54 -0
  90. package/test-projects/express-api/ai/entrypoints.md +17 -0
  91. package/test-projects/express-api/ai/files.json +169 -0
  92. package/test-projects/express-api/ai/graph/knowledge-graph.json +98 -0
  93. package/test-projects/express-api/ai/graph/module-graph.json +44 -0
  94. package/test-projects/express-api/ai/graph/symbol-graph.json +882 -0
  95. package/test-projects/express-api/ai/graph/symbol-references.json +51 -0
  96. package/test-projects/express-api/ai/index-state.json +238 -0
  97. package/test-projects/express-api/ai/index.db +0 -0
  98. package/test-projects/express-api/ai/modules.json +30 -0
  99. package/test-projects/express-api/ai/project.json +15 -0
  100. package/test-projects/express-api/ai/repo-map.json +291 -0
  101. package/test-projects/express-api/ai/repo_map.json +100 -0
  102. package/test-projects/express-api/ai/repo_map.md +36 -0
  103. package/test-projects/express-api/ai/schema.json +5 -0
  104. package/test-projects/express-api/ai/summary.md +14 -0
  105. package/test-projects/express-api/ai/symbols.json +1174 -0
  106. package/test-projects/express-api/ai/tech_stack.md +38 -0
  107. package/test-projects/express-api/ai/tools.json +10 -0
  108. package/test-projects/express-api/controllers/authController.js +32 -0
  109. package/test-projects/express-api/controllers/userController.js +51 -0
  110. package/test-projects/express-api/index.js +21 -0
  111. package/test-projects/express-api/middleware/authMiddleware.js +30 -0
  112. package/test-projects/express-api/models/userRepository.js +25 -0
  113. package/test-projects/express-api/package.json +18 -0
  114. package/test-projects/express-api/services/authService.js +17 -0
  115. package/test-projects/express-api/services/userService.js +28 -0
  116. package/test-projects/nestjs-backend/ai/ai_context.md +110 -0
  117. package/test-projects/nestjs-backend/ai/ai_rules.md +52 -0
  118. package/test-projects/nestjs-backend/ai/architecture.md +43 -0
  119. package/test-projects/nestjs-backend/ai/cache.json +137 -0
  120. package/test-projects/nestjs-backend/ai/context/features/src.json +23 -0
  121. package/test-projects/nestjs-backend/ai/context/flows/auth..json +10 -0
  122. package/test-projects/nestjs-backend/ai/context/flows/users..json +10 -0
  123. package/test-projects/nestjs-backend/ai/conventions.md +52 -0
  124. package/test-projects/nestjs-backend/ai/dependencies.json +152 -0
  125. package/test-projects/nestjs-backend/ai/entrypoints.md +18 -0
  126. package/test-projects/nestjs-backend/ai/files.json +184 -0
  127. package/test-projects/nestjs-backend/ai/graph/knowledge-graph.json +74 -0
  128. package/test-projects/nestjs-backend/ai/graph/module-graph.json +29 -0
  129. package/test-projects/nestjs-backend/ai/graph/symbol-graph.json +304 -0
  130. package/test-projects/nestjs-backend/ai/graph/symbol-references.json +5 -0
  131. package/test-projects/nestjs-backend/ai/index-state.json +259 -0
  132. package/test-projects/nestjs-backend/ai/index.db +0 -0
  133. package/test-projects/nestjs-backend/ai/modules.json +19 -0
  134. package/test-projects/nestjs-backend/ai/project.json +14 -0
  135. package/test-projects/nestjs-backend/ai/repo-map.json +323 -0
  136. package/test-projects/nestjs-backend/ai/repo_map.json +141 -0
  137. package/test-projects/nestjs-backend/ai/repo_map.md +39 -0
  138. package/test-projects/nestjs-backend/ai/schema.json +5 -0
  139. package/test-projects/nestjs-backend/ai/summary.md +11 -0
  140. package/test-projects/nestjs-backend/ai/symbols.json +527 -0
  141. package/test-projects/nestjs-backend/ai/tech_stack.md +37 -0
  142. package/test-projects/nestjs-backend/ai/tools.json +10 -0
  143. package/test-projects/nestjs-backend/package.json +22 -0
  144. package/test-projects/nestjs-backend/src/app.module.ts +8 -0
  145. package/test-projects/nestjs-backend/src/auth/auth.controller.ts +22 -0
  146. package/test-projects/nestjs-backend/src/auth/auth.module.ts +11 -0
  147. package/test-projects/nestjs-backend/src/auth/auth.service.ts +28 -0
  148. package/test-projects/nestjs-backend/src/auth/dto/login.dto.ts +4 -0
  149. package/test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts +18 -0
  150. package/test-projects/nestjs-backend/src/main.ts +9 -0
  151. package/test-projects/nestjs-backend/src/users/users.controller.ts +32 -0
  152. package/test-projects/nestjs-backend/src/users/users.module.ts +10 -0
  153. package/test-projects/nestjs-backend/src/users/users.service.ts +42 -0
  154. package/test-projects/nestjs-backend/tsconfig.json +21 -0
  155. package/test-projects/python-cli/__init__.py +1 -0
  156. package/test-projects/python-cli/ai/ai_context.md +94 -0
  157. package/test-projects/python-cli/ai/ai_rules.md +47 -0
  158. package/test-projects/python-cli/ai/architecture.md +49 -0
  159. package/test-projects/python-cli/ai/cache.json +129 -0
  160. package/test-projects/python-cli/ai/context/features/cli.json +16 -0
  161. package/test-projects/python-cli/ai/context/flows/add_.json +9 -0
  162. package/test-projects/python-cli/ai/context/flows/list_.json +9 -0
  163. package/test-projects/python-cli/ai/context/flows/remove_.json +9 -0
  164. package/test-projects/python-cli/ai/conventions.md +51 -0
  165. package/test-projects/python-cli/ai/dependencies.json +66 -0
  166. package/test-projects/python-cli/ai/entrypoints.md +4 -0
  167. package/test-projects/python-cli/ai/files.json +174 -0
  168. package/test-projects/python-cli/ai/graph/knowledge-graph.json +83 -0
  169. package/test-projects/python-cli/ai/graph/module-graph.json +31 -0
  170. package/test-projects/python-cli/ai/graph/symbol-graph.json +358 -0
  171. package/test-projects/python-cli/ai/graph/symbol-references.json +11 -0
  172. package/test-projects/python-cli/ai/index-state.json +245 -0
  173. package/test-projects/python-cli/ai/index.db +0 -0
  174. package/test-projects/python-cli/ai/modules.json +21 -0
  175. package/test-projects/python-cli/ai/project.json +15 -0
  176. package/test-projects/python-cli/ai/repo-map.json +290 -0
  177. package/test-projects/python-cli/ai/repo_map.json +99 -0
  178. package/test-projects/python-cli/ai/repo_map.md +32 -0
  179. package/test-projects/python-cli/ai/schema.json +5 -0
  180. package/test-projects/python-cli/ai/summary.md +11 -0
  181. package/test-projects/python-cli/ai/symbols.json +475 -0
  182. package/test-projects/python-cli/ai/tech_stack.md +30 -0
  183. package/test-projects/python-cli/ai/tools.json +10 -0
  184. package/test-projects/python-cli/cli/__init__.py +1 -0
  185. package/test-projects/python-cli/cli/add_command.py +6 -0
  186. package/test-projects/python-cli/cli/list_command.py +7 -0
  187. package/test-projects/python-cli/cli/remove_command.py +6 -0
  188. package/test-projects/python-cli/main.py +34 -0
  189. package/test-projects/python-cli/models/__init__.py +2 -0
  190. package/test-projects/python-cli/models/task.py +19 -0
  191. package/test-projects/python-cli/models/task_repository.py +44 -0
  192. package/test-projects/react-app/ai/ai_context.md +95 -0
  193. package/test-projects/react-app/ai/ai_rules.md +49 -0
  194. package/test-projects/react-app/ai/architecture.md +33 -0
  195. package/test-projects/react-app/ai/cache.json +129 -0
  196. package/test-projects/react-app/ai/context/features/src.json +18 -0
  197. package/test-projects/react-app/ai/context/flows/dashboard.json +9 -0
  198. package/test-projects/react-app/ai/context/flows/login.json +9 -0
  199. package/test-projects/react-app/ai/context/flows/users.json +9 -0
  200. package/test-projects/react-app/ai/conventions.md +52 -0
  201. package/test-projects/react-app/ai/dependencies.json +128 -0
  202. package/test-projects/react-app/ai/entrypoints.md +4 -0
  203. package/test-projects/react-app/ai/files.json +174 -0
  204. package/test-projects/react-app/ai/graph/knowledge-graph.json +83 -0
  205. package/test-projects/react-app/ai/graph/module-graph.json +31 -0
  206. package/test-projects/react-app/ai/graph/symbol-graph.json +868 -0
  207. package/test-projects/react-app/ai/graph/symbol-references.json +31 -0
  208. package/test-projects/react-app/ai/index-state.json +245 -0
  209. package/test-projects/react-app/ai/index.db +0 -0
  210. package/test-projects/react-app/ai/modules.json +17 -0
  211. package/test-projects/react-app/ai/project.json +15 -0
  212. package/test-projects/react-app/ai/repo-map.json +305 -0
  213. package/test-projects/react-app/ai/repo_map.json +114 -0
  214. package/test-projects/react-app/ai/repo_map.md +31 -0
  215. package/test-projects/react-app/ai/schema.json +5 -0
  216. package/test-projects/react-app/ai/summary.md +11 -0
  217. package/test-projects/react-app/ai/symbols.json +985 -0
  218. package/test-projects/react-app/ai/tech_stack.md +38 -0
  219. package/test-projects/react-app/ai/tools.json +10 -0
  220. package/test-projects/react-app/package.json +16 -0
  221. package/test-projects/react-app/src/App.tsx +21 -0
  222. package/test-projects/react-app/src/context/AuthContext.tsx +41 -0
  223. package/test-projects/react-app/src/hooks/useAuth.ts +10 -0
  224. package/test-projects/react-app/src/main.tsx +10 -0
  225. package/test-projects/react-app/src/pages/DashboardPage.tsx +17 -0
  226. package/test-projects/react-app/src/pages/LoginPage.tsx +41 -0
  227. package/test-projects/react-app/src/pages/UsersPage.tsx +36 -0
  228. package/test-projects/react-app/src/services/userService.ts +37 -0
  229. package/test-projects/salesforce-cli/.forceignore +27 -0
  230. package/test-projects/salesforce-cli/ai/ai_context.md +88 -0
  231. package/test-projects/salesforce-cli/ai/ai_rules.md +47 -0
  232. package/test-projects/salesforce-cli/ai/architecture.md +33 -0
  233. package/test-projects/salesforce-cli/ai/cache.json +105 -0
  234. package/test-projects/salesforce-cli/ai/context/features/force-app.json +14 -0
  235. package/test-projects/salesforce-cli/ai/context/flows/account.json +9 -0
  236. package/test-projects/salesforce-cli/ai/context/flows/opportunity.json +9 -0
  237. package/test-projects/salesforce-cli/ai/conventions.md +51 -0
  238. package/test-projects/salesforce-cli/ai/dependencies.json +6 -0
  239. package/test-projects/salesforce-cli/ai/entrypoints.md +4 -0
  240. package/test-projects/salesforce-cli/ai/files.json +144 -0
  241. package/test-projects/salesforce-cli/ai/graph/knowledge-graph.json +64 -0
  242. package/test-projects/salesforce-cli/ai/graph/module-graph.json +13 -0
  243. package/test-projects/salesforce-cli/ai/graph/symbol-graph.json +148 -0
  244. package/test-projects/salesforce-cli/ai/graph/symbol-references.json +1 -0
  245. package/test-projects/salesforce-cli/ai/index-state.json +203 -0
  246. package/test-projects/salesforce-cli/ai/index.db +0 -0
  247. package/test-projects/salesforce-cli/ai/modules.json +12 -0
  248. package/test-projects/salesforce-cli/ai/project.json +14 -0
  249. package/test-projects/salesforce-cli/ai/repo-map.json +251 -0
  250. package/test-projects/salesforce-cli/ai/repo_map.json +69 -0
  251. package/test-projects/salesforce-cli/ai/repo_map.md +21 -0
  252. package/test-projects/salesforce-cli/ai/schema.json +5 -0
  253. package/test-projects/salesforce-cli/ai/summary.md +11 -0
  254. package/test-projects/salesforce-cli/ai/symbols.json +245 -0
  255. package/test-projects/salesforce-cli/ai/tech_stack.md +30 -0
  256. package/test-projects/salesforce-cli/ai/tools.json +10 -0
  257. package/test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls +24 -0
  258. package/test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls +25 -0
  259. package/test-projects/salesforce-cli/force-app/main/default/objects/Project__c.object.xml +45 -0
  260. package/test-projects/salesforce-cli/force-app/main/default/triggers/AccountTrigger.trigger +33 -0
  261. package/test-projects/salesforce-cli/sfdx-project.json +11 -0
  262. package/tests/e2e/README.md +85 -0
  263. package/tests/e2e/run-e2e.sh +88 -0
  264. package/tests/semanticContexts.test.ts +23 -25
@@ -0,0 +1,245 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "lastIndexed": "2026-03-18T01:15:26.225Z",
4
+ "totalFiles": 34,
5
+ "files": {
6
+ "__init__.py": {
7
+ "path": "__init__.py",
8
+ "hash": "b8e919564af9b6e38c79d449bb77a7b5",
9
+ "mtime": 1773777152897.4336,
10
+ "size": 27,
11
+ "indexedAt": "2026-03-18T01:15:26.224Z"
12
+ },
13
+ "ai/ai_context.md": {
14
+ "path": "ai/ai_context.md",
15
+ "hash": "ed58b5050b4b428a2dc5ddde0d8f0784",
16
+ "mtime": 1773796492511.405,
17
+ "size": 1568,
18
+ "indexedAt": "2026-03-18T01:15:26.224Z"
19
+ },
20
+ "ai/ai_rules.md": {
21
+ "path": "ai/ai_rules.md",
22
+ "hash": "497d2aaa36fc25e1a1d43ad93a5e3631",
23
+ "mtime": 1773796492510.405,
24
+ "size": 809,
25
+ "indexedAt": "2026-03-18T01:15:26.224Z"
26
+ },
27
+ "ai/architecture.md": {
28
+ "path": "ai/architecture.md",
29
+ "hash": "96f6c50d3d91f5ac670473220a4aa87e",
30
+ "mtime": 1773796492506.4048,
31
+ "size": 887,
32
+ "indexedAt": "2026-03-18T01:15:26.224Z"
33
+ },
34
+ "ai/cache.json": {
35
+ "path": "ai/cache.json",
36
+ "hash": "0263e0b9ac379b24a06a2c724cf6091e",
37
+ "mtime": 1773796517555.7957,
38
+ "size": 3729,
39
+ "indexedAt": "2026-03-18T01:15:26.224Z"
40
+ },
41
+ "ai/context/features/cli.json": {
42
+ "path": "ai/context/features/cli.json",
43
+ "hash": "db233eedf90a4de1cbb42f260b4ec159",
44
+ "mtime": 1773796517557.7957,
45
+ "size": 285,
46
+ "indexedAt": "2026-03-18T01:15:26.224Z"
47
+ },
48
+ "ai/context/flows/add_.json": {
49
+ "path": "ai/context/flows/add_.json",
50
+ "hash": "8fd1b0ccd628661384b1982917527e10",
51
+ "mtime": 1773796517557.7957,
52
+ "size": 131,
53
+ "indexedAt": "2026-03-18T01:15:26.224Z"
54
+ },
55
+ "ai/context/flows/list_.json": {
56
+ "path": "ai/context/flows/list_.json",
57
+ "hash": "2307454625174d3b69e727acf6e10261",
58
+ "mtime": 1773796517557.7957,
59
+ "size": 134,
60
+ "indexedAt": "2026-03-18T01:15:26.225Z"
61
+ },
62
+ "ai/context/flows/remove_.json": {
63
+ "path": "ai/context/flows/remove_.json",
64
+ "hash": "12bece7cdabce999d2430fee0b316b3b",
65
+ "mtime": 1773796517557.7957,
66
+ "size": 140,
67
+ "indexedAt": "2026-03-18T01:15:26.225Z"
68
+ },
69
+ "ai/conventions.md": {
70
+ "path": "ai/conventions.md",
71
+ "hash": "9c37d280c1cab6899447a58aa03b0f44",
72
+ "mtime": 1773796492508.4048,
73
+ "size": 841,
74
+ "indexedAt": "2026-03-18T01:15:26.225Z"
75
+ },
76
+ "ai/dependencies.json": {
77
+ "path": "ai/dependencies.json",
78
+ "hash": "b1333fe58b2dddfa6ecb8c53292f442f",
79
+ "mtime": 1773796492509.405,
80
+ "size": 1239,
81
+ "indexedAt": "2026-03-18T01:15:26.225Z"
82
+ },
83
+ "ai/entrypoints.md": {
84
+ "path": "ai/entrypoints.md",
85
+ "hash": "34c8965a66697d9f1d428bb0904f5d8d",
86
+ "mtime": 1773796492507.4048,
87
+ "size": 43,
88
+ "indexedAt": "2026-03-18T01:15:26.225Z"
89
+ },
90
+ "ai/files.json": {
91
+ "path": "ai/files.json",
92
+ "hash": "d6b56025a4aa596950c4c9b4140b550d",
93
+ "mtime": 1773796526167.9297,
94
+ "size": 3374,
95
+ "indexedAt": "2026-03-18T01:15:26.225Z"
96
+ },
97
+ "ai/graph/module-graph.json": {
98
+ "path": "ai/graph/module-graph.json",
99
+ "hash": "54539a6536c57542d107b5e587852d21",
100
+ "mtime": 1773796517549.7954,
101
+ "size": 501,
102
+ "indexedAt": "2026-03-18T01:15:26.225Z"
103
+ },
104
+ "ai/graph/symbol-graph.json": {
105
+ "path": "ai/graph/symbol-graph.json",
106
+ "hash": "d142e1a1a55b23200fe02b7aee7472df",
107
+ "mtime": 1773796517553.7954,
108
+ "size": 9226,
109
+ "indexedAt": "2026-03-18T01:15:26.225Z"
110
+ },
111
+ "ai/graph/symbol-references.json": {
112
+ "path": "ai/graph/symbol-references.json",
113
+ "hash": "de6f7fd1e3fb7cc19d8ec0efd2ac8d57",
114
+ "mtime": 1773796517554.7957,
115
+ "size": 329,
116
+ "indexedAt": "2026-03-18T01:15:26.225Z"
117
+ },
118
+ "ai/modules.json": {
119
+ "path": "ai/modules.json",
120
+ "hash": "366ccb4be2fcb4b7098548e68cee7a06",
121
+ "mtime": 1773796526168.93,
122
+ "size": 371,
123
+ "indexedAt": "2026-03-18T01:15:26.225Z"
124
+ },
125
+ "ai/project.json": {
126
+ "path": "ai/project.json",
127
+ "hash": "0511f31fdb8944b75813100c96738f88",
128
+ "mtime": 1773796492513.405,
129
+ "size": 239,
130
+ "indexedAt": "2026-03-18T01:15:26.225Z"
131
+ },
132
+ "ai/repo-map.json": {
133
+ "path": "ai/repo-map.json",
134
+ "hash": "a2b87275ea77eb88a7ce50f6874d52d8",
135
+ "mtime": 1773796517541.7954,
136
+ "size": 6223,
137
+ "indexedAt": "2026-03-18T01:15:26.225Z"
138
+ },
139
+ "ai/repo_map.json": {
140
+ "path": "ai/repo_map.json",
141
+ "hash": "aa9b5cffb4fea856e640d50ae2f843be",
142
+ "mtime": 1773796492505.4048,
143
+ "size": 1959,
144
+ "indexedAt": "2026-03-18T01:15:26.225Z"
145
+ },
146
+ "ai/repo_map.md": {
147
+ "path": "ai/repo_map.md",
148
+ "hash": "ef0d7f67520571d71a944a89aed09b85",
149
+ "mtime": 1773796492504.4048,
150
+ "size": 542,
151
+ "indexedAt": "2026-03-18T01:15:26.225Z"
152
+ },
153
+ "ai/schema.json": {
154
+ "path": "ai/schema.json",
155
+ "hash": "5f906385bbf15f468465b9b3b4e4cabb",
156
+ "mtime": 1773796492512.405,
157
+ "size": 102,
158
+ "indexedAt": "2026-03-18T01:15:26.225Z"
159
+ },
160
+ "ai/summary.md": {
161
+ "path": "ai/summary.md",
162
+ "hash": "ce45f19fa9b88934464c679faa8bb5e1",
163
+ "mtime": 1773796492505.4048,
164
+ "size": 158,
165
+ "indexedAt": "2026-03-18T01:15:26.225Z"
166
+ },
167
+ "ai/symbols.json": {
168
+ "path": "ai/symbols.json",
169
+ "hash": "cd04c4c359d5fdffb6f49d080ee81749",
170
+ "mtime": 1773796492509.405,
171
+ "size": 11325,
172
+ "indexedAt": "2026-03-18T01:15:26.225Z"
173
+ },
174
+ "ai/tech_stack.md": {
175
+ "path": "ai/tech_stack.md",
176
+ "hash": "549e166f1ac035b5c54f522a1962321e",
177
+ "mtime": 1773796492507.4048,
178
+ "size": 321,
179
+ "indexedAt": "2026-03-18T01:15:26.225Z"
180
+ },
181
+ "ai/tools.json": {
182
+ "path": "ai/tools.json",
183
+ "hash": "b1356e52c74e9b3b6a0d397b790a4968",
184
+ "mtime": 1773796492513.405,
185
+ "size": 138,
186
+ "indexedAt": "2026-03-18T01:15:26.225Z"
187
+ },
188
+ "cli/__init__.py": {
189
+ "path": "cli/__init__.py",
190
+ "hash": "a3b6d5054e9628836636cf4d6927e33a",
191
+ "mtime": 1773777227193.3157,
192
+ "size": 56,
193
+ "indexedAt": "2026-03-18T01:15:26.225Z"
194
+ },
195
+ "cli/add_command.py": {
196
+ "path": "cli/add_command.py",
197
+ "hash": "d9b48d790c714aebf7b29db0f8aa3464",
198
+ "mtime": 1773777196493.9478,
199
+ "size": 218,
200
+ "indexedAt": "2026-03-18T01:15:26.225Z"
201
+ },
202
+ "cli/list_command.py": {
203
+ "path": "cli/list_command.py",
204
+ "hash": "fd7ca8830013f013e16afd191e6c5c75",
205
+ "mtime": 1773777202889.024,
206
+ "size": 247,
207
+ "indexedAt": "2026-03-18T01:15:26.225Z"
208
+ },
209
+ "cli/remove_command.py": {
210
+ "path": "cli/remove_command.py",
211
+ "hash": "1209f465970ad86ef87ed6c0409cef50",
212
+ "mtime": 1773777208836.0952,
213
+ "size": 167,
214
+ "indexedAt": "2026-03-18T01:15:26.225Z"
215
+ },
216
+ "main.py": {
217
+ "path": "main.py",
218
+ "hash": "8e7d98c3b644a2b27f760c017100e886",
219
+ "mtime": 1773777186036.8235,
220
+ "size": 1117,
221
+ "indexedAt": "2026-03-18T01:15:26.225Z"
222
+ },
223
+ "models/__init__.py": {
224
+ "path": "models/__init__.py",
225
+ "hash": "a99db8f336d72b5c5700545705baf7de",
226
+ "mtime": 1773777266541.7935,
227
+ "size": 67,
228
+ "indexedAt": "2026-03-18T01:15:26.225Z"
229
+ },
230
+ "models/task.py": {
231
+ "path": "models/task.py",
232
+ "hash": "95274739cbb686a2f8c661836623c692",
233
+ "mtime": 1773777234068.3987,
234
+ "size": 544,
235
+ "indexedAt": "2026-03-18T01:15:26.225Z"
236
+ },
237
+ "models/task_repository.py": {
238
+ "path": "models/task_repository.py",
239
+ "hash": "68215671f3b74e5dbd6fdc06671b08b1",
240
+ "mtime": 1773777261367.7302,
241
+ "size": 1318,
242
+ "indexedAt": "2026-03-18T01:15:26.225Z"
243
+ }
244
+ }
245
+ }
@@ -0,0 +1,21 @@
1
+ {
2
+ "modules": {
3
+ "cli": {
4
+ "path": "cli",
5
+ "files": [
6
+ "cli/__init__.py",
7
+ "cli/add_command.py",
8
+ "cli/list_command.py",
9
+ "cli/remove_command.py"
10
+ ]
11
+ },
12
+ "models": {
13
+ "path": "models",
14
+ "files": [
15
+ "models/__init__.py",
16
+ "models/task.py",
17
+ "models/task_repository.py"
18
+ ]
19
+ }
20
+ }
21
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "python-cli",
3
+ "rootDir": "test-projects/python-cli",
4
+ "features": [
5
+ "cli"
6
+ ],
7
+ "flows": [
8
+ "add_",
9
+ "list_",
10
+ "remove_"
11
+ ],
12
+ "languages": [],
13
+ "frameworks": [],
14
+ "generatedAt": "2026-03-18T01:14:52.514Z"
15
+ }
@@ -0,0 +1,290 @@
1
+ {
2
+ "generated": "2026-03-18T01:15:17.542Z",
3
+ "totalFiles": 28,
4
+ "structure": {
5
+ "__init__.py": {
6
+ "type": "file",
7
+ "extension": "py"
8
+ },
9
+ "ai": {
10
+ "type": "directory",
11
+ "children": {
12
+ "ai_context.md": {
13
+ "type": "file",
14
+ "extension": "md"
15
+ },
16
+ "ai_rules.md": {
17
+ "type": "file",
18
+ "extension": "md"
19
+ },
20
+ "architecture.md": {
21
+ "type": "file",
22
+ "extension": "md"
23
+ },
24
+ "context": {
25
+ "type": "directory",
26
+ "children": {
27
+ "features": {
28
+ "type": "directory",
29
+ "children": {
30
+ "cli.json": {
31
+ "type": "file",
32
+ "extension": "json"
33
+ }
34
+ }
35
+ },
36
+ "flows": {
37
+ "type": "directory",
38
+ "children": {
39
+ "add_.json": {
40
+ "type": "file",
41
+ "extension": "json"
42
+ },
43
+ "list_.json": {
44
+ "type": "file",
45
+ "extension": "json"
46
+ },
47
+ "remove_.json": {
48
+ "type": "file",
49
+ "extension": "json"
50
+ }
51
+ }
52
+ }
53
+ }
54
+ },
55
+ "conventions.md": {
56
+ "type": "file",
57
+ "extension": "md"
58
+ },
59
+ "dependencies.json": {
60
+ "type": "file",
61
+ "extension": "json"
62
+ },
63
+ "entrypoints.md": {
64
+ "type": "file",
65
+ "extension": "md"
66
+ },
67
+ "modules.json": {
68
+ "type": "file",
69
+ "extension": "json"
70
+ },
71
+ "project.json": {
72
+ "type": "file",
73
+ "extension": "json"
74
+ },
75
+ "repo_map.json": {
76
+ "type": "file",
77
+ "extension": "json"
78
+ },
79
+ "repo_map.md": {
80
+ "type": "file",
81
+ "extension": "md"
82
+ },
83
+ "schema.json": {
84
+ "type": "file",
85
+ "extension": "json"
86
+ },
87
+ "summary.md": {
88
+ "type": "file",
89
+ "extension": "md"
90
+ },
91
+ "symbols.json": {
92
+ "type": "file",
93
+ "extension": "json"
94
+ },
95
+ "tech_stack.md": {
96
+ "type": "file",
97
+ "extension": "md"
98
+ },
99
+ "tools.json": {
100
+ "type": "file",
101
+ "extension": "json"
102
+ }
103
+ }
104
+ },
105
+ "cli": {
106
+ "type": "directory",
107
+ "children": {
108
+ "__init__.py": {
109
+ "type": "file",
110
+ "extension": "py"
111
+ },
112
+ "add_command.py": {
113
+ "type": "file",
114
+ "extension": "py"
115
+ },
116
+ "list_command.py": {
117
+ "type": "file",
118
+ "extension": "py"
119
+ },
120
+ "remove_command.py": {
121
+ "type": "file",
122
+ "extension": "py"
123
+ }
124
+ }
125
+ },
126
+ "main.py": {
127
+ "type": "file",
128
+ "extension": "py"
129
+ },
130
+ "models": {
131
+ "type": "directory",
132
+ "children": {
133
+ "__init__.py": {
134
+ "type": "file",
135
+ "extension": "py"
136
+ },
137
+ "task.py": {
138
+ "type": "file",
139
+ "extension": "py"
140
+ },
141
+ "task_repository.py": {
142
+ "type": "file",
143
+ "extension": "py"
144
+ }
145
+ }
146
+ }
147
+ },
148
+ "files": [
149
+ {
150
+ "path": "__init__.py",
151
+ "name": "__init__.py",
152
+ "extension": "py"
153
+ },
154
+ {
155
+ "path": "ai/ai_context.md",
156
+ "name": "ai_context.md",
157
+ "extension": "md"
158
+ },
159
+ {
160
+ "path": "ai/ai_rules.md",
161
+ "name": "ai_rules.md",
162
+ "extension": "md"
163
+ },
164
+ {
165
+ "path": "ai/architecture.md",
166
+ "name": "architecture.md",
167
+ "extension": "md"
168
+ },
169
+ {
170
+ "path": "ai/context/features/cli.json",
171
+ "name": "cli.json",
172
+ "extension": "json"
173
+ },
174
+ {
175
+ "path": "ai/context/flows/add_.json",
176
+ "name": "add_.json",
177
+ "extension": "json"
178
+ },
179
+ {
180
+ "path": "ai/context/flows/list_.json",
181
+ "name": "list_.json",
182
+ "extension": "json"
183
+ },
184
+ {
185
+ "path": "ai/context/flows/remove_.json",
186
+ "name": "remove_.json",
187
+ "extension": "json"
188
+ },
189
+ {
190
+ "path": "ai/conventions.md",
191
+ "name": "conventions.md",
192
+ "extension": "md"
193
+ },
194
+ {
195
+ "path": "ai/dependencies.json",
196
+ "name": "dependencies.json",
197
+ "extension": "json"
198
+ },
199
+ {
200
+ "path": "ai/entrypoints.md",
201
+ "name": "entrypoints.md",
202
+ "extension": "md"
203
+ },
204
+ {
205
+ "path": "ai/modules.json",
206
+ "name": "modules.json",
207
+ "extension": "json"
208
+ },
209
+ {
210
+ "path": "ai/project.json",
211
+ "name": "project.json",
212
+ "extension": "json"
213
+ },
214
+ {
215
+ "path": "ai/repo_map.json",
216
+ "name": "repo_map.json",
217
+ "extension": "json"
218
+ },
219
+ {
220
+ "path": "ai/repo_map.md",
221
+ "name": "repo_map.md",
222
+ "extension": "md"
223
+ },
224
+ {
225
+ "path": "ai/schema.json",
226
+ "name": "schema.json",
227
+ "extension": "json"
228
+ },
229
+ {
230
+ "path": "ai/summary.md",
231
+ "name": "summary.md",
232
+ "extension": "md"
233
+ },
234
+ {
235
+ "path": "ai/symbols.json",
236
+ "name": "symbols.json",
237
+ "extension": "json"
238
+ },
239
+ {
240
+ "path": "ai/tech_stack.md",
241
+ "name": "tech_stack.md",
242
+ "extension": "md"
243
+ },
244
+ {
245
+ "path": "ai/tools.json",
246
+ "name": "tools.json",
247
+ "extension": "json"
248
+ },
249
+ {
250
+ "path": "cli/__init__.py",
251
+ "name": "__init__.py",
252
+ "extension": "py"
253
+ },
254
+ {
255
+ "path": "cli/add_command.py",
256
+ "name": "add_command.py",
257
+ "extension": "py"
258
+ },
259
+ {
260
+ "path": "cli/list_command.py",
261
+ "name": "list_command.py",
262
+ "extension": "py"
263
+ },
264
+ {
265
+ "path": "cli/remove_command.py",
266
+ "name": "remove_command.py",
267
+ "extension": "py"
268
+ },
269
+ {
270
+ "path": "main.py",
271
+ "name": "main.py",
272
+ "extension": "py"
273
+ },
274
+ {
275
+ "path": "models/__init__.py",
276
+ "name": "__init__.py",
277
+ "extension": "py"
278
+ },
279
+ {
280
+ "path": "models/task.py",
281
+ "name": "task.py",
282
+ "extension": "py"
283
+ },
284
+ {
285
+ "path": "models/task_repository.py",
286
+ "name": "task_repository.py",
287
+ "extension": "py"
288
+ }
289
+ ]
290
+ }
@@ -0,0 +1,99 @@
1
+ {
2
+ "generated": "2026-03-18T01:14:52.506Z",
3
+ "totalFiles": 9,
4
+ "structure": {
5
+ "__init__.py": {
6
+ "type": "file",
7
+ "extension": "py"
8
+ },
9
+ "cli": {
10
+ "type": "directory",
11
+ "children": {
12
+ "__init__.py": {
13
+ "type": "file",
14
+ "extension": "py"
15
+ },
16
+ "add_command.py": {
17
+ "type": "file",
18
+ "extension": "py"
19
+ },
20
+ "list_command.py": {
21
+ "type": "file",
22
+ "extension": "py"
23
+ },
24
+ "remove_command.py": {
25
+ "type": "file",
26
+ "extension": "py"
27
+ }
28
+ }
29
+ },
30
+ "main.py": {
31
+ "type": "file",
32
+ "extension": "py"
33
+ },
34
+ "models": {
35
+ "type": "directory",
36
+ "children": {
37
+ "__init__.py": {
38
+ "type": "file",
39
+ "extension": "py"
40
+ },
41
+ "task.py": {
42
+ "type": "file",
43
+ "extension": "py"
44
+ },
45
+ "task_repository.py": {
46
+ "type": "file",
47
+ "extension": "py"
48
+ }
49
+ }
50
+ }
51
+ },
52
+ "files": [
53
+ {
54
+ "path": "__init__.py",
55
+ "name": "__init__.py",
56
+ "extension": "py"
57
+ },
58
+ {
59
+ "path": "cli/__init__.py",
60
+ "name": "__init__.py",
61
+ "extension": "py"
62
+ },
63
+ {
64
+ "path": "cli/add_command.py",
65
+ "name": "add_command.py",
66
+ "extension": "py"
67
+ },
68
+ {
69
+ "path": "cli/list_command.py",
70
+ "name": "list_command.py",
71
+ "extension": "py"
72
+ },
73
+ {
74
+ "path": "cli/remove_command.py",
75
+ "name": "remove_command.py",
76
+ "extension": "py"
77
+ },
78
+ {
79
+ "path": "main.py",
80
+ "name": "main.py",
81
+ "extension": "py"
82
+ },
83
+ {
84
+ "path": "models/__init__.py",
85
+ "name": "__init__.py",
86
+ "extension": "py"
87
+ },
88
+ {
89
+ "path": "models/task.py",
90
+ "name": "task.py",
91
+ "extension": "py"
92
+ },
93
+ {
94
+ "path": "models/task_repository.py",
95
+ "name": "task_repository.py",
96
+ "extension": "py"
97
+ }
98
+ ]
99
+ }