ai-first-cli 1.2.3 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (470) hide show
  1. package/CHANGELOG.md +292 -6
  2. package/README.md +24 -4
  3. package/dist/analyzers/symbols.d.ts.map +1 -1
  4. package/dist/analyzers/symbols.js +9 -7
  5. package/dist/analyzers/symbols.js.map +1 -1
  6. package/dist/analyzers/techStack.d.ts.map +1 -1
  7. package/dist/analyzers/techStack.js +198 -3
  8. package/dist/analyzers/techStack.js.map +1 -1
  9. package/dist/commands/ai-first.d.ts.map +1 -1
  10. package/dist/commands/ai-first.js +14 -13
  11. package/dist/commands/ai-first.js.map +1 -1
  12. package/dist/core/analysis/architectureDetector.d.ts +37 -0
  13. package/dist/core/analysis/architectureDetector.d.ts.map +1 -0
  14. package/dist/core/analysis/architectureDetector.js +316 -0
  15. package/dist/core/analysis/architectureDetector.js.map +1 -0
  16. package/dist/core/analysis/callGraphBuilder.d.ts +37 -0
  17. package/dist/core/analysis/callGraphBuilder.d.ts.map +1 -0
  18. package/dist/core/analysis/callGraphBuilder.js +101 -0
  19. package/dist/core/analysis/callGraphBuilder.js.map +1 -0
  20. package/dist/core/analysis/dependencyAnalyzer.d.ts +45 -0
  21. package/dist/core/analysis/dependencyAnalyzer.d.ts.map +1 -0
  22. package/dist/core/analysis/dependencyAnalyzer.js +98 -0
  23. package/dist/core/analysis/dependencyAnalyzer.js.map +1 -0
  24. package/dist/core/analysis/index.d.ts +5 -0
  25. package/dist/core/analysis/index.d.ts.map +1 -0
  26. package/dist/core/analysis/index.js +5 -0
  27. package/dist/core/analysis/index.js.map +1 -0
  28. package/dist/core/analysis/inheritanceAnalyzer.d.ts +35 -0
  29. package/dist/core/analysis/inheritanceAnalyzer.d.ts.map +1 -0
  30. package/dist/core/analysis/inheritanceAnalyzer.js +115 -0
  31. package/dist/core/analysis/inheritanceAnalyzer.js.map +1 -0
  32. package/dist/core/ccp.d.ts.map +1 -1
  33. package/dist/core/ccp.js +3 -2
  34. package/dist/core/ccp.js.map +1 -1
  35. package/dist/core/generation/aiContextGenerator.d.ts +71 -0
  36. package/dist/core/generation/aiContextGenerator.d.ts.map +1 -0
  37. package/dist/core/generation/aiContextGenerator.js +217 -0
  38. package/dist/core/generation/aiContextGenerator.js.map +1 -0
  39. package/dist/core/generation/architectureGenerator.d.ts +17 -0
  40. package/dist/core/generation/architectureGenerator.d.ts.map +1 -0
  41. package/dist/core/generation/architectureGenerator.js +160 -0
  42. package/dist/core/generation/architectureGenerator.js.map +1 -0
  43. package/dist/core/generation/flowGenerator.d.ts +52 -0
  44. package/dist/core/generation/flowGenerator.d.ts.map +1 -0
  45. package/dist/core/generation/flowGenerator.js +164 -0
  46. package/dist/core/generation/flowGenerator.js.map +1 -0
  47. package/dist/core/generation/index.d.ts +4 -0
  48. package/dist/core/generation/index.d.ts.map +1 -0
  49. package/dist/core/generation/index.js +4 -0
  50. package/dist/core/generation/index.js.map +1 -0
  51. package/dist/core/hierarchyGenerator.d.ts.map +1 -1
  52. package/dist/core/hierarchyGenerator.js +3 -2
  53. package/dist/core/hierarchyGenerator.js.map +1 -1
  54. package/dist/core/parsers/index.d.ts +20 -0
  55. package/dist/core/parsers/index.d.ts.map +1 -0
  56. package/dist/core/parsers/index.js +76 -0
  57. package/dist/core/parsers/index.js.map +1 -0
  58. package/dist/core/parsers/pythonParser.d.ts +37 -0
  59. package/dist/core/parsers/pythonParser.d.ts.map +1 -0
  60. package/dist/core/parsers/pythonParser.js +229 -0
  61. package/dist/core/parsers/pythonParser.js.map +1 -0
  62. package/dist/core/parsers/typescriptParser.d.ts +54 -0
  63. package/dist/core/parsers/typescriptParser.d.ts.map +1 -0
  64. package/dist/core/parsers/typescriptParser.js +291 -0
  65. package/dist/core/parsers/typescriptParser.js.map +1 -0
  66. package/dist/core/pipeline.d.ts +42 -0
  67. package/dist/core/pipeline.d.ts.map +1 -0
  68. package/dist/core/pipeline.js +172 -0
  69. package/dist/core/pipeline.js.map +1 -0
  70. package/dist/core/semanticContexts.js +1 -1
  71. package/dist/core/semanticContexts.js.map +1 -1
  72. package/dist/utils/constants.d.ts +46 -0
  73. package/dist/utils/constants.d.ts.map +1 -0
  74. package/dist/utils/constants.js +67 -0
  75. package/dist/utils/constants.js.map +1 -0
  76. package/package.json +1 -1
  77. package/run-all-tests.sh +184 -0
  78. package/src/analyzers/symbols.ts +12 -7
  79. package/src/analyzers/techStack.ts +203 -3
  80. package/src/commands/ai-first.ts +14 -13
  81. package/src/core/analysis/architectureDetector.ts +487 -0
  82. package/src/core/analysis/callGraphBuilder.ts +158 -0
  83. package/src/core/analysis/dependencyAnalyzer.ts +167 -0
  84. package/src/core/analysis/index.ts +28 -0
  85. package/src/core/analysis/inheritanceAnalyzer.ts +169 -0
  86. package/src/core/ccp.ts +3 -2
  87. package/src/core/generation/aiContextGenerator.ts +335 -0
  88. package/src/core/generation/architectureGenerator.ts +200 -0
  89. package/src/core/generation/flowGenerator.ts +238 -0
  90. package/src/core/generation/index.ts +16 -0
  91. package/src/core/hierarchyGenerator.ts +3 -2
  92. package/src/core/parsers/index.ts +99 -0
  93. package/src/core/parsers/pythonParser.ts +302 -0
  94. package/src/core/parsers/typescriptParser.ts +445 -0
  95. package/src/core/pipeline.ts +241 -0
  96. package/src/core/semanticContexts.ts +1 -1
  97. package/src/utils/constants.ts +78 -0
  98. package/tests/analysis.test.ts +283 -0
  99. package/tests/architectureDetector.test.ts +137 -0
  100. package/tests/generation.test.ts +216 -0
  101. package/tests/parserRegistry.test.ts +139 -0
  102. package/tests/pipeline.integration.test.ts +245 -0
  103. package/tests/pythonParser.test.ts +210 -0
  104. package/tests/typescriptParser.test.ts +197 -0
  105. package/.ai-dev/index.db +0 -0
  106. package/ANALISIS_COMPLETO.md +0 -424
  107. package/ANALISIS_MEJORAS.md +0 -327
  108. package/BUGS.md +0 -455
  109. package/PLAN_MEJORAS.md +0 -216
  110. package/STATUS_ADAPTADORES +0 -126
  111. package/TEST_RESULTS.md +0 -198
  112. package/TEST_RESULTS_COMPARATIVE.md +0 -159
  113. package/TEST_RESULTS_COMPLETE.md +0 -127
  114. package/TEST_RESULTS_COMPREHENSIVE.md +0 -208
  115. package/TEST_RESULTS_PHASE1.md +0 -420
  116. package/ai/dependencies.json +0 -15
  117. package/ai/graph/knowledge-graph.json +0 -12
  118. package/ai-context/ai_context.md +0 -130
  119. package/ai-context/ai_rules.md +0 -54
  120. package/ai-context/architecture.md +0 -136
  121. package/ai-context/cache.json +0 -2349
  122. package/ai-context/ccp/jira-123/context.json +0 -7
  123. package/ai-context/context/features/commands.json +0 -18
  124. package/ai-context/context/features/src.json +0 -61
  125. package/ai-context/context/features/test-projects.json +0 -69
  126. package/ai-context/context/flows/account.json +0 -9
  127. package/ai-context/context/flows/ai-first.json +0 -9
  128. package/ai-context/context/flows/api.json +0 -9
  129. package/ai-context/context/flows/auth.json +0 -13
  130. package/ai-context/context/flows/category.json +0 -12
  131. package/ai-context/context/flows/comment.json +0 -16
  132. package/ai-context/context/flows/dashboard.json +0 -9
  133. package/ai-context/context/flows/doctor.json +0 -9
  134. package/ai-context/context/flows/explore.json +0 -9
  135. package/ai-context/context/flows/login.json +0 -9
  136. package/ai-context/context/flows/opportunity.json +0 -9
  137. package/ai-context/context/flows/post.json +0 -18
  138. package/ai-context/context/flows/routes.json +0 -19
  139. package/ai-context/context/flows/user.json +0 -20
  140. package/ai-context/context/flows/users.json +0 -9
  141. package/ai-context/context/flows/views.json +0 -14
  142. package/ai-context/context/repo.json +0 -56
  143. package/ai-context/context/utils.json +0 -7
  144. package/ai-context/conventions.md +0 -53
  145. package/ai-context/dependencies.json +0 -2978
  146. package/ai-context/embeddings.json +0 -23828
  147. package/ai-context/entrypoints.md +0 -42
  148. package/ai-context/files.json +0 -2944
  149. package/ai-context/git/commit-activity.json +0 -8646
  150. package/ai-context/git/recent-features.json +0 -1
  151. package/ai-context/git/recent-files.json +0 -52
  152. package/ai-context/git/recent-flows.json +0 -1
  153. package/ai-context/graph/knowledge-graph.json +0 -44129
  154. package/ai-context/graph/module-graph.json +0 -866
  155. package/ai-context/graph/symbol-graph.json +0 -200622
  156. package/ai-context/graph/symbol-references.json +0 -6778
  157. package/ai-context/hierarchy.json +0 -20
  158. package/ai-context/index-state.json +0 -4487
  159. package/ai-context/index.db +0 -0
  160. package/ai-context/modules.json +0 -933
  161. package/ai-context/project.json +0 -30
  162. package/ai-context/repo_map.json +0 -9116
  163. package/ai-context/repo_map.md +0 -2061
  164. package/ai-context/schema.json +0 -5
  165. package/ai-context/summary.md +0 -47
  166. package/ai-context/symbols.json +0 -65351
  167. package/ai-context/tech_stack.md +0 -47
  168. package/ai-context/tools.json +0 -10
  169. package/test-projects/django-app/.ai-dev/index.db +0 -0
  170. package/test-projects/django-app/ai-context/ai_context.md +0 -92
  171. package/test-projects/django-app/ai-context/ai_rules.md +0 -47
  172. package/test-projects/django-app/ai-context/architecture.md +0 -57
  173. package/test-projects/django-app/ai-context/cache.json +0 -169
  174. package/test-projects/django-app/ai-context/context/flows/views.json +0 -10
  175. package/test-projects/django-app/ai-context/conventions.md +0 -51
  176. package/test-projects/django-app/ai-context/dependencies.json +0 -312
  177. package/test-projects/django-app/ai-context/entrypoints.md +0 -4
  178. package/test-projects/django-app/ai-context/files.json +0 -209
  179. package/test-projects/django-app/ai-context/graph/knowledge-graph.json +0 -36
  180. package/test-projects/django-app/ai-context/graph/module-graph.json +0 -145
  181. package/test-projects/django-app/ai-context/graph/symbol-graph.json +0 -1488
  182. package/test-projects/django-app/ai-context/graph/symbol-references.json +0 -1
  183. package/test-projects/django-app/ai-context/index-state.json +0 -294
  184. package/test-projects/django-app/ai-context/index.db +0 -0
  185. package/test-projects/django-app/ai-context/modules.json +0 -35
  186. package/test-projects/django-app/ai-context/project.json +0 -11
  187. package/test-projects/django-app/ai-context/repo_map.json +0 -412
  188. package/test-projects/django-app/ai-context/repo_map.md +0 -105
  189. package/test-projects/django-app/ai-context/schema.json +0 -5
  190. package/test-projects/django-app/ai-context/summary.md +0 -15
  191. package/test-projects/django-app/ai-context/symbols.json +0 -1
  192. package/test-projects/django-app/ai-context/tech_stack.md +0 -32
  193. package/test-projects/django-app/ai-context/tools.json +0 -10
  194. package/test-projects/express-api/ai-context/ai_context.md +0 -112
  195. package/test-projects/express-api/ai-context/ai_rules.md +0 -50
  196. package/test-projects/express-api/ai-context/architecture.md +0 -62
  197. package/test-projects/express-api/ai-context/context/features/controllers.json +0 -13
  198. package/test-projects/express-api/ai-context/context/features/services.json +0 -13
  199. package/test-projects/express-api/ai-context/context/flows/auth.json +0 -12
  200. package/test-projects/express-api/ai-context/context/flows/user.json +0 -13
  201. package/test-projects/express-api/ai-context/conventions.md +0 -51
  202. package/test-projects/express-api/ai-context/dependencies.json +0 -54
  203. package/test-projects/express-api/ai-context/entrypoints.md +0 -17
  204. package/test-projects/express-api/ai-context/modules.json +0 -30
  205. package/test-projects/express-api/ai-context/project.json +0 -15
  206. package/test-projects/express-api/ai-context/repo_map.json +0 -100
  207. package/test-projects/express-api/ai-context/repo_map.md +0 -36
  208. package/test-projects/express-api/ai-context/schema.json +0 -5
  209. package/test-projects/express-api/ai-context/summary.md +0 -14
  210. package/test-projects/express-api/ai-context/symbols.json +0 -7
  211. package/test-projects/express-api/ai-context/tech_stack.md +0 -38
  212. package/test-projects/express-api/ai-context/tools.json +0 -10
  213. package/test-projects/fastapi-app/.ai-dev/index.db +0 -0
  214. package/test-projects/fastapi-app/ai-context/ai_context.md +0 -89
  215. package/test-projects/fastapi-app/ai-context/ai_rules.md +0 -47
  216. package/test-projects/fastapi-app/ai-context/architecture.md +0 -39
  217. package/test-projects/fastapi-app/ai-context/cache.json +0 -125
  218. package/test-projects/fastapi-app/ai-context/conventions.md +0 -51
  219. package/test-projects/fastapi-app/ai-context/dependencies.json +0 -244
  220. package/test-projects/fastapi-app/ai-context/entrypoints.md +0 -4
  221. package/test-projects/fastapi-app/ai-context/files.json +0 -154
  222. package/test-projects/fastapi-app/ai-context/graph/knowledge-graph.json +0 -15
  223. package/test-projects/fastapi-app/ai-context/graph/module-graph.json +0 -78
  224. package/test-projects/fastapi-app/ai-context/graph/symbol-graph.json +0 -1724
  225. package/test-projects/fastapi-app/ai-context/graph/symbol-references.json +0 -51
  226. package/test-projects/fastapi-app/ai-context/index-state.json +0 -217
  227. package/test-projects/fastapi-app/ai-context/index.db +0 -0
  228. package/test-projects/fastapi-app/ai-context/modules.json +0 -16
  229. package/test-projects/fastapi-app/ai-context/project.json +0 -9
  230. package/test-projects/fastapi-app/ai-context/repo_map.json +0 -298
  231. package/test-projects/fastapi-app/ai-context/repo_map.md +0 -74
  232. package/test-projects/fastapi-app/ai-context/schema.json +0 -5
  233. package/test-projects/fastapi-app/ai-context/summary.md +0 -12
  234. package/test-projects/fastapi-app/ai-context/symbols.json +0 -1
  235. package/test-projects/fastapi-app/ai-context/tech_stack.md +0 -32
  236. package/test-projects/fastapi-app/ai-context/tools.json +0 -10
  237. package/test-projects/flask-app/.ai-dev/index.db +0 -0
  238. package/test-projects/flask-app/ai-context/ai_context.md +0 -94
  239. package/test-projects/flask-app/ai-context/ai_rules.md +0 -47
  240. package/test-projects/flask-app/ai-context/architecture.md +0 -49
  241. package/test-projects/flask-app/ai-context/cache.json +0 -157
  242. package/test-projects/flask-app/ai-context/context/features/app.json +0 -25
  243. package/test-projects/flask-app/ai-context/context/flows/routes.json +0 -14
  244. package/test-projects/flask-app/ai-context/conventions.md +0 -51
  245. package/test-projects/flask-app/ai-context/dependencies.json +0 -298
  246. package/test-projects/flask-app/ai-context/entrypoints.md +0 -4
  247. package/test-projects/flask-app/ai-context/files.json +0 -194
  248. package/test-projects/flask-app/ai-context/graph/knowledge-graph.json +0 -60
  249. package/test-projects/flask-app/ai-context/graph/module-graph.json +0 -95
  250. package/test-projects/flask-app/ai-context/graph/symbol-graph.json +0 -1448
  251. package/test-projects/flask-app/ai-context/graph/symbol-references.json +0 -45
  252. package/test-projects/flask-app/ai-context/index-state.json +0 -273
  253. package/test-projects/flask-app/ai-context/index.db +0 -0
  254. package/test-projects/flask-app/ai-context/modules.json +0 -21
  255. package/test-projects/flask-app/ai-context/project.json +0 -13
  256. package/test-projects/flask-app/ai-context/repo_map.json +0 -400
  257. package/test-projects/flask-app/ai-context/repo_map.md +0 -98
  258. package/test-projects/flask-app/ai-context/schema.json +0 -5
  259. package/test-projects/flask-app/ai-context/summary.md +0 -13
  260. package/test-projects/flask-app/ai-context/symbols.json +0 -1
  261. package/test-projects/flask-app/ai-context/tech_stack.md +0 -32
  262. package/test-projects/flask-app/ai-context/tools.json +0 -10
  263. package/test-projects/laravel-app/.ai-dev/index.db +0 -0
  264. package/test-projects/laravel-app/ai-context/ai_context.md +0 -97
  265. package/test-projects/laravel-app/ai-context/ai_rules.md +0 -47
  266. package/test-projects/laravel-app/ai-context/architecture.md +0 -60
  267. package/test-projects/laravel-app/ai-context/cache.json +0 -161
  268. package/test-projects/laravel-app/ai-context/context/features/app.json +0 -21
  269. package/test-projects/laravel-app/ai-context/context/flows/.json +0 -9
  270. package/test-projects/laravel-app/ai-context/context/flows/category.json +0 -12
  271. package/test-projects/laravel-app/ai-context/context/flows/comment.json +0 -12
  272. package/test-projects/laravel-app/ai-context/context/flows/post.json +0 -12
  273. package/test-projects/laravel-app/ai-context/context/flows/unnamed.json +0 -9
  274. package/test-projects/laravel-app/ai-context/conventions.md +0 -51
  275. package/test-projects/laravel-app/ai-context/dependencies.json +0 -6
  276. package/test-projects/laravel-app/ai-context/entrypoints.md +0 -4
  277. package/test-projects/laravel-app/ai-context/files.json +0 -199
  278. package/test-projects/laravel-app/ai-context/graph/knowledge-graph.json +0 -98
  279. package/test-projects/laravel-app/ai-context/graph/module-graph.json +0 -30
  280. package/test-projects/laravel-app/ai-context/graph/symbol-graph.json +0 -5
  281. package/test-projects/laravel-app/ai-context/graph/symbol-references.json +0 -1
  282. package/test-projects/laravel-app/ai-context/index-state.json +0 -280
  283. package/test-projects/laravel-app/ai-context/index.db +0 -0
  284. package/test-projects/laravel-app/ai-context/modules.json +0 -29
  285. package/test-projects/laravel-app/ai-context/project.json +0 -17
  286. package/test-projects/laravel-app/ai-context/repo_map.json +0 -419
  287. package/test-projects/laravel-app/ai-context/repo_map.md +0 -106
  288. package/test-projects/laravel-app/ai-context/schema.json +0 -5
  289. package/test-projects/laravel-app/ai-context/summary.md +0 -15
  290. package/test-projects/laravel-app/ai-context/symbols.json +0 -1
  291. package/test-projects/laravel-app/ai-context/tech_stack.md +0 -34
  292. package/test-projects/laravel-app/ai-context/tools.json +0 -10
  293. package/test-projects/nestjs-backend/.ai-dev/index.db +0 -0
  294. package/test-projects/nestjs-backend/ai-context/ai_context.md +0 -111
  295. package/test-projects/nestjs-backend/ai-context/ai_rules.md +0 -52
  296. package/test-projects/nestjs-backend/ai-context/architecture.md +0 -49
  297. package/test-projects/nestjs-backend/ai-context/cache.json +0 -169
  298. package/test-projects/nestjs-backend/ai-context/context/features/src.json +0 -23
  299. package/test-projects/nestjs-backend/ai-context/context/flows/auth.controller.json +0 -14
  300. package/test-projects/nestjs-backend/ai-context/context/flows/auth.json +0 -10
  301. package/test-projects/nestjs-backend/ai-context/context/flows/users..json +0 -10
  302. package/test-projects/nestjs-backend/ai-context/context/flows/users.controller.json +0 -14
  303. package/test-projects/nestjs-backend/ai-context/context/flows/users.json +0 -10
  304. package/test-projects/nestjs-backend/ai-context/conventions.md +0 -52
  305. package/test-projects/nestjs-backend/ai-context/dependencies.json +0 -152
  306. package/test-projects/nestjs-backend/ai-context/entrypoints.md +0 -18
  307. package/test-projects/nestjs-backend/ai-context/files.json +0 -209
  308. package/test-projects/nestjs-backend/ai-context/graph/knowledge-graph.json +0 -132
  309. package/test-projects/nestjs-backend/ai-context/graph/module-graph.json +0 -29
  310. package/test-projects/nestjs-backend/ai-context/graph/symbol-graph.json +0 -304
  311. package/test-projects/nestjs-backend/ai-context/graph/symbol-references.json +0 -5
  312. package/test-projects/nestjs-backend/ai-context/index-state.json +0 -294
  313. package/test-projects/nestjs-backend/ai-context/index.db +0 -0
  314. package/test-projects/nestjs-backend/ai-context/modules.json +0 -19
  315. package/test-projects/nestjs-backend/ai-context/project.json +0 -18
  316. package/test-projects/nestjs-backend/ai-context/repo_map.json +0 -427
  317. package/test-projects/nestjs-backend/ai-context/repo_map.md +0 -104
  318. package/test-projects/nestjs-backend/ai-context/schema.json +0 -5
  319. package/test-projects/nestjs-backend/ai-context/summary.md +0 -13
  320. package/test-projects/nestjs-backend/ai-context/symbols.json +0 -1
  321. package/test-projects/nestjs-backend/ai-context/tech_stack.md +0 -38
  322. package/test-projects/nestjs-backend/ai-context/tools.json +0 -10
  323. package/test-projects/python-cli/.ai-dev/index.db +0 -0
  324. package/test-projects/python-cli/ai-context/ai_context.md +0 -95
  325. package/test-projects/python-cli/ai-context/ai_rules.md +0 -47
  326. package/test-projects/python-cli/ai-context/architecture.md +0 -55
  327. package/test-projects/python-cli/ai-context/cache.json +0 -149
  328. package/test-projects/python-cli/ai-context/context/features/cli.json +0 -16
  329. package/test-projects/python-cli/ai-context/context/flows/list_.json +0 -9
  330. package/test-projects/python-cli/ai-context/context/flows/remove_.json +0 -9
  331. package/test-projects/python-cli/ai-context/conventions.md +0 -51
  332. package/test-projects/python-cli/ai-context/dependencies.json +0 -66
  333. package/test-projects/python-cli/ai-context/entrypoints.md +0 -4
  334. package/test-projects/python-cli/ai-context/files.json +0 -184
  335. package/test-projects/python-cli/ai-context/graph/knowledge-graph.json +0 -83
  336. package/test-projects/python-cli/ai-context/graph/module-graph.json +0 -31
  337. package/test-projects/python-cli/ai-context/graph/symbol-graph.json +0 -358
  338. package/test-projects/python-cli/ai-context/graph/symbol-references.json +0 -11
  339. package/test-projects/python-cli/ai-context/index-state.json +0 -259
  340. package/test-projects/python-cli/ai-context/index.db +0 -0
  341. package/test-projects/python-cli/ai-context/modules.json +0 -21
  342. package/test-projects/python-cli/ai-context/project.json +0 -15
  343. package/test-projects/python-cli/ai-context/repo_map.json +0 -367
  344. package/test-projects/python-cli/ai-context/repo_map.md +0 -93
  345. package/test-projects/python-cli/ai-context/schema.json +0 -5
  346. package/test-projects/python-cli/ai-context/summary.md +0 -14
  347. package/test-projects/python-cli/ai-context/symbols.json +0 -1
  348. package/test-projects/python-cli/ai-context/tech_stack.md +0 -32
  349. package/test-projects/python-cli/ai-context/tools.json +0 -10
  350. package/test-projects/rails-app/.ai-dev/index.db +0 -0
  351. package/test-projects/rails-app/ai-context/ai_context.md +0 -94
  352. package/test-projects/rails-app/ai-context/ai_rules.md +0 -47
  353. package/test-projects/rails-app/ai-context/architecture.md +0 -49
  354. package/test-projects/rails-app/ai-context/cache.json +0 -193
  355. package/test-projects/rails-app/ai-context/context/features/app.json +0 -24
  356. package/test-projects/rails-app/ai-context/context/features/config.json +0 -13
  357. package/test-projects/rails-app/ai-context/context/flows/application.json +0 -9
  358. package/test-projects/rails-app/ai-context/context/flows/application_.json +0 -9
  359. package/test-projects/rails-app/ai-context/context/flows/comments.json +0 -11
  360. package/test-projects/rails-app/ai-context/context/flows/comments_.json +0 -11
  361. package/test-projects/rails-app/ai-context/context/flows/posts.json +0 -11
  362. package/test-projects/rails-app/ai-context/context/flows/posts_.json +0 -11
  363. package/test-projects/rails-app/ai-context/context/flows/routes.json +0 -9
  364. package/test-projects/rails-app/ai-context/context/flows/users.json +0 -11
  365. package/test-projects/rails-app/ai-context/context/flows/users_.json +0 -11
  366. package/test-projects/rails-app/ai-context/conventions.md +0 -51
  367. package/test-projects/rails-app/ai-context/dependencies.json +0 -6
  368. package/test-projects/rails-app/ai-context/entrypoints.md +0 -4
  369. package/test-projects/rails-app/ai-context/files.json +0 -239
  370. package/test-projects/rails-app/ai-context/graph/knowledge-graph.json +0 -130
  371. package/test-projects/rails-app/ai-context/graph/module-graph.json +0 -27
  372. package/test-projects/rails-app/ai-context/graph/symbol-graph.json +0 -5
  373. package/test-projects/rails-app/ai-context/graph/symbol-references.json +0 -1
  374. package/test-projects/rails-app/ai-context/index-state.json +0 -336
  375. package/test-projects/rails-app/ai-context/index.db +0 -0
  376. package/test-projects/rails-app/ai-context/modules.json +0 -26
  377. package/test-projects/rails-app/ai-context/project.json +0 -22
  378. package/test-projects/rails-app/ai-context/repo_map.json +0 -486
  379. package/test-projects/rails-app/ai-context/repo_map.md +0 -117
  380. package/test-projects/rails-app/ai-context/schema.json +0 -5
  381. package/test-projects/rails-app/ai-context/summary.md +0 -13
  382. package/test-projects/rails-app/ai-context/symbols.json +0 -1
  383. package/test-projects/rails-app/ai-context/tech_stack.md +0 -32
  384. package/test-projects/rails-app/ai-context/tools.json +0 -10
  385. package/test-projects/react-app/.ai-dev/index.db +0 -0
  386. package/test-projects/react-app/ai-context/ai_context.md +0 -96
  387. package/test-projects/react-app/ai-context/ai_rules.md +0 -49
  388. package/test-projects/react-app/ai-context/architecture.md +0 -39
  389. package/test-projects/react-app/ai-context/cache.json +0 -153
  390. package/test-projects/react-app/ai-context/context/features/src.json +0 -18
  391. package/test-projects/react-app/ai-context/context/flows/UsersPage.json +0 -14
  392. package/test-projects/react-app/ai-context/context/flows/dashboard.json +0 -9
  393. package/test-projects/react-app/ai-context/context/flows/login.json +0 -9
  394. package/test-projects/react-app/ai-context/context/flows/users.json +0 -9
  395. package/test-projects/react-app/ai-context/conventions.md +0 -52
  396. package/test-projects/react-app/ai-context/dependencies.json +0 -128
  397. package/test-projects/react-app/ai-context/entrypoints.md +0 -4
  398. package/test-projects/react-app/ai-context/files.json +0 -189
  399. package/test-projects/react-app/ai-context/graph/knowledge-graph.json +0 -112
  400. package/test-projects/react-app/ai-context/graph/module-graph.json +0 -31
  401. package/test-projects/react-app/ai-context/graph/symbol-graph.json +0 -868
  402. package/test-projects/react-app/ai-context/graph/symbol-references.json +0 -31
  403. package/test-projects/react-app/ai-context/index-state.json +0 -266
  404. package/test-projects/react-app/ai-context/index.db +0 -0
  405. package/test-projects/react-app/ai-context/modules.json +0 -17
  406. package/test-projects/react-app/ai-context/project.json +0 -16
  407. package/test-projects/react-app/ai-context/repo_map.json +0 -391
  408. package/test-projects/react-app/ai-context/repo_map.md +0 -94
  409. package/test-projects/react-app/ai-context/schema.json +0 -5
  410. package/test-projects/react-app/ai-context/summary.md +0 -13
  411. package/test-projects/react-app/ai-context/symbols.json +0 -1
  412. package/test-projects/react-app/ai-context/tech_stack.md +0 -39
  413. package/test-projects/react-app/ai-context/tools.json +0 -10
  414. package/test-projects/salesforce-cli/.ai-dev/index.db +0 -0
  415. package/test-projects/salesforce-cli/ai-context/ai_context.md +0 -89
  416. package/test-projects/salesforce-cli/ai-context/ai_rules.md +0 -47
  417. package/test-projects/salesforce-cli/ai-context/architecture.md +0 -39
  418. package/test-projects/salesforce-cli/ai-context/cache.json +0 -125
  419. package/test-projects/salesforce-cli/ai-context/context/features/force-app.json +0 -14
  420. package/test-projects/salesforce-cli/ai-context/context/flows/account.json +0 -9
  421. package/test-projects/salesforce-cli/ai-context/context/flows/opportunity.json +0 -9
  422. package/test-projects/salesforce-cli/ai-context/conventions.md +0 -51
  423. package/test-projects/salesforce-cli/ai-context/dependencies.json +0 -6
  424. package/test-projects/salesforce-cli/ai-context/entrypoints.md +0 -4
  425. package/test-projects/salesforce-cli/ai-context/files.json +0 -154
  426. package/test-projects/salesforce-cli/ai-context/graph/knowledge-graph.json +0 -64
  427. package/test-projects/salesforce-cli/ai-context/graph/module-graph.json +0 -13
  428. package/test-projects/salesforce-cli/ai-context/graph/symbol-graph.json +0 -148
  429. package/test-projects/salesforce-cli/ai-context/graph/symbol-references.json +0 -1
  430. package/test-projects/salesforce-cli/ai-context/index-state.json +0 -217
  431. package/test-projects/salesforce-cli/ai-context/index.db +0 -0
  432. package/test-projects/salesforce-cli/ai-context/modules.json +0 -12
  433. package/test-projects/salesforce-cli/ai-context/project.json +0 -14
  434. package/test-projects/salesforce-cli/ai-context/repo_map.json +0 -328
  435. package/test-projects/salesforce-cli/ai-context/repo_map.md +0 -80
  436. package/test-projects/salesforce-cli/ai-context/schema.json +0 -5
  437. package/test-projects/salesforce-cli/ai-context/summary.md +0 -13
  438. package/test-projects/salesforce-cli/ai-context/symbols.json +0 -1
  439. package/test-projects/salesforce-cli/ai-context/tech_stack.md +0 -31
  440. package/test-projects/salesforce-cli/ai-context/tools.json +0 -10
  441. package/test-projects/spring-boot-app/.ai-dev/index.db +0 -0
  442. package/test-projects/spring-boot-app/ai-context/ai_context.md +0 -91
  443. package/test-projects/spring-boot-app/ai-context/ai_rules.md +0 -48
  444. package/test-projects/spring-boot-app/ai-context/architecture.md +0 -39
  445. package/test-projects/spring-boot-app/ai-context/cache.json +0 -173
  446. package/test-projects/spring-boot-app/ai-context/context/features/src.json +0 -26
  447. package/test-projects/spring-boot-app/ai-context/context/flows/PostController.json +0 -19
  448. package/test-projects/spring-boot-app/ai-context/context/flows/UserController.json +0 -19
  449. package/test-projects/spring-boot-app/ai-context/context/flows/comment.json +0 -11
  450. package/test-projects/spring-boot-app/ai-context/context/flows/post.json +0 -14
  451. package/test-projects/spring-boot-app/ai-context/context/flows/user.json +0 -14
  452. package/test-projects/spring-boot-app/ai-context/conventions.md +0 -52
  453. package/test-projects/spring-boot-app/ai-context/dependencies.json +0 -326
  454. package/test-projects/spring-boot-app/ai-context/entrypoints.md +0 -4
  455. package/test-projects/spring-boot-app/ai-context/files.json +0 -214
  456. package/test-projects/spring-boot-app/ai-context/graph/knowledge-graph.json +0 -231
  457. package/test-projects/spring-boot-app/ai-context/graph/module-graph.json +0 -22
  458. package/test-projects/spring-boot-app/ai-context/graph/symbol-graph.json +0 -794
  459. package/test-projects/spring-boot-app/ai-context/graph/symbol-references.json +0 -70
  460. package/test-projects/spring-boot-app/ai-context/index-state.json +0 -301
  461. package/test-projects/spring-boot-app/ai-context/index.db +0 -0
  462. package/test-projects/spring-boot-app/ai-context/modules.json +0 -21
  463. package/test-projects/spring-boot-app/ai-context/project.json +0 -17
  464. package/test-projects/spring-boot-app/ai-context/repo_map.json +0 -461
  465. package/test-projects/spring-boot-app/ai-context/repo_map.md +0 -109
  466. package/test-projects/spring-boot-app/ai-context/schema.json +0 -5
  467. package/test-projects/spring-boot-app/ai-context/summary.md +0 -12
  468. package/test-projects/spring-boot-app/ai-context/symbols.json +0 -1
  469. package/test-projects/spring-boot-app/ai-context/tech_stack.md +0 -32
  470. package/test-projects/spring-boot-app/ai-context/tools.json +0 -10
