ai-first-cli 1.1.3 → 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 (263) 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.map +1 -1
  61. package/dist/commands/ai-first.js +28 -6
  62. package/dist/commands/ai-first.js.map +1 -1
  63. package/dist/core/semanticContexts.d.ts.map +1 -1
  64. package/dist/core/semanticContexts.js +48 -26
  65. package/dist/core/semanticContexts.js.map +1 -1
  66. package/dist/core/symbolGraph.d.ts.map +1 -1
  67. package/dist/core/symbolGraph.js +14 -2
  68. package/dist/core/symbolGraph.js.map +1 -1
  69. package/dist/utils/fileUtils.d.ts.map +1 -1
  70. package/dist/utils/fileUtils.js +5 -0
  71. package/dist/utils/fileUtils.js.map +1 -1
  72. package/package.json +2 -2
  73. package/src/analyzers/dependencies.ts +10 -20
  74. package/src/analyzers/symbols.ts +64 -0
  75. package/src/commands/ai-first.ts +31 -8
  76. package/src/core/semanticContexts.ts +54 -29
  77. package/src/core/symbolGraph.ts +16 -2
  78. package/src/utils/fileUtils.ts +5 -0
  79. package/test-projects/express-api/ai/ai_context.md +112 -0
  80. package/test-projects/express-api/ai/ai_rules.md +50 -0
  81. package/test-projects/express-api/ai/architecture.md +62 -0
  82. package/test-projects/express-api/ai/cache.json +125 -0
  83. package/test-projects/express-api/ai/context/features/controllers.json +13 -0
  84. package/test-projects/express-api/ai/context/features/services.json +13 -0
  85. package/test-projects/express-api/ai/context/flows/auth.json +12 -0
  86. package/test-projects/express-api/ai/context/flows/user.json +13 -0
  87. package/test-projects/express-api/ai/conventions.md +51 -0
  88. package/test-projects/express-api/ai/dependencies.json +54 -0
  89. package/test-projects/express-api/ai/entrypoints.md +17 -0
  90. package/test-projects/express-api/ai/files.json +169 -0
  91. package/test-projects/express-api/ai/graph/knowledge-graph.json +98 -0
  92. package/test-projects/express-api/ai/graph/module-graph.json +44 -0
  93. package/test-projects/express-api/ai/graph/symbol-graph.json +882 -0
  94. package/test-projects/express-api/ai/graph/symbol-references.json +51 -0
  95. package/test-projects/express-api/ai/index-state.json +238 -0
  96. package/test-projects/express-api/ai/index.db +0 -0
  97. package/test-projects/express-api/ai/modules.json +30 -0
  98. package/test-projects/express-api/ai/project.json +15 -0
  99. package/test-projects/express-api/ai/repo-map.json +291 -0
  100. package/test-projects/express-api/ai/repo_map.json +100 -0
  101. package/test-projects/express-api/ai/repo_map.md +36 -0
  102. package/test-projects/express-api/ai/schema.json +5 -0
  103. package/test-projects/express-api/ai/summary.md +14 -0
  104. package/test-projects/express-api/ai/symbols.json +1174 -0
  105. package/test-projects/express-api/ai/tech_stack.md +38 -0
  106. package/test-projects/express-api/ai/tools.json +10 -0
  107. package/test-projects/express-api/controllers/authController.js +32 -0
  108. package/test-projects/express-api/controllers/userController.js +51 -0
  109. package/test-projects/express-api/index.js +21 -0
  110. package/test-projects/express-api/middleware/authMiddleware.js +30 -0
  111. package/test-projects/express-api/models/userRepository.js +25 -0
  112. package/test-projects/express-api/package.json +18 -0
  113. package/test-projects/express-api/services/authService.js +17 -0
  114. package/test-projects/express-api/services/userService.js +28 -0
  115. package/test-projects/nestjs-backend/ai/ai_context.md +110 -0
  116. package/test-projects/nestjs-backend/ai/ai_rules.md +52 -0
  117. package/test-projects/nestjs-backend/ai/architecture.md +43 -0
  118. package/test-projects/nestjs-backend/ai/cache.json +137 -0
  119. package/test-projects/nestjs-backend/ai/context/features/src.json +23 -0
  120. package/test-projects/nestjs-backend/ai/context/flows/auth..json +10 -0
  121. package/test-projects/nestjs-backend/ai/context/flows/users..json +10 -0
  122. package/test-projects/nestjs-backend/ai/conventions.md +52 -0
  123. package/test-projects/nestjs-backend/ai/dependencies.json +152 -0
  124. package/test-projects/nestjs-backend/ai/entrypoints.md +18 -0
  125. package/test-projects/nestjs-backend/ai/files.json +184 -0
  126. package/test-projects/nestjs-backend/ai/graph/knowledge-graph.json +74 -0
  127. package/test-projects/nestjs-backend/ai/graph/module-graph.json +29 -0
  128. package/test-projects/nestjs-backend/ai/graph/symbol-graph.json +304 -0
  129. package/test-projects/nestjs-backend/ai/graph/symbol-references.json +5 -0
  130. package/test-projects/nestjs-backend/ai/index-state.json +259 -0
  131. package/test-projects/nestjs-backend/ai/index.db +0 -0
  132. package/test-projects/nestjs-backend/ai/modules.json +19 -0
  133. package/test-projects/nestjs-backend/ai/project.json +14 -0
  134. package/test-projects/nestjs-backend/ai/repo-map.json +323 -0
  135. package/test-projects/nestjs-backend/ai/repo_map.json +141 -0
  136. package/test-projects/nestjs-backend/ai/repo_map.md +39 -0
  137. package/test-projects/nestjs-backend/ai/schema.json +5 -0
  138. package/test-projects/nestjs-backend/ai/summary.md +11 -0
  139. package/test-projects/nestjs-backend/ai/symbols.json +527 -0
  140. package/test-projects/nestjs-backend/ai/tech_stack.md +37 -0
  141. package/test-projects/nestjs-backend/ai/tools.json +10 -0
  142. package/test-projects/nestjs-backend/package.json +22 -0
  143. package/test-projects/nestjs-backend/src/app.module.ts +8 -0
  144. package/test-projects/nestjs-backend/src/auth/auth.controller.ts +22 -0
  145. package/test-projects/nestjs-backend/src/auth/auth.module.ts +11 -0
  146. package/test-projects/nestjs-backend/src/auth/auth.service.ts +28 -0
  147. package/test-projects/nestjs-backend/src/auth/dto/login.dto.ts +4 -0
  148. package/test-projects/nestjs-backend/src/auth/strategies/jwt.strategy.ts +18 -0
  149. package/test-projects/nestjs-backend/src/main.ts +9 -0
  150. package/test-projects/nestjs-backend/src/users/users.controller.ts +32 -0
  151. package/test-projects/nestjs-backend/src/users/users.module.ts +10 -0
  152. package/test-projects/nestjs-backend/src/users/users.service.ts +42 -0
  153. package/test-projects/nestjs-backend/tsconfig.json +21 -0
  154. package/test-projects/python-cli/__init__.py +1 -0
  155. package/test-projects/python-cli/ai/ai_context.md +94 -0
  156. package/test-projects/python-cli/ai/ai_rules.md +47 -0
  157. package/test-projects/python-cli/ai/architecture.md +49 -0
  158. package/test-projects/python-cli/ai/cache.json +129 -0
  159. package/test-projects/python-cli/ai/context/features/cli.json +16 -0
  160. package/test-projects/python-cli/ai/context/flows/add_.json +9 -0
  161. package/test-projects/python-cli/ai/context/flows/list_.json +9 -0
  162. package/test-projects/python-cli/ai/context/flows/remove_.json +9 -0
  163. package/test-projects/python-cli/ai/conventions.md +51 -0
  164. package/test-projects/python-cli/ai/dependencies.json +66 -0
  165. package/test-projects/python-cli/ai/entrypoints.md +4 -0
  166. package/test-projects/python-cli/ai/files.json +174 -0
  167. package/test-projects/python-cli/ai/graph/knowledge-graph.json +83 -0
  168. package/test-projects/python-cli/ai/graph/module-graph.json +31 -0
  169. package/test-projects/python-cli/ai/graph/symbol-graph.json +358 -0
  170. package/test-projects/python-cli/ai/graph/symbol-references.json +11 -0
  171. package/test-projects/python-cli/ai/index-state.json +245 -0
  172. package/test-projects/python-cli/ai/index.db +0 -0
  173. package/test-projects/python-cli/ai/modules.json +21 -0
  174. package/test-projects/python-cli/ai/project.json +15 -0
  175. package/test-projects/python-cli/ai/repo-map.json +290 -0
  176. package/test-projects/python-cli/ai/repo_map.json +99 -0
  177. package/test-projects/python-cli/ai/repo_map.md +32 -0
  178. package/test-projects/python-cli/ai/schema.json +5 -0
  179. package/test-projects/python-cli/ai/summary.md +11 -0
  180. package/test-projects/python-cli/ai/symbols.json +475 -0
  181. package/test-projects/python-cli/ai/tech_stack.md +30 -0
  182. package/test-projects/python-cli/ai/tools.json +10 -0
  183. package/test-projects/python-cli/cli/__init__.py +1 -0
  184. package/test-projects/python-cli/cli/add_command.py +6 -0
  185. package/test-projects/python-cli/cli/list_command.py +7 -0
  186. package/test-projects/python-cli/cli/remove_command.py +6 -0
  187. package/test-projects/python-cli/main.py +34 -0
  188. package/test-projects/python-cli/models/__init__.py +2 -0
  189. package/test-projects/python-cli/models/task.py +19 -0
  190. package/test-projects/python-cli/models/task_repository.py +44 -0
  191. package/test-projects/react-app/ai/ai_context.md +95 -0
  192. package/test-projects/react-app/ai/ai_rules.md +49 -0
  193. package/test-projects/react-app/ai/architecture.md +33 -0
  194. package/test-projects/react-app/ai/cache.json +129 -0
  195. package/test-projects/react-app/ai/context/features/src.json +18 -0
  196. package/test-projects/react-app/ai/context/flows/dashboard.json +9 -0
  197. package/test-projects/react-app/ai/context/flows/login.json +9 -0
  198. package/test-projects/react-app/ai/context/flows/users.json +9 -0
  199. package/test-projects/react-app/ai/conventions.md +52 -0
  200. package/test-projects/react-app/ai/dependencies.json +128 -0
  201. package/test-projects/react-app/ai/entrypoints.md +4 -0
  202. package/test-projects/react-app/ai/files.json +174 -0
  203. package/test-projects/react-app/ai/graph/knowledge-graph.json +83 -0
  204. package/test-projects/react-app/ai/graph/module-graph.json +31 -0
  205. package/test-projects/react-app/ai/graph/symbol-graph.json +868 -0
  206. package/test-projects/react-app/ai/graph/symbol-references.json +31 -0
  207. package/test-projects/react-app/ai/index-state.json +245 -0
  208. package/test-projects/react-app/ai/index.db +0 -0
  209. package/test-projects/react-app/ai/modules.json +17 -0
  210. package/test-projects/react-app/ai/project.json +15 -0
  211. package/test-projects/react-app/ai/repo-map.json +305 -0
  212. package/test-projects/react-app/ai/repo_map.json +114 -0
  213. package/test-projects/react-app/ai/repo_map.md +31 -0
  214. package/test-projects/react-app/ai/schema.json +5 -0
  215. package/test-projects/react-app/ai/summary.md +11 -0
  216. package/test-projects/react-app/ai/symbols.json +985 -0
  217. package/test-projects/react-app/ai/tech_stack.md +38 -0
  218. package/test-projects/react-app/ai/tools.json +10 -0
  219. package/test-projects/react-app/package.json +16 -0
  220. package/test-projects/react-app/src/App.tsx +21 -0
  221. package/test-projects/react-app/src/context/AuthContext.tsx +41 -0
  222. package/test-projects/react-app/src/hooks/useAuth.ts +10 -0
  223. package/test-projects/react-app/src/main.tsx +10 -0
  224. package/test-projects/react-app/src/pages/DashboardPage.tsx +17 -0
  225. package/test-projects/react-app/src/pages/LoginPage.tsx +41 -0
  226. package/test-projects/react-app/src/pages/UsersPage.tsx +36 -0
  227. package/test-projects/react-app/src/services/userService.ts +37 -0
  228. package/test-projects/salesforce-cli/.forceignore +27 -0
  229. package/test-projects/salesforce-cli/ai/ai_context.md +88 -0
  230. package/test-projects/salesforce-cli/ai/ai_rules.md +47 -0
  231. package/test-projects/salesforce-cli/ai/architecture.md +33 -0
  232. package/test-projects/salesforce-cli/ai/cache.json +105 -0
  233. package/test-projects/salesforce-cli/ai/context/features/force-app.json +14 -0
  234. package/test-projects/salesforce-cli/ai/context/flows/account.json +9 -0
  235. package/test-projects/salesforce-cli/ai/context/flows/opportunity.json +9 -0
  236. package/test-projects/salesforce-cli/ai/conventions.md +51 -0
  237. package/test-projects/salesforce-cli/ai/dependencies.json +6 -0
  238. package/test-projects/salesforce-cli/ai/entrypoints.md +4 -0
  239. package/test-projects/salesforce-cli/ai/files.json +144 -0
  240. package/test-projects/salesforce-cli/ai/graph/knowledge-graph.json +64 -0
  241. package/test-projects/salesforce-cli/ai/graph/module-graph.json +13 -0
  242. package/test-projects/salesforce-cli/ai/graph/symbol-graph.json +148 -0
  243. package/test-projects/salesforce-cli/ai/graph/symbol-references.json +1 -0
  244. package/test-projects/salesforce-cli/ai/index-state.json +203 -0
  245. package/test-projects/salesforce-cli/ai/index.db +0 -0
  246. package/test-projects/salesforce-cli/ai/modules.json +12 -0
  247. package/test-projects/salesforce-cli/ai/project.json +14 -0
  248. package/test-projects/salesforce-cli/ai/repo-map.json +251 -0
  249. package/test-projects/salesforce-cli/ai/repo_map.json +69 -0
  250. package/test-projects/salesforce-cli/ai/repo_map.md +21 -0
  251. package/test-projects/salesforce-cli/ai/schema.json +5 -0
  252. package/test-projects/salesforce-cli/ai/summary.md +11 -0
  253. package/test-projects/salesforce-cli/ai/symbols.json +245 -0
  254. package/test-projects/salesforce-cli/ai/tech_stack.md +30 -0
  255. package/test-projects/salesforce-cli/ai/tools.json +10 -0
  256. package/test-projects/salesforce-cli/force-app/main/default/classes/AccountController.cls +24 -0
  257. package/test-projects/salesforce-cli/force-app/main/default/classes/OpportunityController.cls +25 -0
  258. package/test-projects/salesforce-cli/force-app/main/default/objects/Project__c.object.xml +45 -0
  259. package/test-projects/salesforce-cli/force-app/main/default/triggers/AccountTrigger.trigger +33 -0
  260. package/test-projects/salesforce-cli/sfdx-project.json +11 -0
  261. package/tests/e2e/README.md +85 -0
  262. package/tests/e2e/run-e2e.sh +88 -0
  263. package/tests/semanticContexts.test.ts +23 -25
