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,174 @@
1
+ {
2
+ "files": [
3
+ {
4
+ "path": "__init__.py",
5
+ "name": "__init__.py",
6
+ "ext": "py"
7
+ },
8
+ {
9
+ "path": "ai/ai_context.md",
10
+ "name": "ai_context.md",
11
+ "ext": "md"
12
+ },
13
+ {
14
+ "path": "ai/ai_rules.md",
15
+ "name": "ai_rules.md",
16
+ "ext": "md"
17
+ },
18
+ {
19
+ "path": "ai/architecture.md",
20
+ "name": "architecture.md",
21
+ "ext": "md"
22
+ },
23
+ {
24
+ "path": "ai/cache.json",
25
+ "name": "cache.json",
26
+ "ext": "json"
27
+ },
28
+ {
29
+ "path": "ai/context/features/cli.json",
30
+ "name": "cli.json",
31
+ "ext": "json"
32
+ },
33
+ {
34
+ "path": "ai/context/flows/add_.json",
35
+ "name": "add_.json",
36
+ "ext": "json"
37
+ },
38
+ {
39
+ "path": "ai/context/flows/list_.json",
40
+ "name": "list_.json",
41
+ "ext": "json"
42
+ },
43
+ {
44
+ "path": "ai/context/flows/remove_.json",
45
+ "name": "remove_.json",
46
+ "ext": "json"
47
+ },
48
+ {
49
+ "path": "ai/conventions.md",
50
+ "name": "conventions.md",
51
+ "ext": "md"
52
+ },
53
+ {
54
+ "path": "ai/dependencies.json",
55
+ "name": "dependencies.json",
56
+ "ext": "json"
57
+ },
58
+ {
59
+ "path": "ai/entrypoints.md",
60
+ "name": "entrypoints.md",
61
+ "ext": "md"
62
+ },
63
+ {
64
+ "path": "ai/files.json",
65
+ "name": "files.json",
66
+ "ext": "json"
67
+ },
68
+ {
69
+ "path": "ai/graph/module-graph.json",
70
+ "name": "module-graph.json",
71
+ "ext": "json"
72
+ },
73
+ {
74
+ "path": "ai/graph/symbol-graph.json",
75
+ "name": "symbol-graph.json",
76
+ "ext": "json"
77
+ },
78
+ {
79
+ "path": "ai/graph/symbol-references.json",
80
+ "name": "symbol-references.json",
81
+ "ext": "json"
82
+ },
83
+ {
84
+ "path": "ai/modules.json",
85
+ "name": "modules.json",
86
+ "ext": "json"
87
+ },
88
+ {
89
+ "path": "ai/project.json",
90
+ "name": "project.json",
91
+ "ext": "json"
92
+ },
93
+ {
94
+ "path": "ai/repo-map.json",
95
+ "name": "repo-map.json",
96
+ "ext": "json"
97
+ },
98
+ {
99
+ "path": "ai/repo_map.json",
100
+ "name": "repo_map.json",
101
+ "ext": "json"
102
+ },
103
+ {
104
+ "path": "ai/repo_map.md",
105
+ "name": "repo_map.md",
106
+ "ext": "md"
107
+ },
108
+ {
109
+ "path": "ai/schema.json",
110
+ "name": "schema.json",
111
+ "ext": "json"
112
+ },
113
+ {
114
+ "path": "ai/summary.md",
115
+ "name": "summary.md",
116
+ "ext": "md"
117
+ },
118
+ {
119
+ "path": "ai/symbols.json",
120
+ "name": "symbols.json",
121
+ "ext": "json"
122
+ },
123
+ {
124
+ "path": "ai/tech_stack.md",
125
+ "name": "tech_stack.md",
126
+ "ext": "md"
127
+ },
128
+ {
129
+ "path": "ai/tools.json",
130
+ "name": "tools.json",
131
+ "ext": "json"
132
+ },
133
+ {
134
+ "path": "cli/__init__.py",
135
+ "name": "__init__.py",
136
+ "ext": "py"
137
+ },
138
+ {
139
+ "path": "cli/add_command.py",
140
+ "name": "add_command.py",
141
+ "ext": "py"
142
+ },
143
+ {
144
+ "path": "cli/list_command.py",
145
+ "name": "list_command.py",
146
+ "ext": "py"
147
+ },
148
+ {
149
+ "path": "cli/remove_command.py",
150
+ "name": "remove_command.py",
151
+ "ext": "py"
152
+ },
153
+ {
154
+ "path": "main.py",
155
+ "name": "main.py",
156
+ "ext": "py"
157
+ },
158
+ {
159
+ "path": "models/__init__.py",
160
+ "name": "__init__.py",
161
+ "ext": "py"
162
+ },
163
+ {
164
+ "path": "models/task.py",
165
+ "name": "task.py",
166
+ "ext": "py"
167
+ },
168
+ {
169
+ "path": "models/task_repository.py",
170
+ "name": "task_repository.py",
171
+ "ext": "py"
172
+ }
173
+ ]
174
+ }
@@ -0,0 +1,83 @@
1
+ {
2
+ "nodes": [
3
+ {
4
+ "id": "cli",
5
+ "type": "feature",
6
+ "label": "cli",
7
+ "metadata": {
8
+ "path": "cli",
9
+ "fileCount": 4
10
+ }
11
+ },
12
+ {
13
+ "id": "add_",
14
+ "type": "flow",
15
+ "label": "add_",
16
+ "metadata": {
17
+ "entrypoint": "cli/add_command.py",
18
+ "fileCount": 1
19
+ }
20
+ },
21
+ {
22
+ "id": "list_",
23
+ "type": "flow",
24
+ "label": "list_",
25
+ "metadata": {
26
+ "entrypoint": "cli/list_command.py",
27
+ "fileCount": 1
28
+ }
29
+ },
30
+ {
31
+ "id": "remove_",
32
+ "type": "flow",
33
+ "label": "remove_",
34
+ "metadata": {
35
+ "entrypoint": "cli/remove_command.py",
36
+ "fileCount": 1
37
+ }
38
+ }
39
+ ],
40
+ "edges": [
41
+ {
42
+ "from": "cli",
43
+ "to": "add_",
44
+ "type": "contains"
45
+ },
46
+ {
47
+ "from": "cli",
48
+ "to": "list_",
49
+ "type": "contains"
50
+ },
51
+ {
52
+ "from": "cli",
53
+ "to": "remove_",
54
+ "type": "contains"
55
+ },
56
+ {
57
+ "from": "add_",
58
+ "to": "cli/add_command.py",
59
+ "type": "implements"
60
+ },
61
+ {
62
+ "from": "list_",
63
+ "to": "cli/list_command.py",
64
+ "type": "implements"
65
+ },
66
+ {
67
+ "from": "remove_",
68
+ "to": "cli/remove_command.py",
69
+ "type": "implements"
70
+ }
71
+ ],
72
+ "metadata": {
73
+ "generated": "2026-03-18T01:15:49.478Z",
74
+ "sources": [
75
+ "features",
76
+ "flows",
77
+ "symbols",
78
+ "dependencies"
79
+ ],
80
+ "nodeCount": 4,
81
+ "edgeCount": 6
82
+ }
83
+ }
@@ -0,0 +1,31 @@
1
+ {
2
+ "modules": [
3
+ {
4
+ "name": "cli",
5
+ "paths": [
6
+ "cli/__init__.py",
7
+ "cli/add_command.py",
8
+ "cli/list_command.py",
9
+ "cli/remove_command.py"
10
+ ]
11
+ },
12
+ {
13
+ "name": "models",
14
+ "paths": [
15
+ "models/__init__.py",
16
+ "models/task.py",
17
+ "models/task_repository.py"
18
+ ]
19
+ }
20
+ ],
21
+ "dependencies": [
22
+ {
23
+ "from": "models",
24
+ "to": "datetime"
25
+ },
26
+ {
27
+ "from": "models",
28
+ "to": "models.task"
29
+ }
30
+ ]
31
+ }
@@ -0,0 +1,358 @@
1
+ {
2
+ "symbols": [
3
+ {
4
+ "id": "cli/add_command.py#execute",
5
+ "name": "execute",
6
+ "type": "function",
7
+ "file": "cli/add_command.py",
8
+ "line": 1,
9
+ "export": true
10
+ },
11
+ {
12
+ "id": "cli/list_command.py#execute",
13
+ "name": "execute",
14
+ "type": "function",
15
+ "file": "cli/list_command.py",
16
+ "line": 1,
17
+ "export": true
18
+ },
19
+ {
20
+ "id": "cli/remove_command.py#execute",
21
+ "name": "execute",
22
+ "type": "function",
23
+ "file": "cli/remove_command.py",
24
+ "line": 1,
25
+ "export": true
26
+ },
27
+ {
28
+ "id": "main.py#main",
29
+ "name": "main",
30
+ "type": "function",
31
+ "file": "main.py",
32
+ "line": 5,
33
+ "export": true
34
+ },
35
+ {
36
+ "id": "models/task.py#Task",
37
+ "name": "Task",
38
+ "type": "class",
39
+ "file": "models/task.py",
40
+ "line": 4,
41
+ "export": true
42
+ },
43
+ {
44
+ "id": "models/task.py#__init__",
45
+ "name": "__init__",
46
+ "type": "function",
47
+ "file": "models/task.py",
48
+ "line": 5,
49
+ "export": true
50
+ },
51
+ {
52
+ "id": "models/task.py#to_dict",
53
+ "name": "to_dict",
54
+ "type": "function",
55
+ "file": "models/task.py",
56
+ "line": 12,
57
+ "export": true
58
+ },
59
+ {
60
+ "id": "models/task_repository.py#TaskRepository",
61
+ "name": "TaskRepository",
62
+ "type": "class",
63
+ "file": "models/task_repository.py",
64
+ "line": 5,
65
+ "export": true
66
+ },
67
+ {
68
+ "id": "models/task_repository.py#__init__",
69
+ "name": "__init__",
70
+ "type": "function",
71
+ "file": "models/task_repository.py",
72
+ "line": 6,
73
+ "export": true
74
+ },
75
+ {
76
+ "id": "models/task_repository.py#create",
77
+ "name": "create",
78
+ "type": "function",
79
+ "file": "models/task_repository.py",
80
+ "line": 10,
81
+ "export": true
82
+ },
83
+ {
84
+ "id": "models/task_repository.py#find_all",
85
+ "name": "find_all",
86
+ "type": "function",
87
+ "file": "models/task_repository.py",
88
+ "line": 16,
89
+ "export": true
90
+ },
91
+ {
92
+ "id": "models/task_repository.py#find_by_id",
93
+ "name": "find_by_id",
94
+ "type": "function",
95
+ "file": "models/task_repository.py",
96
+ "line": 21,
97
+ "export": true
98
+ },
99
+ {
100
+ "id": "models/task_repository.py#update",
101
+ "name": "update",
102
+ "type": "function",
103
+ "file": "models/task_repository.py",
104
+ "line": 27,
105
+ "export": true
106
+ },
107
+ {
108
+ "id": "models/task_repository.py#delete",
109
+ "name": "delete",
110
+ "type": "function",
111
+ "file": "models/task_repository.py",
112
+ "line": 39,
113
+ "export": true
114
+ }
115
+ ],
116
+ "relationships": [
117
+ {
118
+ "symbolId": "models/task_repository.py#TaskRepository",
119
+ "targetId": "models/task.py#Task",
120
+ "type": "imports"
121
+ },
122
+ {
123
+ "symbolId": "models/task_repository.py#__init__",
124
+ "targetId": "models/task.py#Task",
125
+ "type": "imports"
126
+ },
127
+ {
128
+ "symbolId": "models/task_repository.py#create",
129
+ "targetId": "models/task.py#Task",
130
+ "type": "imports"
131
+ },
132
+ {
133
+ "symbolId": "models/task_repository.py#find_all",
134
+ "targetId": "models/task.py#Task",
135
+ "type": "imports"
136
+ },
137
+ {
138
+ "symbolId": "models/task_repository.py#find_by_id",
139
+ "targetId": "models/task.py#Task",
140
+ "type": "imports"
141
+ },
142
+ {
143
+ "symbolId": "models/task_repository.py#update",
144
+ "targetId": "models/task.py#Task",
145
+ "type": "imports"
146
+ },
147
+ {
148
+ "symbolId": "models/task_repository.py#delete",
149
+ "targetId": "models/task.py#Task",
150
+ "type": "imports"
151
+ },
152
+ {
153
+ "symbolId": "cli/add_command.py#execute",
154
+ "targetId": "cli/add_command.py#execute",
155
+ "type": "exports"
156
+ },
157
+ {
158
+ "symbolId": "cli/list_command.py#execute",
159
+ "targetId": "cli/list_command.py#execute",
160
+ "type": "exports"
161
+ },
162
+ {
163
+ "symbolId": "cli/remove_command.py#execute",
164
+ "targetId": "cli/remove_command.py#execute",
165
+ "type": "exports"
166
+ },
167
+ {
168
+ "symbolId": "main.py#main",
169
+ "targetId": "main.py#main",
170
+ "type": "exports"
171
+ },
172
+ {
173
+ "symbolId": "models/task.py#Task",
174
+ "targetId": "models/task.py#Task",
175
+ "type": "exports"
176
+ },
177
+ {
178
+ "symbolId": "models/task.py#__init__",
179
+ "targetId": "models/task.py#__init__",
180
+ "type": "exports"
181
+ },
182
+ {
183
+ "symbolId": "models/task.py#to_dict",
184
+ "targetId": "models/task.py#to_dict",
185
+ "type": "exports"
186
+ },
187
+ {
188
+ "symbolId": "models/task_repository.py#TaskRepository",
189
+ "targetId": "models/task_repository.py#TaskRepository",
190
+ "type": "exports"
191
+ },
192
+ {
193
+ "symbolId": "models/task_repository.py#__init__",
194
+ "targetId": "models/task_repository.py#__init__",
195
+ "type": "exports"
196
+ },
197
+ {
198
+ "symbolId": "models/task_repository.py#create",
199
+ "targetId": "models/task_repository.py#create",
200
+ "type": "exports"
201
+ },
202
+ {
203
+ "symbolId": "models/task_repository.py#find_all",
204
+ "targetId": "models/task_repository.py#find_all",
205
+ "type": "exports"
206
+ },
207
+ {
208
+ "symbolId": "models/task_repository.py#find_by_id",
209
+ "targetId": "models/task_repository.py#find_by_id",
210
+ "type": "exports"
211
+ },
212
+ {
213
+ "symbolId": "models/task_repository.py#update",
214
+ "targetId": "models/task_repository.py#update",
215
+ "type": "exports"
216
+ },
217
+ {
218
+ "symbolId": "models/task_repository.py#delete",
219
+ "targetId": "models/task_repository.py#delete",
220
+ "type": "exports"
221
+ }
222
+ ],
223
+ "bySymbol": {
224
+ "models/task_repository.py#TaskRepository": [
225
+ {
226
+ "symbolId": "models/task_repository.py#TaskRepository",
227
+ "targetId": "models/task.py#Task",
228
+ "type": "imports"
229
+ },
230
+ {
231
+ "symbolId": "models/task_repository.py#TaskRepository",
232
+ "targetId": "models/task_repository.py#TaskRepository",
233
+ "type": "exports"
234
+ }
235
+ ],
236
+ "models/task_repository.py#__init__": [
237
+ {
238
+ "symbolId": "models/task_repository.py#__init__",
239
+ "targetId": "models/task.py#Task",
240
+ "type": "imports"
241
+ },
242
+ {
243
+ "symbolId": "models/task_repository.py#__init__",
244
+ "targetId": "models/task_repository.py#__init__",
245
+ "type": "exports"
246
+ }
247
+ ],
248
+ "models/task_repository.py#create": [
249
+ {
250
+ "symbolId": "models/task_repository.py#create",
251
+ "targetId": "models/task.py#Task",
252
+ "type": "imports"
253
+ },
254
+ {
255
+ "symbolId": "models/task_repository.py#create",
256
+ "targetId": "models/task_repository.py#create",
257
+ "type": "exports"
258
+ }
259
+ ],
260
+ "models/task_repository.py#find_all": [
261
+ {
262
+ "symbolId": "models/task_repository.py#find_all",
263
+ "targetId": "models/task.py#Task",
264
+ "type": "imports"
265
+ },
266
+ {
267
+ "symbolId": "models/task_repository.py#find_all",
268
+ "targetId": "models/task_repository.py#find_all",
269
+ "type": "exports"
270
+ }
271
+ ],
272
+ "models/task_repository.py#find_by_id": [
273
+ {
274
+ "symbolId": "models/task_repository.py#find_by_id",
275
+ "targetId": "models/task.py#Task",
276
+ "type": "imports"
277
+ },
278
+ {
279
+ "symbolId": "models/task_repository.py#find_by_id",
280
+ "targetId": "models/task_repository.py#find_by_id",
281
+ "type": "exports"
282
+ }
283
+ ],
284
+ "models/task_repository.py#update": [
285
+ {
286
+ "symbolId": "models/task_repository.py#update",
287
+ "targetId": "models/task.py#Task",
288
+ "type": "imports"
289
+ },
290
+ {
291
+ "symbolId": "models/task_repository.py#update",
292
+ "targetId": "models/task_repository.py#update",
293
+ "type": "exports"
294
+ }
295
+ ],
296
+ "models/task_repository.py#delete": [
297
+ {
298
+ "symbolId": "models/task_repository.py#delete",
299
+ "targetId": "models/task.py#Task",
300
+ "type": "imports"
301
+ },
302
+ {
303
+ "symbolId": "models/task_repository.py#delete",
304
+ "targetId": "models/task_repository.py#delete",
305
+ "type": "exports"
306
+ }
307
+ ],
308
+ "cli/add_command.py#execute": [
309
+ {
310
+ "symbolId": "cli/add_command.py#execute",
311
+ "targetId": "cli/add_command.py#execute",
312
+ "type": "exports"
313
+ }
314
+ ],
315
+ "cli/list_command.py#execute": [
316
+ {
317
+ "symbolId": "cli/list_command.py#execute",
318
+ "targetId": "cli/list_command.py#execute",
319
+ "type": "exports"
320
+ }
321
+ ],
322
+ "cli/remove_command.py#execute": [
323
+ {
324
+ "symbolId": "cli/remove_command.py#execute",
325
+ "targetId": "cli/remove_command.py#execute",
326
+ "type": "exports"
327
+ }
328
+ ],
329
+ "main.py#main": [
330
+ {
331
+ "symbolId": "main.py#main",
332
+ "targetId": "main.py#main",
333
+ "type": "exports"
334
+ }
335
+ ],
336
+ "models/task.py#Task": [
337
+ {
338
+ "symbolId": "models/task.py#Task",
339
+ "targetId": "models/task.py#Task",
340
+ "type": "exports"
341
+ }
342
+ ],
343
+ "models/task.py#__init__": [
344
+ {
345
+ "symbolId": "models/task.py#__init__",
346
+ "targetId": "models/task.py#__init__",
347
+ "type": "exports"
348
+ }
349
+ ],
350
+ "models/task.py#to_dict": [
351
+ {
352
+ "symbolId": "models/task.py#to_dict",
353
+ "targetId": "models/task.py#to_dict",
354
+ "type": "exports"
355
+ }
356
+ ]
357
+ }
358
+ }
@@ -0,0 +1,11 @@
1
+ {
2
+ "models/task.py#Task": [
3
+ "models/task_repository.py#TaskRepository",
4
+ "models/task_repository.py#__init__",
5
+ "models/task_repository.py#create",
6
+ "models/task_repository.py#find_all",
7
+ "models/task_repository.py#find_by_id",
8
+ "models/task_repository.py#update",
9
+ "models/task_repository.py#delete"
10
+ ]
11
+ }