@bpinhosilva/agent-orchestrator 1.0.0-alpha.9 → 1.1.0-alpha.1

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 (366) hide show
  1. package/CHANGELOG.md +335 -0
  2. package/README.md +328 -49
  3. package/dist/agents/agent-emoji.constants.js +21 -0
  4. package/dist/agents/agents.controller.js +27 -0
  5. package/dist/agents/agents.module.js +4 -1
  6. package/dist/agents/agents.service.js +143 -71
  7. package/dist/agents/default-provider-models.js +22 -0
  8. package/dist/agents/dto/agent-attributes.dto.js +42 -0
  9. package/dist/agents/dto/agent-request.dto.js +7 -0
  10. package/dist/agents/dto/create-agent.dto.js +28 -1
  11. package/dist/agents/dto/update-agent.dto.js +4 -0
  12. package/dist/agents/entities/agent.entity.js +27 -13
  13. package/dist/{src/agents → agents}/enums/provider.enum.js +1 -4
  14. package/dist/agents/implementations/claude.agent.js +141 -0
  15. package/dist/{src/agents → agents}/implementations/gemini.agent.js +88 -18
  16. package/dist/agents/implementations/ollama.agent.js +131 -0
  17. package/dist/agents/personality.util.js +81 -0
  18. package/dist/agents/registry/agent.registry.js +0 -8
  19. package/dist/app.controller.js +15 -0
  20. package/dist/app.module.js +72 -11
  21. package/dist/app.service.js +3 -0
  22. package/dist/auth/auth.controller.js +179 -0
  23. package/dist/auth/auth.module.js +42 -0
  24. package/dist/auth/auth.service.js +274 -0
  25. package/dist/auth/decorators/current-user.decorator.js +8 -0
  26. package/dist/auth/decorators/public.decorator.js +7 -0
  27. package/dist/auth/decorators/roles.decorator.js +7 -0
  28. package/dist/{src/agents/dto/agent-request.dto.js → auth/dto/login.dto.js} +12 -12
  29. package/dist/{src/agents/dto/create-agent.dto.js → auth/dto/register.dto.js} +22 -30
  30. package/dist/auth/dto/update-profile.dto.js +65 -0
  31. package/dist/auth/entities/refresh-token.entity.js +61 -0
  32. package/dist/{src/app.controller.js → auth/guards/jwt-auth.guard.js} +23 -22
  33. package/dist/auth/guards/roles.guard.js +51 -0
  34. package/dist/auth/strategies/jwt.strategy.js +55 -0
  35. package/dist/cli/commands/config.command.js +47 -0
  36. package/dist/cli/commands/health.command.js +50 -0
  37. package/dist/cli/commands/index.js +29 -0
  38. package/dist/cli/commands/logs.command.js +100 -0
  39. package/dist/cli/commands/migrate.command.js +109 -0
  40. package/dist/cli/commands/reset-password.command.js +138 -0
  41. package/dist/cli/commands/restart.command.js +47 -0
  42. package/dist/cli/commands/rotate-secrets.command.js +125 -0
  43. package/dist/cli/commands/run.command.js +54 -0
  44. package/dist/cli/commands/seed-admin.command.js +25 -0
  45. package/dist/cli/commands/setup.command.js +57 -0
  46. package/dist/cli/commands/status.command.js +46 -0
  47. package/dist/cli/commands/stop.command.js +33 -0
  48. package/dist/{scripts/generate-postman.js → cli/constants.js} +15 -31
  49. package/dist/cli/env.js +153 -0
  50. package/dist/cli/health.js +98 -0
  51. package/dist/cli/index.js +76 -0
  52. package/dist/cli/process-manager.js +398 -0
  53. package/dist/cli/setup/admin.js +151 -0
  54. package/dist/cli/setup/index.js +107 -0
  55. package/dist/cli/setup/prompts.js +264 -0
  56. package/dist/cli/setup/validators.js +50 -0
  57. package/dist/cli/types.js +4 -0
  58. package/dist/cli/utils.js +106 -0
  59. package/dist/common/common.module.js +29 -0
  60. package/dist/common/filesystem-storage.service.js +131 -0
  61. package/dist/common/filters/http-exception.filter.js +54 -0
  62. package/dist/{src/agents/interfaces/agent.interface.js → common/interfaces/artifact.interface.js} +0 -1
  63. package/dist/common/storage-path.helper.js +97 -0
  64. package/dist/common/storage.service.js +6 -0
  65. package/dist/config/env.validation.js +56 -0
  66. package/dist/config/host.defaults.js +9 -0
  67. package/dist/config/port.defaults.js +9 -0
  68. package/dist/config/runtime-paths.js +38 -0
  69. package/dist/config/typeorm.js +64 -0
  70. package/dist/database/migration-sql.utils.js +16 -0
  71. package/dist/database/migration-state.js +65 -0
  72. package/dist/main.js +123 -0
  73. package/dist/migrations/1775266979821-InitialSchema.js +57 -0
  74. package/dist/migrations/1775268200000-SeedDefaultProvidersAndModels.js +45 -0
  75. package/dist/migrations/1775269500000-BackfillDefaultModelProviderIds.js +51 -0
  76. package/dist/migrations/1775270000000-AddOllamaProviderAndModel.js +33 -0
  77. package/dist/migrations/1775271000000-AddAgentEmoji.js +21 -0
  78. package/dist/migrations/1775272000000-CreateSystemSettings.js +41 -0
  79. package/dist/migrations/1775290000000-AddAgentAttributes.js +20 -0
  80. package/dist/migrations/1775487994565-20260406-AddMissingIndexesAndFKActions.js +134 -0
  81. package/dist/migrations/1775495000000-SetPostgresIdDefaults.js +47 -0
  82. package/dist/migrations/1775698253996-AddArtifactsToRecurrentTaskExecs.js +110 -0
  83. package/dist/migrations/1775935855172-MigrateSimpleJsonToJsonb.js +22 -0
  84. package/dist/migrations/1775936433494-RenameSnakeCaseColumnsToCamelCase.js +17 -0
  85. package/dist/migrations/1775938708731-ConvertIdsToUuid.js +78 -0
  86. package/dist/migrations/1775939208983-RemoveProviderIdFromAgents.js +30 -0
  87. package/dist/migrations/1775940000000-DropArtifactsTable.js +13 -0
  88. package/dist/migrations/1776390163236-AddMissingIndexes.js +124 -0
  89. package/dist/migrations/1776400000000-ProductionHardening.js +119 -0
  90. package/dist/models/dto/create-model.dto.js +6 -0
  91. package/dist/models/dto/update-model.dto.js +6 -2
  92. package/dist/models/entities/model.entity.js +11 -0
  93. package/dist/models/models.controller.js +13 -0
  94. package/dist/models/models.module.js +2 -1
  95. package/dist/models/models.service.js +14 -2
  96. package/dist/{src/providers/dto/create-provider.dto.js → projects/dto/add-member.dto.js} +11 -12
  97. package/dist/projects/dto/create-project.dto.js +13 -3
  98. package/dist/projects/dto/update-project.dto.js +22 -2
  99. package/dist/projects/entities/project-member.entity.js +60 -0
  100. package/dist/projects/entities/project.entity.js +24 -9
  101. package/dist/projects/projects.controller.js +76 -15
  102. package/dist/projects/projects.module.js +6 -1
  103. package/dist/projects/projects.service.js +177 -28
  104. package/dist/providers/dto/create-provider.dto.js +8 -0
  105. package/dist/providers/dto/update-provider.dto.js +6 -2
  106. package/dist/providers/entities/provider.entity.js +11 -1
  107. package/dist/providers/providers.controller.js +23 -0
  108. package/dist/providers/providers.service.js +15 -1
  109. package/dist/system-settings/dto/update-system-settings.dto.js +98 -0
  110. package/dist/{src/users/entities/user.entity.js → system-settings/entities/system-settings.entity.js} +15 -15
  111. package/dist/system-settings/system-settings.controller.js +57 -0
  112. package/dist/system-settings/system-settings.module.js +25 -0
  113. package/dist/system-settings/system-settings.service.js +60 -0
  114. package/dist/tasks/comments.controller.js +117 -0
  115. package/dist/tasks/comments.service.js +152 -0
  116. package/dist/{src/projects/dto/create-project.dto.js → tasks/dto/create-comment.dto.js} +17 -17
  117. package/dist/{src/tasks/dto/create-task.dto.js → tasks/dto/create-recurrent-task.dto.js} +18 -20
  118. package/dist/tasks/dto/create-task.dto.js +15 -6
  119. package/dist/{src/users/dto/create-user.dto.js → tasks/dto/update-comment.dto.js} +7 -8
  120. package/dist/tasks/dto/update-recurrent-task.dto.js +12 -0
  121. package/dist/tasks/dto/update-task.dto.js +4 -0
  122. package/dist/tasks/entities/comment.entity.js +94 -0
  123. package/dist/tasks/entities/recurrent-task-exec.entity.js +82 -0
  124. package/dist/tasks/entities/recurrent-task.entity.js +108 -0
  125. package/dist/tasks/entities/task.entity.js +40 -5
  126. package/dist/tasks/recurrent-task-scheduler.service.js +234 -0
  127. package/dist/tasks/recurrent-tasks.controller.js +125 -0
  128. package/dist/tasks/recurrent-tasks.service.js +169 -0
  129. package/dist/tasks/task-scheduler.service.js +308 -0
  130. package/dist/tasks/tasks.controller.js +75 -28
  131. package/dist/tasks/tasks.module.js +37 -3
  132. package/dist/tasks/tasks.service.js +126 -32
  133. package/dist/ui/assets/AgentFleet-BarfEwcK.js +1 -0
  134. package/dist/ui/assets/AppErrorBoundary-BwnK_K-O.js +1 -0
  135. package/dist/ui/assets/AttachmentItem-Cerhbyya.js +1 -0
  136. package/dist/ui/assets/AuthContextInstance-DiFo9Qb2.js +1 -0
  137. package/dist/ui/assets/ConfirmDialog-y3vTcqFR.js +1 -0
  138. package/dist/ui/assets/CreateRecurrentTaskModal-BgfnJ1n8.js +1 -0
  139. package/dist/ui/assets/CreateTaskModal-BH9lOLYT.js +1 -0
  140. package/dist/ui/assets/ExecLogModal-ShacCOOV.js +1 -0
  141. package/dist/ui/assets/MarkdownField--1gpyapw.js +1 -0
  142. package/dist/ui/assets/Profile-qnuRN5Qv.js +1 -0
  143. package/dist/ui/assets/ProjectDetail-ZYQG9yn2.js +1 -0
  144. package/dist/ui/assets/Providers-DR7srJHq.js +1 -0
  145. package/dist/ui/assets/Scheduler-Bs3DC0re.js +2 -0
  146. package/dist/ui/assets/Settings-C3ad44vP.js +1 -0
  147. package/dist/ui/assets/TaskDetail-CyKAF8lf.js +1 -0
  148. package/dist/ui/assets/TaskExecutions-BeodRIz1.js +3 -0
  149. package/dist/ui/assets/TaskManager-BA2Y31ut.js +9 -0
  150. package/dist/ui/assets/UserAvatar-Z5W8S1dG.js +1 -0
  151. package/dist/ui/assets/UserDetail-BvWm-U4y.js +1 -0
  152. package/dist/ui/assets/Users-CQNcXLyV.js +1 -0
  153. package/dist/ui/assets/activity-CmAajKmR.js +1 -0
  154. package/dist/ui/assets/agentEmojis-BQA0jC3z.js +1 -0
  155. package/dist/ui/assets/agents-b8btewki.js +1 -0
  156. package/dist/ui/assets/auth-dROenHXk.js +1 -0
  157. package/dist/ui/assets/bot-QVmnxPf4.js +1 -0
  158. package/dist/ui/assets/box-Bw_pyYzU.js +1 -0
  159. package/dist/ui/assets/brain-C6vlLcg3.js +1 -0
  160. package/dist/ui/assets/briefcase-DtHlat45.js +1 -0
  161. package/dist/ui/assets/check-DTei8Qlg.js +1 -0
  162. package/dist/ui/assets/chevron-down-LTeQHW9O.js +1 -0
  163. package/dist/ui/assets/chevron-left-CJc_eQid.js +1 -0
  164. package/dist/ui/assets/chevron-right-G5-HRo_C.js +1 -0
  165. package/dist/ui/assets/circle-alert-pUx6yhcF.js +1 -0
  166. package/dist/ui/assets/circle-check-B9kyRki5.js +1 -0
  167. package/dist/ui/assets/client-BGOBXkO8.js +9 -0
  168. package/dist/ui/assets/clock-BY4rrypg.js +1 -0
  169. package/dist/ui/assets/cn-CWOQtFh4.js +1 -0
  170. package/dist/ui/assets/cpu-8Sbc9Dk0.js +1 -0
  171. package/dist/ui/assets/database-D6O4hvbm.js +1 -0
  172. package/dist/ui/assets/download-DHcd5oLD.js +1 -0
  173. package/dist/ui/assets/eye-Cc-vy4Zu.js +1 -0
  174. package/dist/ui/assets/file-text-DWBSXx5l.js +1 -0
  175. package/dist/ui/assets/index-D6skFXwB.css +2 -0
  176. package/dist/ui/assets/index-VNAG8cJ1.js +3 -0
  177. package/dist/ui/assets/info-1jA6X-_e.js +1 -0
  178. package/dist/ui/assets/layers-BcHXXg-4.js +1 -0
  179. package/dist/ui/assets/loader-circle-Cl6yIkPK.js +1 -0
  180. package/dist/ui/assets/panels-top-left-Vk8FzAxf.js +1 -0
  181. package/dist/ui/assets/paperclip-DWJjaP8B.js +1 -0
  182. package/dist/ui/assets/plus-Dx6G8SOZ.js +1 -0
  183. package/dist/ui/assets/projects-CUOthD8N.js +1 -0
  184. package/dist/ui/assets/providers-CNrSTcdc.js +1 -0
  185. package/dist/ui/assets/recurrent-tasks-CKT47N2l.js +1 -0
  186. package/dist/ui/assets/refresh-cw-DQW6jR7M.js +1 -0
  187. package/dist/ui/assets/rocket-CMSwBl_C.js +1 -0
  188. package/dist/ui/assets/rolldown-runtime-COnpUsM8.js +1 -0
  189. package/dist/ui/assets/save-DycJmlX0.js +1 -0
  190. package/dist/ui/assets/send-BZjwSrJW.js +1 -0
  191. package/dist/ui/assets/server-CJE2K1Vt.js +1 -0
  192. package/dist/ui/assets/settings-at7JqFrc.js +1 -0
  193. package/dist/ui/assets/shield-alert-CP5GVXxa.js +1 -0
  194. package/dist/ui/assets/shield-check-Cr4SHjdR.js +1 -0
  195. package/dist/ui/assets/sparkles-v57Nc-z-.js +1 -0
  196. package/dist/ui/assets/taskFormSchemas-dl1t1OyX.js +10 -0
  197. package/dist/ui/assets/tasks-DEUQCNoH.js +1 -0
  198. package/dist/ui/assets/terminal-a6AV2mPO.js +1 -0
  199. package/dist/ui/assets/trash-2-DJpTXgEP.js +1 -0
  200. package/dist/ui/assets/trending-up-DlrXEXE6.js +1 -0
  201. package/dist/ui/assets/useNotification-DQayTSUL.js +1 -0
  202. package/dist/ui/assets/usePersistentFlag-R3_SXL_2.js +1 -0
  203. package/dist/ui/assets/useProject-DhK9Ze6F.js +1 -0
  204. package/dist/ui/assets/user--KOoEB9m.js +1 -0
  205. package/dist/ui/assets/user-plus-nDkwsBT1.js +1 -0
  206. package/dist/ui/assets/users-C6WiDiuN.js +1 -0
  207. package/dist/ui/assets/users-Ef6Sh2iR.js +1 -0
  208. package/dist/ui/assets/vendor-dnd-CfaHPvi0.js +5 -0
  209. package/dist/ui/assets/vendor-forms-DHyqHeyd.js +39 -0
  210. package/dist/ui/assets/vendor-markdown-DoJbQ1of.js +29 -0
  211. package/dist/ui/assets/vendor-motion-CMGWJcqR.js +9 -0
  212. package/dist/ui/assets/vendor-query-xpDrc4rM.js +1 -0
  213. package/dist/ui/assets/vendor-react-BmVaKUwY.js +11 -0
  214. package/dist/ui/assets/x-wDy15QMx.js +1 -0
  215. package/dist/ui/assets/zap-BmhZqgvm.js +1 -0
  216. package/dist/ui/avatar-presets/avatar-01.svg +11 -0
  217. package/dist/ui/avatar-presets/avatar-02.svg +12 -0
  218. package/dist/ui/avatar-presets/avatar-03.svg +12 -0
  219. package/dist/ui/avatar-presets/avatar-04.svg +12 -0
  220. package/dist/ui/avatar-presets/avatar-05.svg +12 -0
  221. package/dist/ui/avatar-presets/avatar-06.svg +12 -0
  222. package/dist/ui/avatar-presets/avatar-07.svg +12 -0
  223. package/dist/ui/avatar-presets/avatar-08.svg +12 -0
  224. package/dist/ui/favicon.svg +1 -0
  225. package/dist/ui/icons.svg +24 -0
  226. package/dist/ui/index.html +42 -0
  227. package/dist/{src/app.service.js → uploads/parse-filepath.pipe.js} +14 -8
  228. package/dist/uploads/uploads.controller.js +155 -0
  229. package/dist/{src/users/users.module.js → uploads/uploads.module.js} +12 -14
  230. package/dist/users/avatar.constants.js +35 -0
  231. package/dist/users/dto/create-user.dto.js +35 -0
  232. package/dist/users/dto/list-users-query.dto.js +49 -0
  233. package/dist/users/dto/update-user.dto.js +21 -0
  234. package/dist/users/entities/user.entity.js +29 -2
  235. package/dist/users/users.controller.js +25 -21
  236. package/dist/users/users.service.js +73 -2
  237. package/package.json +87 -23
  238. package/dist/cli.js +0 -21
  239. package/dist/scripts/generate-postman.d.ts +0 -1
  240. package/dist/scripts/generate-postman.js.map +0 -1
  241. package/dist/src/agents/agents.controller.d.ts +0 -15
  242. package/dist/src/agents/agents.controller.js +0 -100
  243. package/dist/src/agents/agents.controller.js.map +0 -1
  244. package/dist/src/agents/agents.module.d.ts +0 -2
  245. package/dist/src/agents/agents.module.js +0 -26
  246. package/dist/src/agents/agents.module.js.map +0 -1
  247. package/dist/src/agents/agents.service.d.ts +0 -23
  248. package/dist/src/agents/agents.service.js +0 -136
  249. package/dist/src/agents/agents.service.js.map +0 -1
  250. package/dist/src/agents/dto/agent-request.dto.d.ts +0 -4
  251. package/dist/src/agents/dto/agent-request.dto.js.map +0 -1
  252. package/dist/src/agents/dto/create-agent.dto.d.ts +0 -9
  253. package/dist/src/agents/dto/create-agent.dto.js.map +0 -1
  254. package/dist/src/agents/dto/update-agent.dto.d.ts +0 -5
  255. package/dist/src/agents/dto/update-agent.dto.js +0 -13
  256. package/dist/src/agents/dto/update-agent.dto.js.map +0 -1
  257. package/dist/src/agents/entities/agent.entity.d.ts +0 -15
  258. package/dist/src/agents/entities/agent.entity.js +0 -88
  259. package/dist/src/agents/entities/agent.entity.js.map +0 -1
  260. package/dist/src/agents/enums/provider.enum.d.ts +0 -6
  261. package/dist/src/agents/enums/provider.enum.js.map +0 -1
  262. package/dist/src/agents/implementations/gemini.agent.d.ts +0 -20
  263. package/dist/src/agents/implementations/gemini.agent.js.map +0 -1
  264. package/dist/src/agents/interfaces/agent.interface.d.ts +0 -14
  265. package/dist/src/agents/interfaces/agent.interface.js.map +0 -1
  266. package/dist/src/agents/registry/agent.registry.d.ts +0 -5
  267. package/dist/src/agents/registry/agent.registry.js +0 -15
  268. package/dist/src/agents/registry/agent.registry.js.map +0 -1
  269. package/dist/src/app.controller.d.ts +0 -6
  270. package/dist/src/app.controller.js.map +0 -1
  271. package/dist/src/app.module.d.ts +0 -2
  272. package/dist/src/app.module.js +0 -51
  273. package/dist/src/app.module.js.map +0 -1
  274. package/dist/src/app.service.d.ts +0 -3
  275. package/dist/src/app.service.js.map +0 -1
  276. package/dist/src/cli.d.ts +0 -2
  277. package/dist/src/cli.js +0 -22
  278. package/dist/src/cli.js.map +0 -1
  279. package/dist/src/main.d.ts +0 -1
  280. package/dist/src/main.js +0 -26
  281. package/dist/src/main.js.map +0 -1
  282. package/dist/src/models/dto/create-model.dto.d.ts +0 -4
  283. package/dist/src/models/dto/create-model.dto.js +0 -33
  284. package/dist/src/models/dto/create-model.dto.js.map +0 -1
  285. package/dist/src/models/dto/update-model.dto.d.ts +0 -5
  286. package/dist/src/models/dto/update-model.dto.js +0 -13
  287. package/dist/src/models/dto/update-model.dto.js.map +0 -1
  288. package/dist/src/models/entities/model.entity.d.ts +0 -10
  289. package/dist/src/models/entities/model.entity.js +0 -60
  290. package/dist/src/models/entities/model.entity.js.map +0 -1
  291. package/dist/src/models/models.controller.d.ts +0 -13
  292. package/dist/src/models/models.controller.js +0 -98
  293. package/dist/src/models/models.controller.js.map +0 -1
  294. package/dist/src/models/models.module.d.ts +0 -2
  295. package/dist/src/models/models.module.js +0 -26
  296. package/dist/src/models/models.module.js.map +0 -1
  297. package/dist/src/models/models.service.d.ts +0 -14
  298. package/dist/src/models/models.service.js +0 -78
  299. package/dist/src/models/models.service.js.map +0 -1
  300. package/dist/src/projects/dto/create-project.dto.d.ts +0 -7
  301. package/dist/src/projects/dto/create-project.dto.js.map +0 -1
  302. package/dist/src/projects/dto/update-project.dto.d.ts +0 -5
  303. package/dist/src/projects/dto/update-project.dto.js +0 -13
  304. package/dist/src/projects/dto/update-project.dto.js.map +0 -1
  305. package/dist/src/projects/entities/project.entity.d.ts +0 -18
  306. package/dist/src/projects/entities/project.entity.js +0 -81
  307. package/dist/src/projects/entities/project.entity.js.map +0 -1
  308. package/dist/src/projects/projects.controller.d.ts +0 -12
  309. package/dist/src/projects/projects.controller.js +0 -87
  310. package/dist/src/projects/projects.controller.js.map +0 -1
  311. package/dist/src/projects/projects.module.d.ts +0 -2
  312. package/dist/src/projects/projects.module.js +0 -26
  313. package/dist/src/projects/projects.module.js.map +0 -1
  314. package/dist/src/projects/projects.service.d.ts +0 -13
  315. package/dist/src/projects/projects.service.js +0 -69
  316. package/dist/src/projects/projects.service.js.map +0 -1
  317. package/dist/src/providers/dto/create-provider.dto.d.ts +0 -4
  318. package/dist/src/providers/dto/create-provider.dto.js.map +0 -1
  319. package/dist/src/providers/dto/update-provider.dto.d.ts +0 -5
  320. package/dist/src/providers/dto/update-provider.dto.js +0 -13
  321. package/dist/src/providers/dto/update-provider.dto.js.map +0 -1
  322. package/dist/src/providers/entities/provider.entity.d.ts +0 -9
  323. package/dist/src/providers/entities/provider.entity.js +0 -55
  324. package/dist/src/providers/entities/provider.entity.js.map +0 -1
  325. package/dist/src/providers/providers.controller.d.ts +0 -12
  326. package/dist/src/providers/providers.controller.js +0 -87
  327. package/dist/src/providers/providers.controller.js.map +0 -1
  328. package/dist/src/providers/providers.module.d.ts +0 -2
  329. package/dist/src/providers/providers.module.js +0 -26
  330. package/dist/src/providers/providers.module.js.map +0 -1
  331. package/dist/src/providers/providers.service.d.ts +0 -13
  332. package/dist/src/providers/providers.service.js +0 -60
  333. package/dist/src/providers/providers.service.js.map +0 -1
  334. package/dist/src/tasks/dto/create-task.dto.d.ts +0 -10
  335. package/dist/src/tasks/dto/create-task.dto.js.map +0 -1
  336. package/dist/src/tasks/dto/update-task.dto.d.ts +0 -5
  337. package/dist/src/tasks/dto/update-task.dto.js +0 -13
  338. package/dist/src/tasks/dto/update-task.dto.js.map +0 -1
  339. package/dist/src/tasks/entities/task.entity.d.ts +0 -26
  340. package/dist/src/tasks/entities/task.entity.js +0 -106
  341. package/dist/src/tasks/entities/task.entity.js.map +0 -1
  342. package/dist/src/tasks/tasks.controller.d.ts +0 -12
  343. package/dist/src/tasks/tasks.controller.js +0 -87
  344. package/dist/src/tasks/tasks.controller.js.map +0 -1
  345. package/dist/src/tasks/tasks.module.d.ts +0 -2
  346. package/dist/src/tasks/tasks.module.js +0 -26
  347. package/dist/src/tasks/tasks.module.js.map +0 -1
  348. package/dist/src/tasks/tasks.service.d.ts +0 -15
  349. package/dist/src/tasks/tasks.service.js +0 -80
  350. package/dist/src/tasks/tasks.service.js.map +0 -1
  351. package/dist/src/users/dto/create-user.dto.d.ts +0 -3
  352. package/dist/src/users/dto/create-user.dto.js.map +0 -1
  353. package/dist/src/users/dto/update-user.dto.d.ts +0 -5
  354. package/dist/src/users/dto/update-user.dto.js +0 -13
  355. package/dist/src/users/dto/update-user.dto.js.map +0 -1
  356. package/dist/src/users/entities/user.entity.d.ts +0 -6
  357. package/dist/src/users/entities/user.entity.js.map +0 -1
  358. package/dist/src/users/users.controller.d.ts +0 -12
  359. package/dist/src/users/users.controller.js +0 -89
  360. package/dist/src/users/users.controller.js.map +0 -1
  361. package/dist/src/users/users.module.d.ts +0 -2
  362. package/dist/src/users/users.module.js.map +0 -1
  363. package/dist/src/users/users.service.d.ts +0 -13
  364. package/dist/src/users/users.service.js +0 -58
  365. package/dist/src/users/users.service.js.map +0 -1
  366. package/dist/tsconfig.build.tsbuildinfo +0 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,336 @@