@@ -1,400 +0,0 @@
1
- {
2
- "generated": "2026-03-18T19:21:50.770Z",
3
- "totalFiles": 38,
4
- "structure": {
5
- "README.md": {
6
- "type": "file",
7
- "extension": "md"
8
- },
9
- "ai": {
10
- "type": "directory",
11
- "children": {
12
- "ai_context.md": {
13
- "type": "file",
14
- "extension": "md"
15
- },
16
- "ai_rules.md": {
17
- "type": "file",
18
- "extension": "md"
19
- },
20
- "architecture.md": {
21
- "type": "file",
22
- "extension": "md"
23
- },
24
- "cache.json": {
25
- "type": "file",
26
- "extension": "json"
27
- },
28
- "context": {
29
- "type": "directory",
30
- "children": {
31
- "features": {
32
- "type": "directory",
33
- "children": {
34
- "app.json": {
35
- "type": "file",
36
- "extension": "json"
37
- }
38
- }
39
- },
40
- "flows": {
41
- "type": "directory",
42
- "children": {
43
- "routes.json": {
44
- "type": "file",
45
- "extension": "json"
46
- }
47
- }
48
- }
49
- }
50
- },
51
- "conventions.md": {
52
- "type": "file",
53
- "extension": "md"
54
- },
55
- "dependencies.json": {
56
- "type": "file",
57
- "extension": "json"
58
- },
59
- "entrypoints.md": {
60
- "type": "file",
61
- "extension": "md"
62
- },
63
- "files.json": {
64
- "type": "file",
65
- "extension": "json"
66
- },
67
- "graph": {
68
- "type": "directory",
69
- "children": {
70
- "module-graph.json": {
71
- "type": "file",
72
- "extension": "json"
73
- },
74
- "symbol-graph.json": {
75
- "type": "file",
76
- "extension": "json"
77
- },
78
- "symbol-references.json": {
79
- "type": "file",
80
- "extension": "json"
81
- }
82
- }
83
- },
84
- "index-state.json": {
85
- "type": "file",
86
- "extension": "json"
87
- },
88
- "modules.json": {
89
- "type": "file",
90
- "extension": "json"
91
- },
92
- "project.json": {
93
- "type": "file",
94
- "extension": "json"
95
- },
96
- "repo-map.json": {
97
- "type": "file",
98
- "extension": "json"
99
- },
100
- "repo_map.json": {
101
- "type": "file",
102
- "extension": "json"
103
- },
104
- "repo_map.md": {
105
- "type": "file",
106
- "extension": "md"
107
- },
108
- "schema.json": {
109
- "type": "file",
110
- "extension": "json"
111
- },
112
- "summary.md": {
113
- "type": "file",
114
- "extension": "md"
115
- },
116
- "symbols.json": {
117
- "type": "file",
118
- "extension": "json"
119
- },
120
- "tech_stack.md": {
121
- "type": "file",
122
- "extension": "md"
123
- },
124
- "tools.json": {
125
- "type": "file",
126
- "extension": "json"
127
- }
128
- }
129
- },
130
- "app": {
131
- "type": "directory",
132
- "children": {
133
- "__init__.py": {
134
- "type": "file",
135
- "extension": "py"
136
- },
137
- "api": {
138
- "type": "directory",
139
- "children": {
140
- "__init__.py": {
141
- "type": "file",
142
- "extension": "py"
143
- },
144
- "routes.py": {
145
- "type": "file",
146
- "extension": "py"
147
- }
148
- }
149
- },
150
- "auth": {
151
- "type": "directory",
152
- "children": {
153
- "__init__.py": {
154
- "type": "file",
155
- "extension": "py"
156
- },
157
- "forms.py": {
158
- "type": "file",
159
- "extension": "py"
160
- },
161
- "routes.py": {
162
- "type": "file",
163
- "extension": "py"
164
- }
165
- }
166
- },
167
- "blog": {
168
- "type": "directory",
169
- "children": {
170
- "__init__.py": {
171
- "type": "file",
172
- "extension": "py"
173
- },
174
- "forms.py": {
175
- "type": "file",
176
- "extension": "py"
177
- },
178
- "routes.py": {
179
- "type": "file",
180
- "extension": "py"
181
- }
182
- }
183
- },
184
- "main": {
185
- "type": "directory",
186
- "children": {
187
- "__init__.py": {
188
- "type": "file",
189
- "extension": "py"
190
- },
191
- "routes.py": {
192
- "type": "file",
193
- "extension": "py"
194
- }
195
- }
196
- },
197
- "models.py": {
198
- "type": "file",
199
- "extension": "py"
200
- }
201
- }
202
- },
203
- "config.py": {
204
- "type": "file",
205
- "extension": "py"
206
- }
207
- },
208
- "files": [
209
- {
210
- "path": "README.md",
211
- "name": "README.md",
212
- "extension": "md"
213
- },
214
- {
215
- "path": "ai/ai_context.md",
216
- "name": "ai_context.md",
217
- "extension": "md"
218
- },
219
- {
220
- "path": "ai/ai_rules.md",
221
- "name": "ai_rules.md",
222
- "extension": "md"
223
- },
224
- {
225
- "path": "ai/architecture.md",
226
- "name": "architecture.md",
227
- "extension": "md"
228
- },
229
- {
230
- "path": "ai/cache.json",
231
- "name": "cache.json",
232
- "extension": "json"
233
- },
234
- {
235
- "path": "ai/context/features/app.json",
236
- "name": "app.json",
237
- "extension": "json"
238
- },
239
- {
240
- "path": "ai/context/flows/routes.json",
241
- "name": "routes.json",
242
- "extension": "json"
243
- },
244
- {
245
- "path": "ai/conventions.md",
246
- "name": "conventions.md",
247
- "extension": "md"
248
- },
249
- {
250
- "path": "ai/dependencies.json",
251
- "name": "dependencies.json",
252
- "extension": "json"
253
- },
254
- {
255
- "path": "ai/entrypoints.md",
256
- "name": "entrypoints.md",
257
- "extension": "md"
258
- },
259
- {
260
- "path": "ai/files.json",
261
- "name": "files.json",
262
- "extension": "json"
263
- },
264
- {
265
- "path": "ai/graph/module-graph.json",
266
- "name": "module-graph.json",
267
- "extension": "json"
268
- },
269
- {
270
- "path": "ai/graph/symbol-graph.json",
271
- "name": "symbol-graph.json",
272
- "extension": "json"
273
- },
274
- {
275
- "path": "ai/graph/symbol-references.json",
276
- "name": "symbol-references.json",
277
- "extension": "json"
278
- },
279
- {
280
- "path": "ai/index-state.json",
281
- "name": "index-state.json",
282
- "extension": "json"
283
- },
284
- {
285
- "path": "ai/modules.json",
286
- "name": "modules.json",
287
- "extension": "json"
288
- },
289
- {
290
- "path": "ai/project.json",
291
- "name": "project.json",
292
- "extension": "json"
293
- },
294
- {
295
- "path": "ai/repo-map.json",
296
- "name": "repo-map.json",
297
- "extension": "json"
298
- },
299
- {
300
- "path": "ai/repo_map.json",
301
- "name": "repo_map.json",
302
- "extension": "json"
303
- },
304
- {
305
- "path": "ai/repo_map.md",
306
- "name": "repo_map.md",
307
- "extension": "md"
308
- },
309
- {
310
- "path": "ai/schema.json",
311
- "name": "schema.json",
312
- "extension": "json"
313
- },
314
- {
315
- "path": "ai/summary.md",
316
- "name": "summary.md",
317
- "extension": "md"
318
- },
319
- {
320
- "path": "ai/symbols.json",
321
- "name": "symbols.json",
322
- "extension": "json"
323
- },
324
- {
325
- "path": "ai/tech_stack.md",
326
- "name": "tech_stack.md",
327
- "extension": "md"
328
- },
329
- {
330
- "path": "ai/tools.json",
331
- "name": "tools.json",
332
- "extension": "json"
333
- },
334
- {
335
- "path": "app/__init__.py",
336
- "name": "__init__.py",
337
- "extension": "py"
338
- },
339
- {
340
- "path": "app/api/__init__.py",
341
- "name": "__init__.py",
342
- "extension": "py"
343
- },
344
- {
345
- "path": "app/api/routes.py",
346
- "name": "routes.py",
347
- "extension": "py"
348
- },
349
- {
350
- "path": "app/auth/__init__.py",
351
- "name": "__init__.py",
352
- "extension": "py"
353
- },
354
- {
355
- "path": "app/auth/forms.py",
356
- "name": "forms.py",
357
- "extension": "py"
358
- },
359
- {
360
- "path": "app/auth/routes.py",
361
- "name": "routes.py",
362
- "extension": "py"
363
- },
364
- {
365
- "path": "app/blog/__init__.py",
366
- "name": "__init__.py",
367
- "extension": "py"
368
- },
369
- {
370
- "path": "app/blog/forms.py",
371
- "name": "forms.py",
372
- "extension": "py"
373
- },
374
- {
375
- "path": "app/blog/routes.py",
376
- "name": "routes.py",
377
- "extension": "py"
378
- },
379
- {
380
- "path": "app/main/__init__.py",
381
- "name": "__init__.py",
382
- "extension": "py"
383
- },
384
- {
385
- "path": "app/main/routes.py",
386
- "name": "routes.py",
387
- "extension": "py"
388
- },
389
- {
390
- "path": "app/models.py",
391
- "name": "models.py",
392
- "extension": "py"
393
- },
394
- {
395
- "path": "config.py",
396
- "name": "config.py",
397
- "extension": "py"
398
- }
399
- ]
400
- }
@@ -1,98 +0,0 @@
1
- # Repository Map
2
- ## README.md
3
- - README.md
4
-
5
- ## ai
6
- - ai_context.md
7
- - ai_rules.md
8
- - app.json
9
- - architecture.md
10
- - cache.json
11
- - conventions.md
12
- - dependencies.json
13
- - entrypoints.md
14
- - files.json
15
- - index-state.json
16
- - module-graph.json
17
- - modules.json
18
- - project.json
19
- - repo_map.json
20
- - repo_map.md
21
- - repo-map.json
22
- - routes.json
23
- - schema.json
24
- - summary.md
25
- - symbol-graph.json
26
- - symbol-references.json
27
- - symbols.json
28
- - tech_stack.md
29
- - tools.json
30
-
31
- ## app
32
- - __init__.py
33
- - __init__.py
34
- - __init__.py
35
- - __init__.py
36
- - __init__.py
37
- - forms.py
38
- - forms.py
39
- - models.py
40
- - routes.py
41
- - routes.py
42
- - routes.py
43
- - routes.py
44
-
45
- ## config.py
46
- - config.py
47
-
48
-
49
-
50
- # Repository Structure (Tree View)
51
- ├── ai/
52
- │ ├── context/
53
- │ │ ├── features/
54
- │ │ │ └── app.json
55
- │ │ └── flows/
56
- │ │ └── routes.json
57
- │ ├── graph/
58
- │ │ ├── module-graph.json
59
- │ │ ├── symbol-graph.json
60
- │ │ └── symbol-references.json
61
- │ ├── ai_context.md
62
- │ ├── ai_rules.md
63
- │ ├── architecture.md
64
- │ ├── cache.json
65
- │ ├── conventions.md
66
- │ ├── dependencies.json
67
- │ ├── entrypoints.md
68
- │ ├── files.json
69
- │ ├── index-state.json
70
- │ ├── modules.json
71
- │ ├── project.json
72
- │ ├── repo-map.json
73
- │ ├── repo_map.json
74
- │ ├── repo_map.md
75
- │ ├── schema.json
76
- │ ├── summary.md
77
- │ ├── symbols.json
78
- │ ├── tech_stack.md
79
- │ └── tools.json
80
- ├── app/
81
- │ ├── api/
82
- │ │ ├── __init__.py
83
- │ │ └── routes.py
84
- │ ├── auth/
85
- │ │ ├── __init__.py
86
- │ │ ├── forms.py
87
- │ │ └── routes.py
88
- │ ├── blog/
89
- │ │ ├── __init__.py
90
- │ │ ├── forms.py
91
- │ │ └── routes.py
92
- │ ├── main/
93
- │ │ ├── __init__.py
94
- │ │ └── routes.py
95
- │ ├── __init__.py
96
- │ └── models.py
97
- ├── README.md
98
- └── config.py
@@ -1,5 +0,0 @@
1
- {
2
- "schemaVersion": "1.0",
3
- "generatedBy": "ai-first",
4
- "generatedAt": "2026-03-18T19:21:50.783Z"
5
- }
@@ -1,13 +0,0 @@
1
- # Repository Summary
2
- - **Total files**: 38
3
-
4
- ## Files by Extension
5
- - .json: 16
6
- - .md: 9
7
- - .py: 13
8
-
9
- ## Files by Directory
10
- - README.md: 1
11
- - ai: 24
12
- - app: 12
13
- - config.py: 1
@@ -1,32 +0,0 @@
1
- # Technology Stack
2
-
3
- **Languages**: Markdown, JSON, Python
4
-
5
- ## Languages
6
- - Markdown
7
- - JSON
8
- - Python
9
-
10
- ## Frameworks
11
- - None detected
12
-
13
- ## Key Libraries
14
- - None detected
15
-
16
- ## Development Tools
17
- - None detected
18
-
19
- ## Package Managers
20
- - None detected
21
-
22
- ## Testing
23
- - None detected
24
-
25
- ## Linters
26
- - None detected
27
-
28
- ## Formatters
29
- - None detected
30
-
31
- ---
32
- *Generated by ai-first*
@@ -1,10 +0,0 @@
1
- {
2
- "compatibleAgents": [
3
- "ai-first-bridge",
4
- "opencode",
5
- "cursor",
6
- "windsurf",
7
- "cline"
8
- ],
9
- "schemaVersion": "1.0"
10
- }
@@ -1,97 +0,0 @@
1
- # AI Context
2
-
3
- > This file provides a comprehensive overview of the repository for AI coding assistants.
4
-
5
- ---
6
-
7
- ## Quick Overview
8
-
9
- - **Pattern**: Flat / Simple Structure
10
- - **Languages**: Markdown, JSON, PHP
11
- - **Frameworks**: None
12
- - **Total Files**: 39
13
-
14
- ---
15
-
16
- ## Table of Contents
17
-
18
- 1. [Tech Stack](#tech-stack)
19
- 2. [Architecture](#architecture)
20
- 3. [Key Entrypoints](#key-entrypoints)
21
- 4. [Code Conventions](#code-conventions)
22
- 5. [AI Rules](#ai-rules)
23
- 6. [Repository Map](#repository-map)
24
-
25
- ---
26
-
27
- ## Tech Stack
28
-
29
- **Languages**: Markdown, JSON, PHP
30
-
31
- **Package Managers**: Composer
32
-
33
- ---
34
-
35
- ## Architecture
36
-
37
- ## Architectural Pattern
38
- **Primary**: Flat / Simple Structure
39
-
40
- ## Layers Identified
41
- - Application
42
-
43
- ## Key Modules
44
- | Module | Responsibility |
45
- |--------|----------------|
46
- | `README.md` | Contains 0 files |
47
- | `ai` | Contains 27 files |
48
- | `app` | Contains 8 files |
49
- | `bootstrap` | Contains 1 files |
50
- | `composer.json` | Contains 0 files |
51
- | `routes` | API endpoints and request handling |
52
-
53
-
54
- ---
55
-
56
- ## Key Entrypoints
57
-
58
- ---
59
-
60
- ## Code Conventions
61
-
62
- ## Naming Conventions
63
- - **Files**: PascalCase
64
-
65
- ## Project Structure
66
-
67
- ## Code Style
68
- - **Semicolons**: Required
69
-
70
-
71
- ---
72
-
73
- ## AI Rules
74
-
75
- - Language: Use Markdown, JSON, PHP
76
- - Architecture: Follow Flat / Simple Structure pattern
77
- - File naming: PascalCase
78
-
79
- ---
80
-
81
- ## Repository Map
82
-
83
- See repo_map.md for the full structure.
84
-
85
- ---
86
-
87
- ## Notes for AI Assistants
88
-
89
- 1. Follow the established naming conventions (see conventions.md)
90
- 2. Use the detected frameworks and libraries
91
- 3. Target the correct entrypoints for modifications
92
- 4. Maintain the detected architecture patterns
93
- 5. Follow AI rules in ai_rules.md
94
-
95
- ---
96
-
97
- *Generated by ai-first*
@@ -1,47 +0,0 @@
1
- # AI Rules
2
-
3
- > Guidelines for AI assistants working on this project
4
-
5
- ---
6
-
7
- ## Guidelines
8
-
9
- - Language: Use Markdown, JSON, PHP
10
- - Architecture: Follow Flat / Simple Structure pattern
11
- - File naming: PascalCase
12
-
13
- ## Patterns
14
-
15
- - Layer structure: application
16
-
17
- ## Constraints
18
-
19
- - Always use semicolons
20
-
21
- ---
22
-
23
- ## Quick Reference
24
-
25
- | Category | Value |
26
- |----------|-------|
27
- | Language | Markdown, JSON, PHP |
28
- | Framework | N/A |
29
- | Architecture | Flat / Simple Structure |
30
- | Naming | PascalCase |
31
- | Indentation | unknown |
32
-
33
- ---
34
-
35
- ## Best Practices
36
-
37
- 1. Follow the established naming conventions
38
- 2. Keep functions small and focused
39
- 3. Write tests for new features
40
- 4. Use descriptive variable names
41
- 5. Keep the architecture consistent
42
- 6. Document complex logic
43
- 7. Review code before committing
44
-
45
- ---
46
-
47
- *Generated by ai-first*