@@ -0,0 +1,323 @@
1
+ {
2
+ "generated": "2026-03-18T01:15:17.465Z",
3
+ "totalFiles": 30,
4
+ "structure": {
5
+ "ai": {
6
+ "type": "directory",
7
+ "children": {
8
+ "ai_context.md": {
9
+ "type": "file",
10
+ "extension": "md"
11
+ },
12
+ "ai_rules.md": {
13
+ "type": "file",
14
+ "extension": "md"
15
+ },
16
+ "architecture.md": {
17
+ "type": "file",
18
+ "extension": "md"
19
+ },
20
+ "context": {
21
+ "type": "directory",
22
+ "children": {
23
+ "features": {
24
+ "type": "directory",
25
+ "children": {
26
+ "src.json": {
27
+ "type": "file",
28
+ "extension": "json"
29
+ }
30
+ }
31
+ },
32
+ "flows": {
33
+ "type": "directory",
34
+ "children": {
35
+ "auth..json": {
36
+ "type": "file",
37
+ "extension": "json"
38
+ },
39
+ "users..json": {
40
+ "type": "file",
41
+ "extension": "json"
42
+ }
43
+ }
44
+ }
45
+ }
46
+ },
47
+ "conventions.md": {
48
+ "type": "file",
49
+ "extension": "md"
50
+ },
51
+ "dependencies.json": {
52
+ "type": "file",
53
+ "extension": "json"
54
+ },
55
+ "entrypoints.md": {
56
+ "type": "file",
57
+ "extension": "md"
58
+ },
59
+ "modules.json": {
60
+ "type": "file",
61
+ "extension": "json"
62
+ },
63
+ "project.json": {
64
+ "type": "file",
65
+ "extension": "json"
66
+ },
67
+ "repo_map.json": {
68
+ "type": "file",
69
+ "extension": "json"
70
+ },
71
+ "repo_map.md": {
72
+ "type": "file",
73
+ "extension": "md"
74
+ },
75
+ "schema.json": {
76
+ "type": "file",
77
+ "extension": "json"
78
+ },
79
+ "summary.md": {
80
+ "type": "file",
81
+ "extension": "md"
82
+ },
83
+ "symbols.json": {
84
+ "type": "file",
85
+ "extension": "json"
86
+ },
87
+ "tech_stack.md": {
88
+ "type": "file",
89
+ "extension": "md"
90
+ },
91
+ "tools.json": {
92
+ "type": "file",
93
+ "extension": "json"
94
+ }
95
+ }
96
+ },
97
+ "package.json": {
98
+ "type": "file",
99
+ "extension": "json"
100
+ },
101
+ "src": {
102
+ "type": "directory",
103
+ "children": {
104
+ "app.module.ts": {
105
+ "type": "file",
106
+ "extension": "ts"
107
+ },
108
+ "auth": {
109
+ "type": "directory",
110
+ "children": {
111
+ "auth.controller.ts": {
112
+ "type": "file",
113
+ "extension": "ts"
114
+ },
115
+ "auth.module.ts": {
116
+ "type": "file",
117
+ "extension": "ts"
118
+ },
119
+ "auth.service.ts": {
120
+ "type": "file",
121
+ "extension": "ts"
122
+ },
123
+ "dto": {
124
+ "type": "directory",
125
+ "children": {
126
+ "login.dto.ts": {
127
+ "type": "file",
128
+ "extension": "ts"
129
+ }
130
+ }
131
+ },
132
+ "strategies": {
133
+ "type": "directory",
134
+ "children": {
135
+ "jwt.strategy.ts": {
136
+ "type": "file",
137
+ "extension": "ts"
138
+ }
139
+ }
140
+ }
141
+ }
142
+ },
143
+ "main.ts": {
144
+ "type": "file",
145
+ "extension": "ts"
146
+ },
147
+ "users": {
148
+ "type": "directory",
149
+ "children": {
150
+ "users.controller.ts": {
151
+ "type": "file",
152
+ "extension": "ts"
153
+ },
154
+ "users.module.ts": {
155
+ "type": "file",
156
+ "extension": "ts"
157
+ },
158
+ "users.service.ts": {
159
+ "type": "file",
160
+ "extension": "ts"
161
+ }
162
+ }
163
+ }
164
+ }
165
+ },
166
+ "tsconfig.json": {
167
+ "type": "file",
168
+ "extension": "json"
169
+ }
170
+ },
171
+ "files": [
172
+ {
173
+ "path": "ai/ai_context.md",
174
+ "name": "ai_context.md",
175
+ "extension": "md"
176
+ },
177
+ {
178
+ "path": "ai/ai_rules.md",
179
+ "name": "ai_rules.md",
180
+ "extension": "md"
181
+ },
182
+ {
183
+ "path": "ai/architecture.md",
184
+ "name": "architecture.md",
185
+ "extension": "md"
186
+ },
187
+ {
188
+ "path": "ai/context/features/src.json",
189
+ "name": "src.json",
190
+ "extension": "json"
191
+ },
192
+ {
193
+ "path": "ai/context/flows/auth..json",
194
+ "name": "auth..json",
195
+ "extension": "json"
196
+ },
197
+ {
198
+ "path": "ai/context/flows/users..json",
199
+ "name": "users..json",
200
+ "extension": "json"
201
+ },
202
+ {
203
+ "path": "ai/conventions.md",
204
+ "name": "conventions.md",
205
+ "extension": "md"
206
+ },
207
+ {
208
+ "path": "ai/dependencies.json",
209
+ "name": "dependencies.json",
210
+ "extension": "json"
211
+ },
212
+ {
213
+ "path": "ai/entrypoints.md",
214
+ "name": "entrypoints.md",
215
+ "extension": "md"
216
+ },
217
+ {
218
+ "path": "ai/modules.json",
219
+ "name": "modules.json",
220
+ "extension": "json"
221
+ },
222
+ {
223
+ "path": "ai/project.json",
224
+ "name": "project.json",
225
+ "extension": "json"
226
+ },
227
+ {
228
+ "path": "ai/repo_map.json",
229
+ "name": "repo_map.json",
230
+ "extension": "json"
231
+ },
232
+ {
233
+ "path": "ai/repo_map.md",
234
+ "name": "repo_map.md",
235
+ "extension": "md"
236
+ },
237
+ {
238
+ "path": "ai/schema.json",
239
+ "name": "schema.json",
240
+ "extension": "json"
241
+ },
242
+ {
243
+ "path": "ai/summary.md",
244
+ "name": "summary.md",
245
+ "extension": "md"
246
+ },
247
+ {
248
+ "path": "ai/symbols.json",
249
+ "name": "symbols.json",
250
+ "extension": "json"
251
+ },
252
+ {
253
+ "path": "ai/tech_stack.md",
254
+ "name": "tech_stack.md",
255
+ "extension": "md"
256
+ },
257
+ {
258
+ "path": "ai/tools.json",
259
+ "name": "tools.json",
260
+ "extension": "json"
261
+ },
262
+ {
263
+ "path": "package.json",
264
+ "name": "package.json",
265
+ "extension": "json"
266
+ },
267
+ {
268
+ "path": "src/app.module.ts",
269
+ "name": "app.module.ts",
270
+ "extension": "ts"
271
+ },
272
+ {
273
+ "path": "src/auth/auth.controller.ts",
274
+ "name": "auth.controller.ts",
275
+ "extension": "ts"
276
+ },
277
+ {
278
+ "path": "src/auth/auth.module.ts",
279
+ "name": "auth.module.ts",
280
+ "extension": "ts"
281
+ },
282
+ {
283
+ "path": "src/auth/auth.service.ts",
284
+ "name": "auth.service.ts",
285
+ "extension": "ts"
286
+ },
287
+ {
288
+ "path": "src/auth/dto/login.dto.ts",
289
+ "name": "login.dto.ts",
290
+ "extension": "ts"
291
+ },
292
+ {
293
+ "path": "src/auth/strategies/jwt.strategy.ts",
294
+ "name": "jwt.strategy.ts",
295
+ "extension": "ts"
296
+ },
297
+ {
298
+ "path": "src/main.ts",
299
+ "name": "main.ts",
300
+ "extension": "ts"
301
+ },
302
+ {
303
+ "path": "src/users/users.controller.ts",
304
+ "name": "users.controller.ts",
305
+ "extension": "ts"
306
+ },
307
+ {
308
+ "path": "src/users/users.module.ts",
309
+ "name": "users.module.ts",
310
+ "extension": "ts"
311
+ },
312
+ {
313
+ "path": "src/users/users.service.ts",
314
+ "name": "users.service.ts",
315
+ "extension": "ts"
316
+ },
317
+ {
318
+ "path": "tsconfig.json",
319
+ "name": "tsconfig.json",
320
+ "extension": "json"
321
+ }
322
+ ]
323
+ }
@@ -0,0 +1,141 @@
1
+ {
2
+ "generated": "2026-03-18T01:14:52.424Z",
3
+ "totalFiles": 12,
4
+ "structure": {
5
+ "package.json": {
6
+ "type": "file",
7
+ "extension": "json"
8
+ },
9
+ "src": {
10
+ "type": "directory",
11
+ "children": {
12
+ "app.module.ts": {
13
+ "type": "file",
14
+ "extension": "ts"
15
+ },
16
+ "auth": {
17
+ "type": "directory",
18
+ "children": {
19
+ "auth.controller.ts": {
20
+ "type": "file",
21
+ "extension": "ts"
22
+ },
23
+ "auth.module.ts": {
24
+ "type": "file",
25
+ "extension": "ts"
26
+ },
27
+ "auth.service.ts": {
28
+ "type": "file",
29
+ "extension": "ts"
30
+ },
31
+ "dto": {
32
+ "type": "directory",
33
+ "children": {
34
+ "login.dto.ts": {
35
+ "type": "file",
36
+ "extension": "ts"
37
+ }
38
+ }
39
+ },
40
+ "strategies": {
41
+ "type": "directory",
42
+ "children": {
43
+ "jwt.strategy.ts": {
44
+ "type": "file",
45
+ "extension": "ts"
46
+ }
47
+ }
48
+ }
49
+ }
50
+ },
51
+ "main.ts": {
52
+ "type": "file",
53
+ "extension": "ts"
54
+ },
55
+ "users": {
56
+ "type": "directory",
57
+ "children": {
58
+ "users.controller.ts": {
59
+ "type": "file",
60
+ "extension": "ts"
61
+ },
62
+ "users.module.ts": {
63
+ "type": "file",
64
+ "extension": "ts"
65
+ },
66
+ "users.service.ts": {
67
+ "type": "file",
68
+ "extension": "ts"
69
+ }
70
+ }
71
+ }
72
+ }
73
+ },
74
+ "tsconfig.json": {
75
+ "type": "file",
76
+ "extension": "json"
77
+ }
78
+ },
79
+ "files": [
80
+ {
81
+ "path": "package.json",
82
+ "name": "package.json",
83
+ "extension": "json"
84
+ },
85
+ {
86
+ "path": "src/app.module.ts",
87
+ "name": "app.module.ts",
88
+ "extension": "ts"
89
+ },
90
+ {
91
+ "path": "src/auth/auth.controller.ts",
92
+ "name": "auth.controller.ts",
93
+ "extension": "ts"
94
+ },
95
+ {
96
+ "path": "src/auth/auth.module.ts",
97
+ "name": "auth.module.ts",
98
+ "extension": "ts"
99
+ },
100
+ {
101
+ "path": "src/auth/auth.service.ts",
102
+ "name": "auth.service.ts",
103
+ "extension": "ts"
104
+ },
105
+ {
106
+ "path": "src/auth/dto/login.dto.ts",
107
+ "name": "login.dto.ts",
108
+ "extension": "ts"
109
+ },
110
+ {
111
+ "path": "src/auth/strategies/jwt.strategy.ts",
112
+ "name": "jwt.strategy.ts",
113
+ "extension": "ts"
114
+ },
115
+ {
116
+ "path": "src/main.ts",
117
+ "name": "main.ts",
118
+ "extension": "ts"
119
+ },
120
+ {
121
+ "path": "src/users/users.controller.ts",
122
+ "name": "users.controller.ts",
123
+ "extension": "ts"
124
+ },
125
+ {
126
+ "path": "src/users/users.module.ts",
127
+ "name": "users.module.ts",
128
+ "extension": "ts"
129
+ },
130
+ {
131
+ "path": "src/users/users.service.ts",
132
+ "name": "users.service.ts",
133
+ "extension": "ts"
134
+ },
135
+ {
136
+ "path": "tsconfig.json",
137
+ "name": "tsconfig.json",
138
+ "extension": "json"
139
+ }
140
+ ]
141
+ }
@@ -0,0 +1,39 @@
1
+ # Repository Map
2
+ ## package.json
3
+ - package.json
4
+
5
+ ## src
6
+ - app.module.ts
7
+ - auth.controller.ts
8
+ - auth.module.ts
9
+ - auth.service.ts
10
+ - jwt.strategy.ts
11
+ - login.dto.ts
12
+ - main.ts
13
+ - users.controller.ts
14
+ - users.module.ts
15
+ - users.service.ts
16
+
17
+ ## tsconfig.json
18
+ - tsconfig.json
19
+
20
+
21
+
22
+ # Repository Structure (Tree View)
23
+ ├── src/
24
+ │ ├── auth/
25
+ │ │ ├── dto/
26
+ │ │ │ └── login.dto.ts
27
+ │ │ ├── strategies/
28
+ │ │ │ └── jwt.strategy.ts
29
+ │ │ ├── auth.controller.ts
30
+ │ │ ├── auth.module.ts
31
+ │ │ └── auth.service.ts
32
+ │ ├── users/
33
+ │ │ ├── users.controller.ts
34
+ │ │ ├── users.module.ts
35
+ │ │ └── users.service.ts
36
+ │ ├── app.module.ts
37
+ │ └── main.ts
38
+ ├── package.json
39
+ └── tsconfig.json
@@ -0,0 +1,5 @@
1
+ {
2
+ "schemaVersion": "1.0",
3
+ "generatedBy": "ai-first",
4
+ "generatedAt": "2026-03-18T01:14:52.434Z"
5
+ }
@@ -0,0 +1,11 @@
1
+ # Repository Summary
2
+ - **Total files**: 12
3
+
4
+ ## Files by Extension
5
+ - .json: 2
6
+ - .ts: 10
7
+
8
+ ## Files by Directory
9
+ - package.json: 1
10
+ - src: 10
11
+ - tsconfig.json: 1