1
+ # [1.1.0-alpha.1](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0...v1.1.0-alpha.1) (2026-04-17)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **ci:** use legacy-peer-deps to resolve peer dependency conflicts ([b450b45](https://github.com/bpinhosilva/agent-orchestrator/commit/b450b4500ff02addb1bca6cc7f6a40c93e442e7f))
7
+ * compatibility with path-to-regexp for serve-static excluding ([3675042](https://github.com/bpinhosilva/agent-orchestrator/commit/3675042ed0b2b7588c236b6d774aa2136e4835b8))
8
+ * downgrade class-validator from ^0.15.1 to ^0.14.1 ([6d9bb29](https://github.com/bpinhosilva/agent-orchestrator/commit/6d9bb291145cdfad7d8c5f4fc8a7ac6ee48ee776))
9
+ * ensure cli binary is executable and correctly mapped ([7616d98](https://github.com/bpinhosilva/agent-orchestrator/commit/7616d98ec29f4dfb0091869b746a3c9a00fe8cea))
10
+ * trigger release with updated build steps ([1ad13b0](https://github.com/bpinhosilva/agent-orchestrator/commit/1ad13b0eb64adb603762edecb82b27f6672fb847))
11
+ * update collisionDetection to return an empty array in TaskManager tests ([b64158e](https://github.com/bpinhosilva/agent-orchestrator/commit/b64158e61c76a0d148900d36cb9f05784e5d5461))
12
+
13
+
14
+ ### Features
15
+
16
+ * add .npmrc to enable legacy peer dependencies ([2f41a07](https://github.com/bpinhosilva/agent-orchestrator/commit/2f41a0747e3cc862241f90c24405c6ad0976557b))
17
+ * add agent probing functionality with a new API endpoint, service logic ([f71abb6](https://github.com/bpinhosilva/agent-orchestrator/commit/f71abb601745b7f2ae5c1f8be53143429302c1d2))
18
+ * add AGENTS.md file ([51c706f](https://github.com/bpinhosilva/agent-orchestrator/commit/51c706f8784dd354280d853f605bb8c69e53175c))
19
+ * add Claude agent implementation with Anthropic SDK and refactor agent-provider ([1400a0d](https://github.com/bpinhosilva/agent-orchestrator/commit/1400a0dec6beb8393ddc4c5a23b9b860532079e8))
20
+ * add CreateTaskDto ([1604945](https://github.com/bpinhosilva/agent-orchestrator/commit/1604945737b5df5480c6c0814c369902f7cc9142))
21
+ * add early crash detection and log tailing for server process ([b3c7945](https://github.com/bpinhosilva/agent-orchestrator/commit/b3c79454f030845f3056e30f9daab1a7726ce00e))
22
+ * add environment variable setup and JWT refresh secret handling ([c9dfd05](https://github.com/bpinhosilva/agent-orchestrator/commit/c9dfd05070dfc4bc0e34e3853d0efe85d84d404a))
23
+ * add initial user interface for agent management and orchestration ([7a27019](https://github.com/bpinhosilva/agent-orchestrator/commit/7a270197691453384e5827987574f94e93cad7fb))
24
+ * add InitialsAvatar component and do some refactor ([417eff3](https://github.com/bpinhosilva/agent-orchestrator/commit/417eff3bdf4ac8cf072c99fc56744a3a93807a31))
25
+ * add Ollama provider and model support ([7c24c38](https://github.com/bpinhosilva/agent-orchestrator/commit/7c24c38704975c0083485e1e2a4552997cd17e34))
26
+ * add Spanish release notes and update task priority handling ([42484db](https://github.com/bpinhosilva/agent-orchestrator/commit/42484db728a48eed290c00be180598718ca572a5))
27
+ * add user management module, introduce task output field, and include a design document ([7d0717d](https://github.com/bpinhosilva/agent-orchestrator/commit/7d0717d5a566435641e46b2f4b40101df0f62ed6))
28
+ * add UsersPage component with user management features and tests ([bb46646](https://github.com/bpinhosilva/agent-orchestrator/commit/bb466468849b01dd30bc228e3c0375b6aea874e8))
29
+ * **cli:** enhance setup command with detailed configuration options and improved process ([2b7f51d](https://github.com/bpinhosilva/agent-orchestrator/commit/2b7f51d16e8f1949e222c03968d925030e4b0574))
30
+ * **cli:** refactor project, split into multiple components ([f18903b](https://github.com/bpinhosilva/agent-orchestrator/commit/f18903be0b1b09a1e651918d081d96267bfe2bc6))
31
+ * **docs:** add HOST configuration to README and CLI documentation ([8e7820e](https://github.com/bpinhosilva/agent-orchestrator/commit/8e7820e554088bc976559780088927c469f5d059))
32
+ * enhance file path validation and logging in uploads, add ExecLogModal component ([2d9ca31](https://github.com/bpinhosilva/agent-orchestrator/commit/2d9ca31fd67924958f417d113ec974252858782d))
33
+ * enhance JWT security by specifying HS256 algorithm and improve logging in services ([349c94b](https://github.com/bpinhosilva/agent-orchestrator/commit/349c94b31bfdcc2f397cd81848bb2fd3b977a438))
34
+ * enhance project management with user roles and member management ([877832f](https://github.com/bpinhosilva/agent-orchestrator/commit/877832fc4ad8d77499124a4da23c14a1270622a4))
35
+ * enhance task scheduling with dynamic settings and improved error handling ([cbb5097](https://github.com/bpinhosilva/agent-orchestrator/commit/cbb50979f8e79e6cdc581ed29fa0933f82c3e4ee))
36
+ * implement automated database migrations and interactive admin user setup in CLI ([6868b13](https://github.com/bpinhosilva/agent-orchestrator/commit/6868b137ad80c85d4ffc56b884b8016df8a3c533))
37
+ * implement cli and setup alpha releases ([c664ce8](https://github.com/bpinhosilva/agent-orchestrator/commit/c664ce8a6c7301227997fe23f9113053d074c462))
38
+ * implement comprehensive project management, task comments with attachments ([10eb382](https://github.com/bpinhosilva/agent-orchestrator/commit/10eb38268d50ff9418a3e7af1788d55c759522a9))
39
+ * implement containerization, add health check endpoint, and update RBAC ([17149d3](https://github.com/bpinhosilva/agent-orchestrator/commit/17149d32a623f532308ba0f415a4b2ba332ec794))
40
+ * implement models and providers modules add swagger documentation, and update agents ([b6e8245](https://github.com/bpinhosilva/agent-orchestrator/commit/b6e824547f4f603cecf0352b383d20a078fe6662))
41
+ * implement project and task management modules, including entities, DTOs, services, controllers ([3df2c2a](https://github.com/bpinhosilva/agent-orchestrator/commit/3df2c2a6d0bdf4e3e4edbf12f544a8e12970e2dd))
42
+ * implement provider and model management UI and API, and enhance agent configuration ([01dbe34](https://github.com/bpinhosilva/agent-orchestrator/commit/01dbe345b8763da433682d7bc185c017e5b5d5d9))
43
+ * implement recurrent task scheduling system with backend services and UI management modal ([b3c699a](https://github.com/bpinhosilva/agent-orchestrator/commit/b3c699a5b7eb261458d97a7a0d40e5071e33fb1e))
44
+ * implement release workflow with semantic release and build steps; remove old release.yml ([f17eb48](https://github.com/bpinhosilva/agent-orchestrator/commit/f17eb48c64b165c8fd05e142d175716f7990f670))
45
+ * implement scheduler page, add database indexes for performance, and update release workflow ([b4e067a](https://github.com/bpinhosilva/agent-orchestrator/commit/b4e067a1b20e4275214309c1241c163b456260da))
46
+ * implement security fixes ([f570f92](https://github.com/bpinhosilva/agent-orchestrator/commit/f570f92a10cf1473c36a0145c160f6e23905bb1f))
47
+ * implement server startup verification and enhance command handling for restart, rotate-secrets ([4033161](https://github.com/bpinhosilva/agent-orchestrator/commit/40331617046bcfe3bc96e189fa27614bee505235))
48
+ * implement task detail view with comment polling, numeric priorities, and enhanced task card ([7a38155](https://github.com/bpinhosilva/agent-orchestrator/commit/7a38155ac796dbe528d48a340a0e6be7fa0150a3))
49
+ * implement transaction management in services and tests for improved data integrity ([7b213da](https://github.com/bpinhosilva/agent-orchestrator/commit/7b213da8e9ee46da2e40f3e51e3d61c8a50ac850))
50
+ * implement transient agent instances with dynamic configurationn ([5d57b08](https://github.com/bpinhosilva/agent-orchestrator/commit/5d57b0886edf4b14d93ab76f245f4311b6657f7d))
51
+ * implement user authentication system with JWT, registration, and login functionality ([63582fa](https://github.com/bpinhosilva/agent-orchestrator/commit/63582fa8f318c8a6bc174795364a4d3cbd221d45))
52
+ * integrate Personality Matrix component, refactor storage service ([2aa80d3](https://github.com/bpinhosilva/agent-orchestrator/commit/2aa80d3b64cd6431ba0113182dcb5d871075fcfd))
53
+ * integrate wait-on for improved dev workflow ([af26318](https://github.com/bpinhosilva/agent-orchestrator/commit/af2631820f5fc95b7b85c9f6ec52157b7df74264))
54
+ * introduce a task scheduler service for automated agent task assignment and execution ([d756f10](https://github.com/bpinhosilva/agent-orchestrator/commit/d756f10c441aadb3b31335a55926700b5518ec9e))
55
+ * introduce task management UI with draggable cards and refactor provider ([1002dd1](https://github.com/bpinhosilva/agent-orchestrator/commit/1002dd1ac373fe4f6c3acb2eb6e9345b3ec35aba))
56
+ * **migrations:** add initial schema with users, providers, models, agents, projects, tasks ([e08e338](https://github.com/bpinhosilva/agent-orchestrator/commit/e08e3388794e8a556be3584daedd30252a8904fb))
57
+ * **migrations:** add migration to set default UUIDs for ID columns ([ea9289b](https://github.com/bpinhosilva/agent-orchestrator/commit/ea9289b8623d244737dfb7340a58637c8967edf8))
58
+ * **migrations:** add seed and backfill migrations ([5991146](https://github.com/bpinhosilva/agent-orchestrator/commit/5991146cbb3bc971bddf73295dcf7dbd3e2b74e4))
59
+ * **migrations:** db schema ([a0a98b7](https://github.com/bpinhosilva/agent-orchestrator/commit/a0a98b725e09f6d3a9a8fc2305704772195fe2d8))
60
+ * **models:** implement model deletion with agent association check and enhance UI for model mgn ([e4cc599](https://github.com/bpinhosilva/agent-orchestrator/commit/e4cc599263f910e80e00116218e9408ec2ac2bf3))
61
+ * refactor task and comment entities to use Artifact interface for artifacts ([806fde7](https://github.com/bpinhosilva/agent-orchestrator/commit/806fde736b734de0cb3cb9a7a05c5c3eb2d7f171))
62
+ * **refactor:** project terminology and update UI components ([47e5cb4](https://github.com/bpinhosilva/agent-orchestrator/commit/47e5cb4d45c05f893ebdd898f02ceeadcd213652))
63
+ * **TaskManager:** refactor task management with lazy loading and improved state handling ([8988277](https://github.com/bpinhosilva/agent-orchestrator/commit/898827701c7824c93b063fc6ab88862a7d79110b))
64
+ * **ui:** integrate MarkdownField for task description input and enhance TaskExecutions ([d4b91e8](https://github.com/bpinhosilva/agent-orchestrator/commit/d4b91e8b9c392f77a2cab3c0a5bcc641110bced2))
65
+ * update CI workflow to include E2E and UI tests; bump lodash version ([b8ceee6](https://github.com/bpinhosilva/agent-orchestrator/commit/b8ceee6adf0855b54d4a45d959e87ec338c55887))
66
+ * update default port to 15789 for production, enhance migration handling, and refactor env ([e59ba31](https://github.com/bpinhosilva/agent-orchestrator/commit/e59ba3105c5ce7367281bf3ee637bcc3bc124dcc))
67
+ * update Google Gemini API client library, adapt agent implementation and tests ([46a52dd](https://github.com/bpinhosilva/agent-orchestrator/commit/46a52dd518f27cded3213248e9646300b6bc2fb8))
68
+ * update mascot image format and adjust display size in README ([6779313](https://github.com/bpinhosilva/agent-orchestrator/commit/6779313a26a6906ecb47a8819789dc8312f3d6fc))
69
+ * update README and documentation files with additional references and streamlined content ([ae7b1ac](https://github.com/bpinhosilva/agent-orchestrator/commit/ae7b1acbd47eebbc91b154f2b54da83eb8da0be8))
70
+
71
+
72
+ ### Performance Improvements
73
+
74
+ * **db:** optimize schema with composite and missing indexes ([091d7c4](https://github.com/bpinhosilva/agent-orchestrator/commit/091d7c417d9b3291d704754f8cd0b22924aec871))
75
+
76
+ # [1.0.0-alpha.43](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.42...v1.0.0-alpha.43) (2026-04-17)
77
+
78
+
79
+ ### Features
80
+
81
+ * implement server startup verification and enhance command handling for restart, rotate-secrets ([4033161](https://github.com/bpinhosilva/agent-orchestrator/commit/40331617046bcfe3bc96e189fa27614bee505235))
82
+
83
+ # [1.0.0-alpha.42](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.41...v1.0.0-alpha.42) (2026-04-17)
84
+
85
+
86
+ ### Features
87
+
88
+ * add early crash detection and log tailing for server process ([b3c7945](https://github.com/bpinhosilva/agent-orchestrator/commit/b3c79454f030845f3056e30f9daab1a7726ce00e))
89
+
90
+ # [1.0.0-alpha.41](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.40...v1.0.0-alpha.41) (2026-04-17)
91
+
92
+
93
+ ### Bug Fixes
94
+
95
+ * update collisionDetection to return an empty array in TaskManager tests ([b64158e](https://github.com/bpinhosilva/agent-orchestrator/commit/b64158e61c76a0d148900d36cb9f05784e5d5461))
96
+
97
+ # [1.0.0-alpha.40](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.39...v1.0.0-alpha.40) (2026-04-17)
98
+
99
+
100
+ ### Features
101
+
102
+ * add Ollama provider and model support ([7c24c38](https://github.com/bpinhosilva/agent-orchestrator/commit/7c24c38704975c0083485e1e2a4552997cd17e34))
103
+
104
+ # [1.0.0-alpha.39](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.38...v1.0.0-alpha.39) (2026-04-17)
105
+
106
+
107
+ ### Features
108
+
109
+ * **docs:** add HOST configuration to README and CLI documentation ([8e7820e](https://github.com/bpinhosilva/agent-orchestrator/commit/8e7820e554088bc976559780088927c469f5d059))
110
+
111
+ # [1.0.0-alpha.38](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.37...v1.0.0-alpha.38) (2026-04-17)
112
+
113
+
114
+ ### Features
115
+
116
+ * **TaskManager:** refactor task management with lazy loading and improved state handling ([8988277](https://github.com/bpinhosilva/agent-orchestrator/commit/898827701c7824c93b063fc6ab88862a7d79110b))
117
+
118
+ # [1.0.0-alpha.37](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.36...v1.0.0-alpha.37) (2026-04-13)
119
+
120
+
121
+ ### Features
122
+
123
+ * **models:** implement model deletion with agent association check and enhance UI for model mgn ([e4cc599](https://github.com/bpinhosilva/agent-orchestrator/commit/e4cc599263f910e80e00116218e9408ec2ac2bf3))
124
+
125
+ # [1.0.0-alpha.36](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.35...v1.0.0-alpha.36) (2026-04-13)
126
+
127
+
128
+ ### Performance Improvements
129
+
130
+ * **db:** optimize schema with composite and missing indexes ([091d7c4](https://github.com/bpinhosilva/agent-orchestrator/commit/091d7c417d9b3291d704754f8cd0b22924aec871))
131
+
132
+ # [1.0.0-alpha.35](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.34...v1.0.0-alpha.35) (2026-04-11)
133
+
134
+
135
+ ### Features
136
+
137
+ * add Spanish release notes and update task priority handling ([42484db](https://github.com/bpinhosilva/agent-orchestrator/commit/42484db728a48eed290c00be180598718ca572a5))
138
+
139
+ # [1.0.0-alpha.34](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.33...v1.0.0-alpha.34) (2026-04-09)
140
+
141
+
142
+ ### Features
143
+
144
+ * enhance file path validation and logging in uploads, add ExecLogModal component ([2d9ca31](https://github.com/bpinhosilva/agent-orchestrator/commit/2d9ca31fd67924958f417d113ec974252858782d))
145
+ * **migrations:** add migration to set default UUIDs for ID columns ([ea9289b](https://github.com/bpinhosilva/agent-orchestrator/commit/ea9289b8623d244737dfb7340a58637c8967edf8))
146
+ * refactor task and comment entities to use Artifact interface for artifacts ([806fde7](https://github.com/bpinhosilva/agent-orchestrator/commit/806fde736b734de0cb3cb9a7a05c5c3eb2d7f171))
147
+ * **ui:** integrate MarkdownField for task description input and enhance TaskExecutions ([d4b91e8](https://github.com/bpinhosilva/agent-orchestrator/commit/d4b91e8b9c392f77a2cab3c0a5bcc641110bced2))
148
+
149
+ # [1.0.0-alpha.33](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.32...v1.0.0-alpha.33) (2026-04-06)
150
+
151
+
152
+ ### Features
153
+
154
+ * **cli:** refactor project, split into multiple components ([f18903b](https://github.com/bpinhosilva/agent-orchestrator/commit/f18903be0b1b09a1e651918d081d96267bfe2bc6))
155
+
156
+ # [1.0.0-alpha.32](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.31...v1.0.0-alpha.32) (2026-04-06)
157
+
158
+
159
+ ### Features
160
+
161
+ * enhance task scheduling with dynamic settings and improved error handling ([cbb5097](https://github.com/bpinhosilva/agent-orchestrator/commit/cbb50979f8e79e6cdc581ed29fa0933f82c3e4ee))
162
+
163
+ # [1.0.0-alpha.31](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.30...v1.0.0-alpha.31) (2026-04-06)
164
+
165
+
166
+ ### Features
167
+
168
+ * add environment variable setup and JWT refresh secret handling ([c9dfd05](https://github.com/bpinhosilva/agent-orchestrator/commit/c9dfd05070dfc4bc0e34e3853d0efe85d84d404a))
169
+
170
+ # [1.0.0-alpha.30](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.29...v1.0.0-alpha.30) (2026-04-05)
171
+
172
+
173
+ ### Features
174
+
175
+ * add UsersPage component with user management features and tests ([bb46646](https://github.com/bpinhosilva/agent-orchestrator/commit/bb466468849b01dd30bc228e3c0375b6aea874e8))
176
+ * integrate Personality Matrix component, refactor storage service ([2aa80d3](https://github.com/bpinhosilva/agent-orchestrator/commit/2aa80d3b64cd6431ba0113182dcb5d871075fcfd))
177
+ * integrate wait-on for improved dev workflow ([af26318](https://github.com/bpinhosilva/agent-orchestrator/commit/af2631820f5fc95b7b85c9f6ec52157b7df74264))
178
+
179
+ # [1.0.0-alpha.29](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.28...v1.0.0-alpha.29) (2026-04-04)
180
+
181
+
182
+ ### Features
183
+
184
+ * **migrations:** add seed and backfill migrations ([5991146](https://github.com/bpinhosilva/agent-orchestrator/commit/5991146cbb3bc971bddf73295dcf7dbd3e2b74e4))
185
+
186
+ # [1.0.0-alpha.28](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.27...v1.0.0-alpha.28) (2026-04-04)
187
+
188
+
189
+ ### Features
190
+
191
+ * **migrations:** add initial schema with users, providers, models, agents, projects, tasks ([e08e338](https://github.com/bpinhosilva/agent-orchestrator/commit/e08e3388794e8a556be3584daedd30252a8904fb))
192
+ * **migrations:** db schema ([a0a98b7](https://github.com/bpinhosilva/agent-orchestrator/commit/a0a98b725e09f6d3a9a8fc2305704772195fe2d8))
193
+
194
+ # [1.0.0-alpha.27](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.26...v1.0.0-alpha.27) (2026-04-04)
195
+
196
+
197
+ ### Features
198
+
199
+ * update default port to 15789 for production, enhance migration handling, and refactor env ([e59ba31](https://github.com/bpinhosilva/agent-orchestrator/commit/e59ba3105c5ce7367281bf3ee637bcc3bc124dcc))
200
+ * update mascot image format and adjust display size in README ([6779313](https://github.com/bpinhosilva/agent-orchestrator/commit/6779313a26a6906ecb47a8819789dc8312f3d6fc))
201
+
202
+ # [1.0.0-alpha.26](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.25...v1.0.0-alpha.26) (2026-04-04)
203
+
204
+
205
+ ### Features
206
+
207
+ * add AGENTS.md file ([51c706f](https://github.com/bpinhosilva/agent-orchestrator/commit/51c706f8784dd354280d853f605bb8c69e53175c))
208
+ * implement containerization, add health check endpoint, and update RBAC ([17149d3](https://github.com/bpinhosilva/agent-orchestrator/commit/17149d32a623f532308ba0f415a4b2ba332ec794))
209
+ * **refactor:** project terminology and update UI components ([47e5cb4](https://github.com/bpinhosilva/agent-orchestrator/commit/47e5cb4d45c05f893ebdd898f02ceeadcd213652))
210
+
211
+ # [1.0.0-alpha.25](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.24...v1.0.0-alpha.25) (2026-04-03)
212
+
213
+
214
+ ### Features
215
+
216
+ * **cli:** enhance setup command with detailed configuration options and improved process ([2b7f51d](https://github.com/bpinhosilva/agent-orchestrator/commit/2b7f51d16e8f1949e222c03968d925030e4b0574))
217
+
218
+ # [1.0.0-alpha.24](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.23...v1.0.0-alpha.24) (2026-04-02)
219
+
220
+
221
+ ### Features
222
+
223
+ * update README and documentation files with additional references and streamlined content ([ae7b1ac](https://github.com/bpinhosilva/agent-orchestrator/commit/ae7b1acbd47eebbc91b154f2b54da83eb8da0be8))
224
+
225
+ # [1.0.0-alpha.23](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.22...v1.0.0-alpha.23) (2026-04-02)
226
+
227
+
228
+ ### Features
229
+
230
+ * enhance project management with user roles and member management ([877832f](https://github.com/bpinhosilva/agent-orchestrator/commit/877832fc4ad8d77499124a4da23c14a1270622a4))
231
+ * implement release workflow with semantic release and build steps; remove old release.yml ([f17eb48](https://github.com/bpinhosilva/agent-orchestrator/commit/f17eb48c64b165c8fd05e142d175716f7990f670))
232
+ * update CI workflow to include E2E and UI tests; bump lodash version ([b8ceee6](https://github.com/bpinhosilva/agent-orchestrator/commit/b8ceee6adf0855b54d4a45d959e87ec338c55887))
233
+
234
+ # [1.0.0-alpha.22](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.21...v1.0.0-alpha.22) (2026-04-02)
235
+
236
+
237
+ ### Features
238
+
239
+ * add InitialsAvatar component and do some refactor ([417eff3](https://github.com/bpinhosilva/agent-orchestrator/commit/417eff3bdf4ac8cf072c99fc56744a3a93807a31))
240
+
241
+ # [1.0.0-alpha.21](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.20...v1.0.0-alpha.21) (2026-03-30)
242
+
243
+
244
+ ### Features
245
+
246
+ * enhance JWT security by specifying HS256 algorithm and improve logging in services ([349c94b](https://github.com/bpinhosilva/agent-orchestrator/commit/349c94b31bfdcc2f397cd81848bb2fd3b977a438))
247
+
248
+ # [1.0.0-alpha.20](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.19...v1.0.0-alpha.20) (2026-03-30)
249
+
250
+
251
+ ### Features
252
+
253
+ * implement security fixes ([f570f92](https://github.com/bpinhosilva/agent-orchestrator/commit/f570f92a10cf1473c36a0145c160f6e23905bb1f))
254
+
255
+ # [1.0.0-alpha.19](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.18...v1.0.0-alpha.19) (2026-03-30)
256
+
257
+
258
+ ### Features
259
+
260
+ * implement transaction management in services and tests for improved data integrity ([7b213da](https://github.com/bpinhosilva/agent-orchestrator/commit/7b213da8e9ee46da2e40f3e51e3d61c8a50ac850))
261
+
262
+ # [1.0.0-alpha.18](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.17...v1.0.0-alpha.18) (2026-03-29)
263
+
264
+
265
+ ### Features
266
+
267
+ * implement automated database migrations and interactive admin user setup in CLI ([6868b13](https://github.com/bpinhosilva/agent-orchestrator/commit/6868b137ad80c85d4ffc56b884b8016df8a3c533))
268
+
269
+ # [1.0.0-alpha.17](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.16...v1.0.0-alpha.17) (2026-03-29)
270
+
271
+
272
+ ### Features
273
+
274
+ * implement recurrent task scheduling system with backend services and UI management modal ([b3c699a](https://github.com/bpinhosilva/agent-orchestrator/commit/b3c699a5b7eb261458d97a7a0d40e5071e33fb1e))
275
+
276
+ # [1.0.0-alpha.16](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.15...v1.0.0-alpha.16) (2026-03-28)
277
+
278
+
279
+ ### Features
280
+
281
+ * implement scheduler page, add database indexes for performance, and update release workflow ([b4e067a](https://github.com/bpinhosilva/agent-orchestrator/commit/b4e067a1b20e4275214309c1241c163b456260da))
282
+
283
+ # [1.0.0-alpha.15](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.14...v1.0.0-alpha.15) (2026-03-28)
284
+
285
+
286
+ ### Features
287
+
288
+ * implement user authentication system with JWT, registration, and login functionality ([63582fa](https://github.com/bpinhosilva/agent-orchestrator/commit/63582fa8f318c8a6bc174795364a4d3cbd221d45))
289
+
290
+ # [1.0.0-alpha.14](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.13...v1.0.0-alpha.14) (2026-03-27)
291
+
292
+
293
+ ### Features
294
+
295
+ * add CreateTaskDto ([1604945](https://github.com/bpinhosilva/agent-orchestrator/commit/1604945737b5df5480c6c0814c369902f7cc9142))
296
+ * implement transient agent instances with dynamic configurationn ([5d57b08](https://github.com/bpinhosilva/agent-orchestrator/commit/5d57b0886edf4b14d93ab76f245f4311b6657f7d))
297
+
298
+ # [1.0.0-alpha.13](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.12...v1.0.0-alpha.13) (2026-03-26)
299
+
300
+
301
+ ### Features
302
+
303
+ * add Claude agent implementation with Anthropic SDK and refactor agent-provider ([1400a0d](https://github.com/bpinhosilva/agent-orchestrator/commit/1400a0dec6beb8393ddc4c5a23b9b860532079e8))
304
+
305
+ # [1.0.0-alpha.12](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.11...v1.0.0-alpha.12) (2026-03-24)
306
+
307
+
308
+ ### Features
309
+
310
+ * add .npmrc to enable legacy peer dependencies ([2f41a07](https://github.com/bpinhosilva/agent-orchestrator/commit/2f41a0747e3cc862241f90c24405c6ad0976557b))
311
+ * implement comprehensive project management, task comments with attachments ([10eb382](https://github.com/bpinhosilva/agent-orchestrator/commit/10eb38268d50ff9418a3e7af1788d55c759522a9))
312
+ * implement task detail view with comment polling, numeric priorities, and enhanced task card ([7a38155](https://github.com/bpinhosilva/agent-orchestrator/commit/7a38155ac796dbe528d48a340a0e6be7fa0150a3))
313
+ * introduce a task scheduler service for automated agent task assignment and execution ([d756f10](https://github.com/bpinhosilva/agent-orchestrator/commit/d756f10c441aadb3b31335a55926700b5518ec9e))
314
+
315
+ # [1.0.0-alpha.11](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.10...v1.0.0-alpha.11) (2026-03-24)
316
+
317
+
318
+ ### Bug Fixes
319
+
320
+ * downgrade class-validator from ^0.15.1 to ^0.14.1 ([6d9bb29](https://github.com/bpinhosilva/agent-orchestrator/commit/6d9bb291145cdfad7d8c5f4fc8a7ac6ee48ee776))
321
+
322
+
323
+ ### Features
324
+
325
+ * introduce task management UI with draggable cards and refactor provider ([1002dd1](https://github.com/bpinhosilva/agent-orchestrator/commit/1002dd1ac373fe4f6c3acb2eb6e9345b3ec35aba))
326
+
327
+ # [1.0.0-alpha.10](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.9...v1.0.0-alpha.10) (2026-03-22)
328
+
329
+
330
+ ### Features
331
+
332
+ * add agent probing functionality with a new API endpoint, service logic ([f71abb6](https://github.com/bpinhosilva/agent-orchestrator/commit/f71abb601745b7f2ae5c1f8be53143429302c1d2))
333
+
1
334
  # [1.0.0-alpha.9](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.8...v1.0.0-alpha.9) (2026-03-22)
2
335
 
3
336
 
@@ -66,6 +399,8 @@
66
399
 
67
400
  * ensure cli binary is executable and correctly mapped ([7616d98](https://github.com/bpinhosilva/agent-orchestrator/commit/7616d98ec29f4dfb0091869b746a3c9a00fe8cea))
68
401
 
402
+ # 1.0.0 (2026-03-17)
403
+
69
404
 
70
405
  ### Features
71
406