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,304 @@
1
+ {
2
+ "symbols": [
3
+ {
4
+ "id": "src/app.module.ts#AppModule",
5
+ "name": "AppModule",
6
+ "type": "class",
7
+ "file": "src/app.module.ts",
8
+ "line": 8,
9
+ "export": true
10
+ },
11
+ {
12
+ "id": "src/auth/auth.controller.ts#AuthController",
13
+ "name": "AuthController",
14
+ "type": "class",
15
+ "file": "src/auth/auth.controller.ts",
16
+ "line": 6,
17
+ "export": true
18
+ },
19
+ {
20
+ "id": "src/auth/auth.controller.ts#user",
21
+ "name": "user",
22
+ "type": "const",
23
+ "file": "src/auth/auth.controller.ts",
24
+ "line": 11,
25
+ "export": false
26
+ },
27
+ {
28
+ "id": "src/auth/auth.module.ts#AuthModule",
29
+ "name": "AuthModule",
30
+ "type": "class",
31
+ "file": "src/auth/auth.module.ts",
32
+ "line": 11,
33
+ "export": true
34
+ },
35
+ {
36
+ "id": "src/auth/auth.service.ts#AuthService",
37
+ "name": "AuthService",
38
+ "type": "class",
39
+ "file": "src/auth/auth.service.ts",
40
+ "line": 5,
41
+ "export": true
42
+ },
43
+ {
44
+ "id": "src/auth/auth.service.ts#payload",
45
+ "name": "payload",
46
+ "type": "const",
47
+ "file": "src/auth/auth.service.ts",
48
+ "line": 17,
49
+ "export": false
50
+ },
51
+ {
52
+ "id": "src/auth/dto/login.dto.ts#LoginDto",
53
+ "name": "LoginDto",
54
+ "type": "class",
55
+ "file": "src/auth/dto/login.dto.ts",
56
+ "line": 1,
57
+ "export": true
58
+ },
59
+ {
60
+ "id": "src/auth/strategies/jwt.strategy.ts#JwtStrategy",
61
+ "name": "JwtStrategy",
62
+ "type": "class",
63
+ "file": "src/auth/strategies/jwt.strategy.ts",
64
+ "line": 6,
65
+ "export": true
66
+ },
67
+ {
68
+ "id": "src/main.ts#bootstrap",
69
+ "name": "bootstrap",
70
+ "type": "function",
71
+ "file": "src/main.ts",
72
+ "line": 4,
73
+ "export": false
74
+ },
75
+ {
76
+ "id": "src/main.ts#app",
77
+ "name": "app",
78
+ "type": "const",
79
+ "file": "src/main.ts",
80
+ "line": 5,
81
+ "export": false
82
+ },
83
+ {
84
+ "id": "src/users/users.controller.ts#UsersController",
85
+ "name": "UsersController",
86
+ "type": "class",
87
+ "file": "src/users/users.controller.ts",
88
+ "line": 5,
89
+ "export": true
90
+ },
91
+ {
92
+ "id": "src/users/users.module.ts#UsersModule",
93
+ "name": "UsersModule",
94
+ "type": "class",
95
+ "file": "src/users/users.module.ts",
96
+ "line": 10,
97
+ "export": true
98
+ },
99
+ {
100
+ "id": "src/users/users.service.ts#User",
101
+ "name": "User",
102
+ "type": "interface",
103
+ "file": "src/users/users.service.ts",
104
+ "line": 3,
105
+ "export": false
106
+ },
107
+ {
108
+ "id": "src/users/users.service.ts#UsersService",
109
+ "name": "UsersService",
110
+ "type": "class",
111
+ "file": "src/users/users.service.ts",
112
+ "line": 10,
113
+ "export": true
114
+ },
115
+ {
116
+ "id": "src/users/users.service.ts#user",
117
+ "name": "user",
118
+ "type": "const",
119
+ "file": "src/users/users.service.ts",
120
+ "line": 20,
121
+ "export": false
122
+ },
123
+ {
124
+ "id": "src/users/users.service.ts#user",
125
+ "name": "user",
126
+ "type": "const",
127
+ "file": "src/users/users.service.ts",
128
+ "line": 26,
129
+ "export": false
130
+ },
131
+ {
132
+ "id": "src/users/users.service.ts#index",
133
+ "name": "index",
134
+ "type": "const",
135
+ "file": "src/users/users.service.ts",
136
+ "line": 32,
137
+ "export": false
138
+ },
139
+ {
140
+ "id": "src/users/users.service.ts#index",
141
+ "name": "index",
142
+ "type": "const",
143
+ "file": "src/users/users.service.ts",
144
+ "line": 39,
145
+ "export": false
146
+ }
147
+ ],
148
+ "relationships": [
149
+ {
150
+ "symbolId": "src/main.ts#bootstrap",
151
+ "targetId": "src/main.ts#app",
152
+ "type": "imports"
153
+ },
154
+ {
155
+ "symbolId": "src/main.ts#app",
156
+ "targetId": "src/main.ts#app",
157
+ "type": "imports"
158
+ },
159
+ {
160
+ "symbolId": "src/main.ts#bootstrap",
161
+ "targetId": "src/main.ts#app",
162
+ "type": "imports"
163
+ },
164
+ {
165
+ "symbolId": "src/main.ts#app",
166
+ "targetId": "src/main.ts#app",
167
+ "type": "imports"
168
+ },
169
+ {
170
+ "symbolId": "src/app.module.ts#AppModule",
171
+ "targetId": "src/app.module.ts#AppModule",
172
+ "type": "exports"
173
+ },
174
+ {
175
+ "symbolId": "src/auth/auth.controller.ts#AuthController",
176
+ "targetId": "src/auth/auth.controller.ts#AuthController",
177
+ "type": "exports"
178
+ },
179
+ {
180
+ "symbolId": "src/auth/auth.module.ts#AuthModule",
181
+ "targetId": "src/auth/auth.module.ts#AuthModule",
182
+ "type": "exports"
183
+ },
184
+ {
185
+ "symbolId": "src/auth/auth.service.ts#AuthService",
186
+ "targetId": "src/auth/auth.service.ts#AuthService",
187
+ "type": "exports"
188
+ },
189
+ {
190
+ "symbolId": "src/auth/dto/login.dto.ts#LoginDto",
191
+ "targetId": "src/auth/dto/login.dto.ts#LoginDto",
192
+ "type": "exports"
193
+ },
194
+ {
195
+ "symbolId": "src/auth/strategies/jwt.strategy.ts#JwtStrategy",
196
+ "targetId": "src/auth/strategies/jwt.strategy.ts#JwtStrategy",
197
+ "type": "exports"
198
+ },
199
+ {
200
+ "symbolId": "src/users/users.controller.ts#UsersController",
201
+ "targetId": "src/users/users.controller.ts#UsersController",
202
+ "type": "exports"
203
+ },
204
+ {
205
+ "symbolId": "src/users/users.module.ts#UsersModule",
206
+ "targetId": "src/users/users.module.ts#UsersModule",
207
+ "type": "exports"
208
+ },
209
+ {
210
+ "symbolId": "src/users/users.service.ts#UsersService",
211
+ "targetId": "src/users/users.service.ts#UsersService",
212
+ "type": "exports"
213
+ }
214
+ ],
215
+ "bySymbol": {
216
+ "src/main.ts#bootstrap": [
217
+ {
218
+ "symbolId": "src/main.ts#bootstrap",
219
+ "targetId": "src/main.ts#app",
220
+ "type": "imports"
221
+ },
222
+ {
223
+ "symbolId": "src/main.ts#bootstrap",
224
+ "targetId": "src/main.ts#app",
225
+ "type": "imports"
226
+ }
227
+ ],
228
+ "src/main.ts#app": [
229
+ {
230
+ "symbolId": "src/main.ts#app",
231
+ "targetId": "src/main.ts#app",
232
+ "type": "imports"
233
+ },
234
+ {
235
+ "symbolId": "src/main.ts#app",
236
+ "targetId": "src/main.ts#app",
237
+ "type": "imports"
238
+ }
239
+ ],
240
+ "src/app.module.ts#AppModule": [
241
+ {
242
+ "symbolId": "src/app.module.ts#AppModule",
243
+ "targetId": "src/app.module.ts#AppModule",
244
+ "type": "exports"
245
+ }
246
+ ],
247
+ "src/auth/auth.controller.ts#AuthController": [
248
+ {
249
+ "symbolId": "src/auth/auth.controller.ts#AuthController",
250
+ "targetId": "src/auth/auth.controller.ts#AuthController",
251
+ "type": "exports"
252
+ }
253
+ ],
254
+ "src/auth/auth.module.ts#AuthModule": [
255
+ {
256
+ "symbolId": "src/auth/auth.module.ts#AuthModule",
257
+ "targetId": "src/auth/auth.module.ts#AuthModule",
258
+ "type": "exports"
259
+ }
260
+ ],
261
+ "src/auth/auth.service.ts#AuthService": [
262
+ {
263
+ "symbolId": "src/auth/auth.service.ts#AuthService",
264
+ "targetId": "src/auth/auth.service.ts#AuthService",
265
+ "type": "exports"
266
+ }
267
+ ],
268
+ "src/auth/dto/login.dto.ts#LoginDto": [
269
+ {
270
+ "symbolId": "src/auth/dto/login.dto.ts#LoginDto",
271
+ "targetId": "src/auth/dto/login.dto.ts#LoginDto",
272
+ "type": "exports"
273
+ }
274
+ ],
275
+ "src/auth/strategies/jwt.strategy.ts#JwtStrategy": [
276
+ {
277
+ "symbolId": "src/auth/strategies/jwt.strategy.ts#JwtStrategy",
278
+ "targetId": "src/auth/strategies/jwt.strategy.ts#JwtStrategy",
279
+ "type": "exports"
280
+ }
281
+ ],
282
+ "src/users/users.controller.ts#UsersController": [
283
+ {
284
+ "symbolId": "src/users/users.controller.ts#UsersController",
285
+ "targetId": "src/users/users.controller.ts#UsersController",
286
+ "type": "exports"
287
+ }
288
+ ],
289
+ "src/users/users.module.ts#UsersModule": [
290
+ {
291
+ "symbolId": "src/users/users.module.ts#UsersModule",
292
+ "targetId": "src/users/users.module.ts#UsersModule",
293
+ "type": "exports"
294
+ }
295
+ ],
296
+ "src/users/users.service.ts#UsersService": [
297
+ {
298
+ "symbolId": "src/users/users.service.ts#UsersService",
299
+ "targetId": "src/users/users.service.ts#UsersService",
300
+ "type": "exports"
301
+ }
302
+ ]
303
+ }
304
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "src/main.ts#app": [
3
+ "src/main.ts#bootstrap"
4
+ ]
5
+ }
@@ -0,0 +1,259 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "lastIndexed": "2026-03-18T01:15:26.097Z",
4
+ "totalFiles": 36,
5
+ "files": {
6
+ "ai/ai_context.md": {
7
+ "path": "ai/ai_context.md",
8
+ "hash": "01e94675a8faa5d598f2782c09e3d5ad",
9
+ "mtime": 1773796492431.4038,
10
+ "size": 1892,
11
+ "indexedAt": "2026-03-18T01:15:26.096Z"
12
+ },
13
+ "ai/ai_rules.md": {
14
+ "path": "ai/ai_rules.md",
15
+ "hash": "0056c2b3f1d212bd870734924f577d09",
16
+ "mtime": 1773796492431.4038,
17
+ "size": 972,
18
+ "indexedAt": "2026-03-18T01:15:26.096Z"
19
+ },
20
+ "ai/architecture.md": {
21
+ "path": "ai/architecture.md",
22
+ "hash": "b763c79531f89caf3a6731d8c6b4f157",
23
+ "mtime": 1773796492425.4036,
24
+ "size": 787,
25
+ "indexedAt": "2026-03-18T01:15:26.096Z"
26
+ },
27
+ "ai/cache.json": {
28
+ "path": "ai/cache.json",
29
+ "hash": "318fbd2f58a06748fd9f6f05fcfdf676",
30
+ "mtime": 1773796517476.7944,
31
+ "size": 4031,
32
+ "indexedAt": "2026-03-18T01:15:26.096Z"
33
+ },
34
+ "ai/context/features/src.json": {
35
+ "path": "ai/context/features/src.json",
36
+ "hash": "e62d7f714439c64f0a0051436687b023",
37
+ "mtime": 1773796517477.7944,
38
+ "size": 558,
39
+ "indexedAt": "2026-03-18T01:15:26.096Z"
40
+ },
41
+ "ai/context/flows/auth..json": {
42
+ "path": "ai/context/flows/auth..json",
43
+ "hash": "064519d0be7978f42c408cf2f99edaf9",
44
+ "mtime": 1773796517477.7944,
45
+ "size": 182,
46
+ "indexedAt": "2026-03-18T01:15:26.096Z"
47
+ },
48
+ "ai/context/flows/users..json": {
49
+ "path": "ai/context/flows/users..json",
50
+ "hash": "743cdda74793f8b1d4fac2656267c24b",
51
+ "mtime": 1773796517477.7944,
52
+ "size": 189,
53
+ "indexedAt": "2026-03-18T01:15:26.096Z"
54
+ },
55
+ "ai/conventions.md": {
56
+ "path": "ai/conventions.md",
57
+ "hash": "9924468f87cfd5d2328fa48737aac075",
58
+ "mtime": 1773796492427.4036,
59
+ "size": 824,
60
+ "indexedAt": "2026-03-18T01:15:26.096Z"
61
+ },
62
+ "ai/dependencies.json": {
63
+ "path": "ai/dependencies.json",
64
+ "hash": "7dbe8e380f477563ed486728fc7d796e",
65
+ "mtime": 1773796492430.4038,
66
+ "size": 3698,
67
+ "indexedAt": "2026-03-18T01:15:26.096Z"
68
+ },
69
+ "ai/entrypoints.md": {
70
+ "path": "ai/entrypoints.md",
71
+ "hash": "31bc6c36186b7db7764086f994a34fcf",
72
+ "mtime": 1773796492426.4036,
73
+ "size": 383,
74
+ "indexedAt": "2026-03-18T01:15:26.096Z"
75
+ },
76
+ "ai/files.json": {
77
+ "path": "ai/files.json",
78
+ "hash": "8cb22184d6d9321b679f49d813a0ea04",
79
+ "mtime": 1773796526036.9277,
80
+ "size": 3650,
81
+ "indexedAt": "2026-03-18T01:15:26.096Z"
82
+ },
83
+ "ai/graph/module-graph.json": {
84
+ "path": "ai/graph/module-graph.json",
85
+ "hash": "0e4d69958d08b9aaf402549b2cfe2b3a",
86
+ "mtime": 1773796517467.7942,
87
+ "size": 582,
88
+ "indexedAt": "2026-03-18T01:15:26.096Z"
89
+ },
90
+ "ai/graph/symbol-graph.json": {
91
+ "path": "ai/graph/symbol-graph.json",
92
+ "hash": "986b59bfb6749a14615b087b9bad8319",
93
+ "mtime": 1773796517474.7942,
94
+ "size": 7954,
95
+ "indexedAt": "2026-03-18T01:15:26.096Z"
96
+ },
97
+ "ai/graph/symbol-references.json": {
98
+ "path": "ai/graph/symbol-references.json",
99
+ "hash": "79cb95e21ec8f98e24480e9ca0dca706",
100
+ "mtime": 1773796517474.7942,
101
+ "size": 58,
102
+ "indexedAt": "2026-03-18T01:15:26.096Z"
103
+ },
104
+ "ai/modules.json": {
105
+ "path": "ai/modules.json",
106
+ "hash": "11513775b7ba2c22e59f9bd915ea33fa",
107
+ "mtime": 1773796526036.9277,
108
+ "size": 448,
109
+ "indexedAt": "2026-03-18T01:15:26.096Z"
110
+ },
111
+ "ai/project.json": {
112
+ "path": "ai/project.json",
113
+ "hash": "3dccdf21bae258d5c57bd9001b4b39e6",
114
+ "mtime": 1773796492433.4038,
115
+ "size": 234,
116
+ "indexedAt": "2026-03-18T01:15:26.096Z"
117
+ },
118
+ "ai/repo-map.json": {
119
+ "path": "ai/repo-map.json",
120
+ "hash": "d0781e3898006491005ab603b6fe5f2a",
121
+ "mtime": 1773796517466.0496,
122
+ "size": 7196,
123
+ "indexedAt": "2026-03-18T01:15:26.096Z"
124
+ },
125
+ "ai/repo_map.json": {
126
+ "path": "ai/repo_map.json",
127
+ "hash": "7646f8ddcac9b2573aefd42e6dbf7186",
128
+ "mtime": 1773796492423.4036,
129
+ "size": 3168,
130
+ "indexedAt": "2026-03-18T01:15:26.096Z"
131
+ },
132
+ "ai/repo_map.md": {
133
+ "path": "ai/repo_map.md",
134
+ "hash": "d3b93db63ba7b92c1bcba98b7682b487",
135
+ "mtime": 1773796492423.4036,
136
+ "size": 868,
137
+ "indexedAt": "2026-03-18T01:15:26.096Z"
138
+ },
139
+ "ai/schema.json": {
140
+ "path": "ai/schema.json",
141
+ "hash": "b7af586eb15247e9b5c644920a03afa4",
142
+ "mtime": 1773796492433.4038,
143
+ "size": 102,
144
+ "indexedAt": "2026-03-18T01:15:26.097Z"
145
+ },
146
+ "ai/summary.md": {
147
+ "path": "ai/summary.md",
148
+ "hash": "c97180815314cb04e69623f705703641",
149
+ "mtime": 1773796492424.4036,
150
+ "size": 167,
151
+ "indexedAt": "2026-03-18T01:15:26.097Z"
152
+ },
153
+ "ai/symbols.json": {
154
+ "path": "ai/symbols.json",
155
+ "hash": "86f0962de99584aca04f8773850703ba",
156
+ "mtime": 1773796492428.4036,
157
+ "size": 13180,
158
+ "indexedAt": "2026-03-18T01:15:26.097Z"
159
+ },
160
+ "ai/tech_stack.md": {
161
+ "path": "ai/tech_stack.md",
162
+ "hash": "a84eb022eb8e5959365181abc81e5f9d",
163
+ "mtime": 1773796492426.4036,
164
+ "size": 410,
165
+ "indexedAt": "2026-03-18T01:15:26.097Z"
166
+ },
167
+ "ai/tools.json": {
168
+ "path": "ai/tools.json",
169
+ "hash": "b1356e52c74e9b3b6a0d397b790a4968",
170
+ "mtime": 1773796492433.4038,
171
+ "size": 138,
172
+ "indexedAt": "2026-03-18T01:15:26.097Z"
173
+ },
174
+ "package.json": {
175
+ "path": "package.json",
176
+ "hash": "54188023d3f4898db4ed5ecb0963ad7c",
177
+ "mtime": 1773776957019.264,
178
+ "size": 504,
179
+ "indexedAt": "2026-03-18T01:15:26.097Z"
180
+ },
181
+ "src/app.module.ts": {
182
+ "path": "src/app.module.ts",
183
+ "hash": "340f55f1f816bff231e0d7cceb640a6a",
184
+ "mtime": 1773777098469.8062,
185
+ "size": 220,
186
+ "indexedAt": "2026-03-18T01:15:26.097Z"
187
+ },
188
+ "src/auth/auth.controller.ts": {
189
+ "path": "src/auth/auth.controller.ts",
190
+ "hash": "042f9828f736d2cd17f81a9f38e92902",
191
+ "mtime": 1773776992110.6333,
192
+ "size": 724,
193
+ "indexedAt": "2026-03-18T01:15:26.097Z"
194
+ },
195
+ "src/auth/auth.module.ts": {
196
+ "path": "src/auth/auth.module.ts",
197
+ "hash": "d77f0da16ab8259e61017e585aa84ba1",
198
+ "mtime": 1773776981771.5234,
199
+ "size": 337,
200
+ "indexedAt": "2026-03-18T01:15:26.097Z"
201
+ },
202
+ "src/auth/auth.service.ts": {
203
+ "path": "src/auth/auth.service.ts",
204
+ "hash": "82d1c6ef4273438c42f5ec7a6d11af7e",
205
+ "mtime": 1773777003294.753,
206
+ "size": 781,
207
+ "indexedAt": "2026-03-18T01:15:26.097Z"
208
+ },
209
+ "src/auth/dto/login.dto.ts": {
210
+ "path": "src/auth/dto/login.dto.ts",
211
+ "hash": "ea30ef087078e1172bffc80a370ebff3",
212
+ "mtime": 1773777024191.979,
213
+ "size": 63,
214
+ "indexedAt": "2026-03-18T01:15:26.097Z"
215
+ },
216
+ "src/auth/strategies/jwt.strategy.ts": {
217
+ "path": "src/auth/strategies/jwt.strategy.ts",
218
+ "hash": "0f76815e6d72c4b1d3324713b6c09853",
219
+ "mtime": 1773777033163.077,
220
+ "size": 512,
221
+ "indexedAt": "2026-03-18T01:15:26.097Z"
222
+ },
223
+ "src/main.ts": {
224
+ "path": "src/main.ts",
225
+ "hash": "37685b56941c1e865638bae7fd76d81c",
226
+ "mtime": 1773777107555.9097,
227
+ "size": 275,
228
+ "indexedAt": "2026-03-18T01:15:26.097Z"
229
+ },
230
+ "src/users/users.controller.ts": {
231
+ "path": "src/users/users.controller.ts",
232
+ "hash": "41b4cfa3872766fb0578a901abd294fa",
233
+ "mtime": 1773777065483.4343,
234
+ "size": 749,
235
+ "indexedAt": "2026-03-18T01:15:26.097Z"
236
+ },
237
+ "src/users/users.module.ts": {
238
+ "path": "src/users/users.module.ts",
239
+ "hash": "f3eb2901994d3dcf77b5bb6766f937aa",
240
+ "mtime": 1773777054886.3164,
241
+ "size": 275,
242
+ "indexedAt": "2026-03-18T01:15:26.097Z"
243
+ },
244
+ "src/users/users.service.ts": {
245
+ "path": "src/users/users.service.ts",
246
+ "hash": "34c037f935826f26a9f72d53774a3223",
247
+ "mtime": 1773777078186.5767,
248
+ "size": 1068,
249
+ "indexedAt": "2026-03-18T01:15:26.097Z"
250
+ },
251
+ "tsconfig.json": {
252
+ "path": "tsconfig.json",
253
+ "hash": "f0902e207501d022c8048ac457251ecc",
254
+ "mtime": 1773777131755.1877,
255
+ "size": 546,
256
+ "indexedAt": "2026-03-18T01:15:26.097Z"
257
+ }
258
+ }
259
+ }
@@ -0,0 +1,19 @@
1
+ {
2
+ "modules": {
3
+ "src": {
4
+ "path": "src",
5
+ "files": [
6
+ "src/app.module.ts",
7
+ "src/auth/auth.controller.ts",
8
+ "src/auth/auth.module.ts",
9
+ "src/auth/auth.service.ts",
10
+ "src/auth/dto/login.dto.ts",
11
+ "src/auth/strategies/jwt.strategy.ts",
12
+ "src/main.ts",
13
+ "src/users/users.controller.ts",
14
+ "src/users/users.module.ts",
15
+ "src/users/users.service.ts"
16
+ ]
17
+ }
18
+ }
19
+ }
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "nestjs-backend",
3
+ "rootDir": "test-projects/nestjs-backend",
4
+ "features": [
5
+ "src"
6
+ ],
7
+ "flows": [
8
+ "auth.",
9
+ "users."
10
+ ],
11
+ "languages": [],
12
+ "frameworks": [],
13
+ "generatedAt": "2026-03-18T01:14:52.434Z"
14
+ }