@bpinhosilva/agent-orchestrator 1.0.0-alpha.3 โ†’ 1.0.0-alpha.30

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 (291) hide show
  1. package/CHANGELOG.md +211 -0
  2. package/README.md +252 -49
  3. package/dist/agents/agent-emoji.constants.d.ts +5 -0
  4. package/dist/agents/agent-emoji.constants.js +21 -0
  5. package/dist/agents/agents.controller.d.ts +8 -0
  6. package/dist/agents/agents.controller.js +78 -1
  7. package/dist/agents/agents.module.js +5 -1
  8. package/dist/agents/agents.service.d.ts +20 -7
  9. package/dist/agents/agents.service.js +171 -11
  10. package/dist/agents/default-provider-models.d.ts +11 -0
  11. package/dist/agents/default-provider-models.js +17 -0
  12. package/dist/agents/dto/agent-attributes.dto.d.ts +14 -0
  13. package/dist/agents/dto/agent-attributes.dto.js +42 -0
  14. package/dist/agents/dto/agent-request.dto.d.ts +1 -0
  15. package/dist/agents/dto/agent-request.dto.js +12 -0
  16. package/dist/agents/dto/create-agent.dto.d.ts +13 -0
  17. package/dist/agents/dto/create-agent.dto.js +84 -0
  18. package/dist/agents/dto/update-agent.dto.d.ts +5 -0
  19. package/dist/agents/dto/update-agent.dto.js +12 -0
  20. package/dist/agents/entities/agent.entity.d.ts +18 -0
  21. package/dist/agents/entities/agent.entity.js +97 -0
  22. package/dist/agents/enums/provider.enum.d.ts +4 -0
  23. package/dist/agents/enums/provider.enum.js +8 -0
  24. package/dist/agents/implementations/claude.agent.d.ts +28 -0
  25. package/dist/agents/implementations/claude.agent.js +153 -0
  26. package/dist/agents/implementations/gemini.agent.d.ts +24 -1
  27. package/dist/agents/implementations/gemini.agent.js +161 -21
  28. package/dist/agents/interfaces/agent.interface.d.ts +8 -0
  29. package/dist/agents/personality.util.d.ts +8 -0
  30. package/dist/agents/personality.util.js +81 -0
  31. package/dist/agents/registry/agent.registry.d.ts +5 -0
  32. package/dist/agents/registry/agent.registry.js +14 -0
  33. package/dist/app.controller.d.ts +3 -0
  34. package/dist/app.controller.js +15 -0
  35. package/dist/app.module.js +84 -4
  36. package/dist/app.service.d.ts +3 -0
  37. package/dist/app.service.js +3 -0
  38. package/dist/auth/auth.controller.d.ts +24 -0
  39. package/dist/auth/auth.controller.js +178 -0
  40. package/dist/auth/auth.module.d.ts +2 -0
  41. package/dist/auth/auth.module.js +42 -0
  42. package/dist/auth/auth.service.d.ts +41 -0
  43. package/dist/auth/auth.service.js +269 -0
  44. package/dist/auth/decorators/current-user.decorator.d.ts +1 -0
  45. package/dist/auth/decorators/current-user.decorator.js +8 -0
  46. package/dist/auth/decorators/public.decorator.d.ts +2 -0
  47. package/dist/auth/decorators/public.decorator.js +7 -0
  48. package/dist/auth/decorators/roles.decorator.d.ts +3 -0
  49. package/dist/auth/decorators/roles.decorator.js +7 -0
  50. package/dist/auth/dto/login.dto.d.ts +4 -0
  51. package/dist/auth/dto/login.dto.js +33 -0
  52. package/dist/auth/dto/register.dto.d.ts +8 -0
  53. package/dist/auth/dto/register.dto.js +55 -0
  54. package/dist/auth/dto/update-profile.dto.d.ts +9 -0
  55. package/dist/auth/dto/update-profile.dto.js +65 -0
  56. package/dist/auth/entities/refresh-token.entity.d.ts +12 -0
  57. package/dist/auth/entities/refresh-token.entity.js +72 -0
  58. package/dist/auth/guards/jwt-auth.guard.d.ts +9 -0
  59. package/dist/auth/guards/jwt-auth.guard.js +38 -0
  60. package/dist/auth/guards/roles.guard.d.ts +7 -0
  61. package/dist/auth/guards/roles.guard.js +51 -0
  62. package/dist/auth/strategies/jwt.strategy.d.ts +16 -0
  63. package/dist/auth/strategies/jwt.strategy.js +52 -0
  64. package/dist/cli/index.d.ts +26 -0
  65. package/dist/cli/index.js +874 -0
  66. package/dist/common/common.module.d.ts +2 -0
  67. package/dist/common/common.module.js +29 -0
  68. package/dist/common/entities/artifact.entity.d.ts +7 -0
  69. package/dist/common/entities/artifact.entity.js +48 -0
  70. package/dist/common/filesystem-storage.service.d.ts +17 -0
  71. package/dist/common/filesystem-storage.service.js +131 -0
  72. package/dist/common/filters/http-exception.filter.d.ts +4 -0
  73. package/dist/common/filters/http-exception.filter.js +48 -0
  74. package/dist/common/storage-path.helper.d.ts +21 -0
  75. package/dist/common/storage-path.helper.js +96 -0
  76. package/dist/common/storage.service.d.ts +7 -0
  77. package/dist/common/storage.service.js +6 -0
  78. package/dist/config/env.validation.d.ts +2 -0
  79. package/dist/config/env.validation.js +53 -0
  80. package/dist/config/port.defaults.d.ts +3 -0
  81. package/dist/config/port.defaults.js +9 -0
  82. package/dist/config/runtime-paths.d.ts +6 -0
  83. package/dist/config/runtime-paths.js +38 -0
  84. package/dist/config/typeorm.d.ts +9 -0
  85. package/dist/config/typeorm.js +61 -0
  86. package/dist/database/migration-sql.utils.d.ts +2 -0
  87. package/dist/database/migration-sql.utils.js +11 -0
  88. package/dist/database/migration-state.d.ts +10 -0
  89. package/dist/database/migration-state.js +65 -0
  90. package/dist/main.js +80 -3
  91. package/dist/migrations/1775266979821-InitialSchema.d.ts +7 -0
  92. package/dist/migrations/1775266979821-InitialSchema.js +57 -0
  93. package/dist/migrations/1775268200000-SeedDefaultProvidersAndModels.d.ts +8 -0
  94. package/dist/migrations/1775268200000-SeedDefaultProvidersAndModels.js +45 -0
  95. package/dist/migrations/1775269500000-BackfillDefaultModelProviderIds.d.ts +9 -0
  96. package/dist/migrations/1775269500000-BackfillDefaultModelProviderIds.js +51 -0
  97. package/dist/migrations/1775271000000-AddAgentEmoji.d.ts +6 -0
  98. package/dist/migrations/1775271000000-AddAgentEmoji.js +21 -0
  99. package/dist/migrations/1775272000000-CreateSystemSettings.d.ts +5 -0
  100. package/dist/migrations/1775272000000-CreateSystemSettings.js +41 -0
  101. package/dist/migrations/1775290000000-AddAgentAttributes.d.ts +6 -0
  102. package/dist/migrations/1775290000000-AddAgentAttributes.js +20 -0
  103. package/dist/models/dto/create-model.dto.d.ts +4 -0
  104. package/dist/models/dto/create-model.dto.js +32 -0
  105. package/dist/models/dto/update-model.dto.d.ts +5 -0
  106. package/dist/models/dto/update-model.dto.js +12 -0
  107. package/dist/models/entities/model.entity.d.ts +10 -0
  108. package/dist/models/entities/model.entity.js +60 -0
  109. package/dist/models/models.controller.d.ts +13 -0
  110. package/dist/models/models.controller.js +102 -0
  111. package/dist/models/models.module.d.ts +2 -0
  112. package/dist/models/models.module.js +25 -0
  113. package/dist/models/models.service.d.ts +14 -0
  114. package/dist/models/models.service.js +77 -0
  115. package/dist/projects/dto/add-member.dto.d.ts +5 -0
  116. package/dist/projects/dto/add-member.dto.js +32 -0
  117. package/dist/projects/dto/create-project.dto.d.ts +7 -0
  118. package/dist/projects/dto/create-project.dto.js +45 -0
  119. package/dist/projects/dto/update-project.dto.d.ts +6 -0
  120. package/dist/projects/dto/update-project.dto.js +28 -0
  121. package/dist/projects/entities/project-member.entity.d.ts +13 -0
  122. package/dist/projects/entities/project-member.entity.js +60 -0
  123. package/dist/projects/entities/project.entity.d.ts +19 -0
  124. package/dist/projects/entities/project.entity.js +83 -0
  125. package/dist/projects/projects.controller.d.ts +17 -0
  126. package/dist/projects/projects.controller.js +140 -0
  127. package/dist/projects/projects.module.d.ts +2 -0
  128. package/dist/projects/projects.module.js +30 -0
  129. package/dist/projects/projects.service.d.ts +22 -0
  130. package/dist/projects/projects.service.js +214 -0
  131. package/dist/providers/dto/create-provider.dto.d.ts +4 -0
  132. package/dist/providers/dto/create-provider.dto.js +32 -0
  133. package/dist/providers/dto/update-provider.dto.d.ts +5 -0
  134. package/dist/providers/dto/update-provider.dto.js +12 -0
  135. package/dist/providers/entities/provider.entity.d.ts +9 -0
  136. package/dist/providers/entities/provider.entity.js +54 -0
  137. package/dist/providers/providers.controller.d.ts +13 -0
  138. package/dist/providers/providers.controller.js +102 -0
  139. package/dist/providers/providers.module.d.ts +2 -0
  140. package/dist/providers/providers.module.js +25 -0
  141. package/dist/providers/providers.service.d.ts +14 -0
  142. package/dist/providers/providers.service.js +72 -0
  143. package/dist/system-settings/dto/update-system-settings.dto.d.ts +3 -0
  144. package/dist/system-settings/dto/update-system-settings.dto.js +25 -0
  145. package/dist/system-settings/entities/system-settings.entity.d.ts +6 -0
  146. package/dist/system-settings/entities/system-settings.entity.js +43 -0
  147. package/dist/system-settings/system-settings.controller.d.ts +8 -0
  148. package/dist/system-settings/system-settings.controller.js +57 -0
  149. package/dist/system-settings/system-settings.module.d.ts +2 -0
  150. package/dist/system-settings/system-settings.module.js +25 -0
  151. package/dist/system-settings/system-settings.service.d.ts +33 -0
  152. package/dist/system-settings/system-settings.service.js +72 -0
  153. package/dist/tasks/comments.controller.d.ts +12 -0
  154. package/dist/tasks/comments.controller.js +91 -0
  155. package/dist/tasks/comments.service.d.ts +22 -0
  156. package/dist/tasks/comments.service.js +209 -0
  157. package/dist/tasks/dto/create-comment.dto.d.ts +13 -0
  158. package/dist/tasks/dto/create-comment.dto.js +51 -0
  159. package/dist/tasks/dto/create-recurrent-task.dto.d.ts +10 -0
  160. package/dist/tasks/dto/create-recurrent-task.dto.js +62 -0
  161. package/dist/tasks/dto/create-task.dto.d.ts +9 -0
  162. package/dist/tasks/dto/create-task.dto.js +61 -0
  163. package/dist/tasks/dto/update-comment.dto.d.ts +9 -0
  164. package/dist/tasks/dto/update-comment.dto.js +31 -0
  165. package/dist/tasks/dto/update-recurrent-task.dto.d.ts +5 -0
  166. package/dist/tasks/dto/update-recurrent-task.dto.js +12 -0
  167. package/dist/tasks/dto/update-task.dto.d.ts +5 -0
  168. package/dist/tasks/dto/update-task.dto.js +12 -0
  169. package/dist/tasks/entities/comment.entity.d.ts +23 -0
  170. package/dist/tasks/entities/comment.entity.js +93 -0
  171. package/dist/tasks/entities/recurrent-task-exec.entity.d.ts +16 -0
  172. package/dist/tasks/entities/recurrent-task-exec.entity.js +74 -0
  173. package/dist/tasks/entities/recurrent-task.entity.d.ts +22 -0
  174. package/dist/tasks/entities/recurrent-task.entity.js +106 -0
  175. package/dist/tasks/entities/task.entity.d.ts +31 -0
  176. package/dist/tasks/entities/task.entity.js +125 -0
  177. package/dist/tasks/recurrent-task-scheduler.service.d.ts +21 -0
  178. package/dist/tasks/recurrent-task-scheduler.service.js +169 -0
  179. package/dist/tasks/recurrent-tasks.controller.d.ts +15 -0
  180. package/dist/tasks/recurrent-tasks.controller.js +109 -0
  181. package/dist/tasks/recurrent-tasks.service.d.ts +16 -0
  182. package/dist/tasks/recurrent-tasks.service.js +149 -0
  183. package/dist/tasks/task-scheduler.service.d.ts +28 -0
  184. package/dist/tasks/task-scheduler.service.js +281 -0
  185. package/dist/tasks/tasks.controller.d.ts +27 -0
  186. package/dist/tasks/tasks.controller.js +126 -0
  187. package/dist/tasks/tasks.module.d.ts +2 -0
  188. package/dist/tasks/tasks.module.js +56 -0
  189. package/dist/tasks/tasks.service.d.ts +34 -0
  190. package/dist/tasks/tasks.service.js +171 -0
  191. package/dist/ui/assets/AgentFleet-BC7f8zM2.js +1 -0
  192. package/dist/ui/assets/ConfirmDialog-CkcwaNQU.js +1 -0
  193. package/dist/ui/assets/MarkdownField-CctdTNGJ.js +1 -0
  194. package/dist/ui/assets/Profile-Dt9Cr9ID.js +1 -0
  195. package/dist/ui/assets/ProjectDetail-qH2AAZTi.js +1 -0
  196. package/dist/ui/assets/Providers-B54XMRse.js +1 -0
  197. package/dist/ui/assets/Scheduler-nEIrwyM5.js +1 -0
  198. package/dist/ui/assets/Settings-Docpy4vj.js +1 -0
  199. package/dist/ui/assets/TaskDetail-DcoOOrcL.js +1 -0
  200. package/dist/ui/assets/TaskManager-CKrFNDP3.js +8 -0
  201. package/dist/ui/assets/UserDetail-B0BX-fYw.js +1 -0
  202. package/dist/ui/assets/Users-i0A2bsB0.js +1 -0
  203. package/dist/ui/assets/activity-D2aBFbnN.js +1 -0
  204. package/dist/ui/assets/box-3f35ZKNV.js +1 -0
  205. package/dist/ui/assets/brain-DwFWAhZ9.js +1 -0
  206. package/dist/ui/assets/check-BhOeS9mA.js +1 -0
  207. package/dist/ui/assets/chevron-down-DOfOMDZp.js +1 -0
  208. package/dist/ui/assets/chevron-left-QkqjdeR4.js +1 -0
  209. package/dist/ui/assets/chevron-right-KmgHEojr.js +1 -0
  210. package/dist/ui/assets/client-CylGrWpP.js +6 -0
  211. package/dist/ui/assets/clock-BTNXfvPT.js +1 -0
  212. package/dist/ui/assets/cn-DKjtbpik.js +1 -0
  213. package/dist/ui/assets/database-DCvzb1Ln.js +1 -0
  214. package/dist/ui/assets/eye-CYZnDMed.js +1 -0
  215. package/dist/ui/assets/file-text-CPTKEcvU.js +1 -0
  216. package/dist/ui/assets/index-B2axrOIs.js +2 -0
  217. package/dist/ui/assets/index-CbC4BxZg.css +2 -0
  218. package/dist/ui/assets/layers-Cv5Kbvy2.js +1 -0
  219. package/dist/ui/assets/loader-circle-C8SRxjl2.js +1 -0
  220. package/dist/ui/assets/providers-BLAJFnS4.js +1 -0
  221. package/dist/ui/assets/rocket-D_szyz9E.js +1 -0
  222. package/dist/ui/assets/rolldown-runtime-COnpUsM8.js +1 -0
  223. package/dist/ui/assets/save-DZKbCHc6.js +1 -0
  224. package/dist/ui/assets/search-CS7DFiLw.js +1 -0
  225. package/dist/ui/assets/send-OVfBL10t.js +1 -0
  226. package/dist/ui/assets/shield-alert-BqmiwlAJ.js +1 -0
  227. package/dist/ui/assets/shield-check-DCdshyB-.js +1 -0
  228. package/dist/ui/assets/sparkles-BYfDbPNH.js +1 -0
  229. package/dist/ui/assets/taskFormSchemas-DdMj5uS7.js +10 -0
  230. package/dist/ui/assets/tasks-QGA3THUZ.js +1 -0
  231. package/dist/ui/assets/terminal-C1KxpLUh.js +1 -0
  232. package/dist/ui/assets/trash-2-BxFsrfIN.js +1 -0
  233. package/dist/ui/assets/trending-up-B1iQTY5i.js +1 -0
  234. package/dist/ui/assets/user-Dp-h-An5.js +1 -0
  235. package/dist/ui/assets/user-plus-CrYvStM7.js +1 -0
  236. package/dist/ui/assets/users-B8mDcSH_.js +1 -0
  237. package/dist/ui/assets/vendor-dnd-CxfOy4-Z.js +5 -0
  238. package/dist/ui/assets/vendor-forms-Djx-6_sr.js +39 -0
  239. package/dist/ui/assets/vendor-markdown-Dl_1qnne.js +29 -0
  240. package/dist/ui/assets/vendor-motion-DUzX9EJL.js +9 -0
  241. package/dist/ui/assets/vendor-query-DQlZ8h7P.js +1 -0
  242. package/dist/ui/assets/vendor-react-CiDbU5Ns.js +11 -0
  243. package/dist/ui/assets/zap-Dqr_5eJO.js +1 -0
  244. package/dist/ui/avatar-presets/avatar-01.svg +11 -0
  245. package/dist/ui/avatar-presets/avatar-02.svg +12 -0
  246. package/dist/ui/avatar-presets/avatar-03.svg +12 -0
  247. package/dist/ui/avatar-presets/avatar-04.svg +12 -0
  248. package/dist/ui/avatar-presets/avatar-05.svg +12 -0
  249. package/dist/ui/avatar-presets/avatar-06.svg +12 -0
  250. package/dist/ui/avatar-presets/avatar-07.svg +12 -0
  251. package/dist/ui/avatar-presets/avatar-08.svg +12 -0
  252. package/dist/ui/favicon.svg +1 -0
  253. package/dist/ui/icons.svg +24 -0
  254. package/dist/ui/index.html +23 -0
  255. package/dist/uploads/parse-filepath.pipe.d.ts +5 -0
  256. package/dist/uploads/parse-filepath.pipe.js +26 -0
  257. package/dist/uploads/uploads.controller.d.ts +8 -0
  258. package/dist/uploads/uploads.controller.js +115 -0
  259. package/dist/uploads/uploads.module.d.ts +2 -0
  260. package/dist/uploads/uploads.module.js +19 -0
  261. package/dist/users/avatar.constants.d.ts +11 -0
  262. package/dist/users/avatar.constants.js +35 -0
  263. package/dist/users/dto/create-user.dto.d.ts +8 -0
  264. package/dist/users/dto/create-user.dto.js +55 -0
  265. package/dist/users/dto/list-users-query.dto.d.ts +5 -0
  266. package/dist/users/dto/list-users-query.dto.js +49 -0
  267. package/dist/users/dto/update-user.dto.d.ts +7 -0
  268. package/dist/users/dto/update-user.dto.js +29 -0
  269. package/dist/users/entities/user.entity.d.ts +15 -0
  270. package/dist/users/entities/user.entity.js +61 -0
  271. package/dist/users/users.controller.d.ts +16 -0
  272. package/dist/users/users.controller.js +85 -0
  273. package/dist/users/users.module.d.ts +2 -0
  274. package/dist/users/users.module.js +25 -0
  275. package/dist/users/users.service.d.ts +23 -0
  276. package/dist/users/users.service.js +127 -0
  277. package/package.json +89 -17
  278. package/dist/agents/agents.controller.js.map +0 -1
  279. package/dist/agents/agents.module.js.map +0 -1
  280. package/dist/agents/agents.service.js.map +0 -1
  281. package/dist/agents/dto/agent-request.dto.js.map +0 -1
  282. package/dist/agents/implementations/gemini.agent.js.map +0 -1
  283. package/dist/agents/interfaces/agent.interface.js.map +0 -1
  284. package/dist/app.controller.js.map +0 -1
  285. package/dist/app.module.js.map +0 -1
  286. package/dist/app.service.js.map +0 -1
  287. package/dist/cli.d.ts +0 -2
  288. package/dist/cli.js +0 -21
  289. package/dist/cli.js.map +0 -1
  290. package/dist/main.js.map +0 -1
  291. package/dist/tsconfig.build.tsbuildinfo +0 -1
package/CHANGELOG.md CHANGED
@@ -1,3 +1,214 @@
1
+ # [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)
2
+
3
+
4
+ ### Features
5
+
6
+ * add UsersPage component with user management features and tests ([bb46646](https://github.com/bpinhosilva/agent-orchestrator/commit/bb466468849b01dd30bc228e3c0375b6aea874e8))
7
+ * integrate Personality Matrix component, refactor storage service ([2aa80d3](https://github.com/bpinhosilva/agent-orchestrator/commit/2aa80d3b64cd6431ba0113182dcb5d871075fcfd))
8
+ * integrate wait-on for improved dev workflow ([af26318](https://github.com/bpinhosilva/agent-orchestrator/commit/af2631820f5fc95b7b85c9f6ec52157b7df74264))
9
+
10
+ # [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)
11
+
12
+
13
+ ### Features
14
+
15
+ * **migrations:** add seed and backfill migrations ([5991146](https://github.com/bpinhosilva/agent-orchestrator/commit/5991146cbb3bc971bddf73295dcf7dbd3e2b74e4))
16
+
17
+ # [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)
18
+
19
+
20
+ ### Features
21
+
22
+ * **migrations:** add initial schema with users, providers, models, agents, projects, tasks ([e08e338](https://github.com/bpinhosilva/agent-orchestrator/commit/e08e3388794e8a556be3584daedd30252a8904fb))
23
+ * **migrations:** db schema ([a0a98b7](https://github.com/bpinhosilva/agent-orchestrator/commit/a0a98b725e09f6d3a9a8fc2305704772195fe2d8))
24
+
25
+ # [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)
26
+
27
+
28
+ ### Features
29
+
30
+ * update default port to 15789 for production, enhance migration handling, and refactor env ([e59ba31](https://github.com/bpinhosilva/agent-orchestrator/commit/e59ba3105c5ce7367281bf3ee637bcc3bc124dcc))
31
+ * update mascot image format and adjust display size in README ([6779313](https://github.com/bpinhosilva/agent-orchestrator/commit/6779313a26a6906ecb47a8819789dc8312f3d6fc))
32
+
33
+ # [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)
34
+
35
+
36
+ ### Features
37
+
38
+ * add AGENTS.md file ([51c706f](https://github.com/bpinhosilva/agent-orchestrator/commit/51c706f8784dd354280d853f605bb8c69e53175c))
39
+ * implement containerization, add health check endpoint, and update RBAC ([17149d3](https://github.com/bpinhosilva/agent-orchestrator/commit/17149d32a623f532308ba0f415a4b2ba332ec794))
40
+ * **refactor:** project terminology and update UI components ([47e5cb4](https://github.com/bpinhosilva/agent-orchestrator/commit/47e5cb4d45c05f893ebdd898f02ceeadcd213652))
41
+
42
+ # [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)
43
+
44
+
45
+ ### Features
46
+
47
+ * **cli:** enhance setup command with detailed configuration options and improved process ([2b7f51d](https://github.com/bpinhosilva/agent-orchestrator/commit/2b7f51d16e8f1949e222c03968d925030e4b0574))
48
+
49
+ # [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)
50
+
51
+
52
+ ### Features
53
+
54
+ * update README and documentation files with additional references and streamlined content ([ae7b1ac](https://github.com/bpinhosilva/agent-orchestrator/commit/ae7b1acbd47eebbc91b154f2b54da83eb8da0be8))
55
+
56
+ # [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)
57
+
58
+
59
+ ### Features
60
+
61
+ * enhance project management with user roles and member management ([877832f](https://github.com/bpinhosilva/agent-orchestrator/commit/877832fc4ad8d77499124a4da23c14a1270622a4))
62
+ * implement release workflow with semantic release and build steps; remove old release.yml ([f17eb48](https://github.com/bpinhosilva/agent-orchestrator/commit/f17eb48c64b165c8fd05e142d175716f7990f670))
63
+ * update CI workflow to include E2E and UI tests; bump lodash version ([b8ceee6](https://github.com/bpinhosilva/agent-orchestrator/commit/b8ceee6adf0855b54d4a45d959e87ec338c55887))
64
+
65
+ # [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)
66
+
67
+
68
+ ### Features
69
+
70
+ * add InitialsAvatar component and do some refactor ([417eff3](https://github.com/bpinhosilva/agent-orchestrator/commit/417eff3bdf4ac8cf072c99fc56744a3a93807a31))
71
+
72
+ # [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)
73
+
74
+
75
+ ### Features
76
+
77
+ * enhance JWT security by specifying HS256 algorithm and improve logging in services ([349c94b](https://github.com/bpinhosilva/agent-orchestrator/commit/349c94b31bfdcc2f397cd81848bb2fd3b977a438))
78
+
79
+ # [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)
80
+
81
+
82
+ ### Features
83
+
84
+ * implement security fixes ([f570f92](https://github.com/bpinhosilva/agent-orchestrator/commit/f570f92a10cf1473c36a0145c160f6e23905bb1f))
85
+
86
+ # [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)
87
+
88
+
89
+ ### Features
90
+
91
+ * implement transaction management in services and tests for improved data integrity ([7b213da](https://github.com/bpinhosilva/agent-orchestrator/commit/7b213da8e9ee46da2e40f3e51e3d61c8a50ac850))
92
+
93
+ # [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)
94
+
95
+
96
+ ### Features
97
+
98
+ * implement automated database migrations and interactive admin user setup in CLI ([6868b13](https://github.com/bpinhosilva/agent-orchestrator/commit/6868b137ad80c85d4ffc56b884b8016df8a3c533))
99
+
100
+ # [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)
101
+
102
+
103
+ ### Features
104
+
105
+ * implement recurrent task scheduling system with backend services and UI management modal ([b3c699a](https://github.com/bpinhosilva/agent-orchestrator/commit/b3c699a5b7eb261458d97a7a0d40e5071e33fb1e))
106
+
107
+ # [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)
108
+
109
+
110
+ ### Features
111
+
112
+ * implement scheduler page, add database indexes for performance, and update release workflow ([b4e067a](https://github.com/bpinhosilva/agent-orchestrator/commit/b4e067a1b20e4275214309c1241c163b456260da))
113
+
114
+ # [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)
115
+
116
+
117
+ ### Features
118
+
119
+ * implement user authentication system with JWT, registration, and login functionality ([63582fa](https://github.com/bpinhosilva/agent-orchestrator/commit/63582fa8f318c8a6bc174795364a4d3cbd221d45))
120
+
121
+ # [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)
122
+
123
+
124
+ ### Features
125
+
126
+ * add CreateTaskDto ([1604945](https://github.com/bpinhosilva/agent-orchestrator/commit/1604945737b5df5480c6c0814c369902f7cc9142))
127
+ * implement transient agent instances with dynamic configurationn ([5d57b08](https://github.com/bpinhosilva/agent-orchestrator/commit/5d57b0886edf4b14d93ab76f245f4311b6657f7d))
128
+
129
+ # [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)
130
+
131
+
132
+ ### Features
133
+
134
+ * add Claude agent implementation with Anthropic SDK and refactor agent-provider ([1400a0d](https://github.com/bpinhosilva/agent-orchestrator/commit/1400a0dec6beb8393ddc4c5a23b9b860532079e8))
135
+
136
+ # [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)
137
+
138
+
139
+ ### Features
140
+
141
+ * add .npmrc to enable legacy peer dependencies ([2f41a07](https://github.com/bpinhosilva/agent-orchestrator/commit/2f41a0747e3cc862241f90c24405c6ad0976557b))
142
+ * implement comprehensive project management, task comments with attachments ([10eb382](https://github.com/bpinhosilva/agent-orchestrator/commit/10eb38268d50ff9418a3e7af1788d55c759522a9))
143
+ * implement task detail view with comment polling, numeric priorities, and enhanced task card ([7a38155](https://github.com/bpinhosilva/agent-orchestrator/commit/7a38155ac796dbe528d48a340a0e6be7fa0150a3))
144
+ * introduce a task scheduler service for automated agent task assignment and execution ([d756f10](https://github.com/bpinhosilva/agent-orchestrator/commit/d756f10c441aadb3b31335a55926700b5518ec9e))
145
+
146
+ # [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)
147
+
148
+
149
+ ### Bug Fixes
150
+
151
+ * downgrade class-validator from ^0.15.1 to ^0.14.1 ([6d9bb29](https://github.com/bpinhosilva/agent-orchestrator/commit/6d9bb291145cdfad7d8c5f4fc8a7ac6ee48ee776))
152
+
153
+
154
+ ### Features
155
+
156
+ * introduce task management UI with draggable cards and refactor provider ([1002dd1](https://github.com/bpinhosilva/agent-orchestrator/commit/1002dd1ac373fe4f6c3acb2eb6e9345b3ec35aba))
157
+
158
+ # [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)
159
+
160
+
161
+ ### Features
162
+
163
+ * add agent probing functionality with a new API endpoint, service logic ([f71abb6](https://github.com/bpinhosilva/agent-orchestrator/commit/f71abb601745b7f2ae5c1f8be53143429302c1d2))
164
+
165
+ # [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)
166
+
167
+
168
+ ### Features
169
+
170
+ * implement provider and model management UI and API, and enhance agent configuration ([01dbe34](https://github.com/bpinhosilva/agent-orchestrator/commit/01dbe345b8763da433682d7bc185c017e5b5d5d9))
171
+
172
+ # [1.0.0-alpha.8](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.7...v1.0.0-alpha.8) (2026-03-22)
173
+
174
+
175
+ ### Features
176
+
177
+ * add initial user interface for agent management and orchestration ([7a27019](https://github.com/bpinhosilva/agent-orchestrator/commit/7a270197691453384e5827987574f94e93cad7fb))
178
+
179
+ # [1.0.0-alpha.7](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.6...v1.0.0-alpha.7) (2026-03-21)
180
+
181
+
182
+ ### Features
183
+
184
+ * add user management module, introduce task output field, and include a design document ([7d0717d](https://github.com/bpinhosilva/agent-orchestrator/commit/7d0717d5a566435641e46b2f4b40101df0f62ed6))
185
+
186
+ # [1.0.0-alpha.6](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.5...v1.0.0-alpha.6) (2026-03-21)
187
+
188
+
189
+ ### Features
190
+
191
+ * implement project and task management modules, including entities, DTOs, services, controllers ([3df2c2a](https://github.com/bpinhosilva/agent-orchestrator/commit/3df2c2a6d0bdf4e3e4edbf12f544a8e12970e2dd))
192
+
193
+ # [1.0.0-alpha.5](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.4...v1.0.0-alpha.5) (2026-03-21)
194
+
195
+
196
+ ### Bug Fixes
197
+
198
+ * **ci:** use legacy-peer-deps to resolve peer dependency conflicts ([b450b45](https://github.com/bpinhosilva/agent-orchestrator/commit/b450b4500ff02addb1bca6cc7f6a40c93e442e7f))
199
+
200
+
201
+ ### Features
202
+
203
+ * implement models and providers modules add swagger documentation, and update agents ([b6e8245](https://github.com/bpinhosilva/agent-orchestrator/commit/b6e824547f4f603cecf0352b383d20a078fe6662))
204
+
205
+ # [1.0.0-alpha.4](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.3...v1.0.0-alpha.4) (2026-03-20)
206
+
207
+
208
+ ### Features
209
+
210
+ * update Google Gemini API client library, adapt agent implementation and tests ([46a52dd](https://github.com/bpinhosilva/agent-orchestrator/commit/46a52dd518f27cded3213248e9646300b6bc2fb8))
211
+
1
212
  # [1.0.0-alpha.3](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0-alpha.2...v1.0.0-alpha.3) (2026-03-17)
2
213
 
3
214
 
package/README.md CHANGED
@@ -1,75 +1,278 @@
1
1
  # Agent Orchestrator
2
2
 
3
- [![CI](https://github.com/bpinhosilva/agent-orchestrator/actions/workflows/ci.yml/badge.svg)](https://github.com/bpinhosilva/agent-orchestrator/actions/workflows/ci.yml)
4
- [![Release](https://github.com/bpinhosilva/agent-orchestrator/actions/workflows/release.yml/badge.svg)](https://github.com/bpinhosilva/agent-orchestrator/actions/workflows/release.yml)
5
- [![Gitleaks](https://github.com/bpinhosilva/agent-orchestrator/actions/workflows/gitleaks.yml/badge.svg)](https://github.com/bpinhosilva/agent-orchestrator/actions/workflows/gitleaks.yml)
6
-
7
- Agent Orchestrator is an open-source project designed to manage and orchestrate AI agents using both back-end services and front-end applications. It provides an automated agentic execution environment where you can create multiple agent profiles (e.g., Head Agent, Researcher, CMO) and delegate tasks to them through automated workflows.
8
-
9
- ## Features (In Progress & Planned)
10
- - **Agent Delegation**: Delegate tasks to specialized AI agents.
11
- - **Job Scheduler**: Create and schedule recurring agentic tasks.
12
- - **Workflow Engine**: Drag-and-drop workflow builder supporting triggers, agent chaining, and outputs.
13
- - **Agent Capabilities**: File reading/writing, web search, email capabilities, and image generation using NanoBanana.
14
- - **TUI/CLI Tooling**: CLI executables to manage the installation and local agent configuration.
15
-
16
- ## Current Architecture
17
- - **Backend Framework**: NestJS + TypeScript
18
- - **Frontend SPA**: React (Currently served as a single placeholder HTML file by the backend for MVP)
19
- - **Database**: PostgreSQL (via Docker Compose)
20
- - **Testing**: Jest (TDD Approach with Unit & E2E)
21
- - **Architecture**: 3-Tier (Controller, Service, DAL/Adapter Interfaces)
3
+ <p align="center">
4
+ <img src="https://raw.githubusercontent.com/bpinhosilva/agent-orchestrator/main/docs/assets/lupy-mascot.webp" alt="Lupy, the Agent Orchestrator mascot" width="500" />
5
+ </p>
6
+
7
+ <p align="center"><em>Lupy, the project mascot, inspired by Bruno's dog and companion of 10 years.</em></p>
8
+
9
+ <p align="center">
10
+ <a href="https://github.com/bpinhosilva/agent-orchestrator/actions/workflows/ci.yml"><img src="https://github.com/bpinhosilva/agent-orchestrator/actions/workflows/ci.yml/badge.svg" alt="CI" /></a>
11
+ <a href="https://github.com/bpinhosilva/agent-orchestrator/actions/workflows/gitleaks.yml"><img src="https://github.com/bpinhosilva/agent-orchestrator/actions/workflows/gitleaks.yml/badge.svg" alt="Gitleaks" /></a>
12
+ <a href="https://socket.dev/npm/package/@bpinhosilva/agent-orchestrator"><img src="https://socket.dev/api/badge/npm/package/@bpinhosilva/agent-orchestrator" alt="Socket Badge" /></a>
13
+ </p>
14
+
15
+ Agent Orchestrator is an open-source platform for managing AI agents, tasks, and project-scoped automation across multiple model providers. It combines a NestJS API, a React dashboard, a packaged CLI/runtime, and Docker deployment options for both local use and production-style environments.
16
+
17
+ ## Current capabilities
18
+
19
+ - Multi-provider agent execution with Google Gemini and Anthropic Claude
20
+ - Agent profiles with provider/model selection
21
+ - Project management with project membership and RBAC
22
+ - Task execution plus recurring scheduling
23
+ - File upload and artifact-backed task workflows
24
+ - Packaged CLI/runtime for setup, run, status, logs, stop, and migrate
25
+ - React dashboard served by the backend or packaged runtime
26
+
27
+ ## Planned direction
28
+
29
+ - Richer workflow orchestration and agent chaining
30
+ - Broader agent tool integrations
31
+ - Expanded runtime and deployment ergonomics
32
+
33
+ ## Architecture at a glance
34
+
35
+ | Area | Stack |
36
+ | --- | --- |
37
+ | Backend | NestJS 11 + TypeScript 5 |
38
+ | Frontend | React SPA |
39
+ | Database | PostgreSQL (production) / SQLite via `better-sqlite3` (local/runtime) |
40
+ | ORM | TypeORM |
41
+ | Auth | JWT access/refresh tokens via httpOnly cookies |
42
+ | Packaging | npm package with bundled backend, CLI, and UI assets |
22
43
 
23
44
  ## Prerequisites
24
- - [Node.js](https://nodejs.org/) (v18+)
25
- - [Docker](https://www.docker.com/) and Docker Compose (Optional for local PostgreSQL deployment)
26
- - A [Google Gemini API Key](https://aistudio.google.com/)
27
45
 
28
- ## Installation
46
+ - [Node.js](https://nodejs.org/) 24 or newer
47
+ - npm
48
+ - [Docker](https://www.docker.com/) and Docker Compose (optional)
49
+ - At least one provider API key to execute agents:
50
+ - [Google Gemini API key](https://aistudio.google.com/)
51
+ - [Anthropic API key](https://console.anthropic.com/)
52
+
53
+ ## Quick start
54
+
55
+ Choose the path that matches how you want to use the project:
56
+
57
+ - **Packaged CLI/runtime**: quickest way to run the app locally as an installed tool
58
+ - **Source checkout**: best path for development and contributing
59
+
60
+ ### Option A: packaged CLI/runtime
29
61
 
30
62
  ```bash
31
- $ npm install
63
+ npm install -g @bpinhosilva/agent-orchestrator
64
+ agent-orchestrator setup
65
+ agent-orchestrator run
66
+ agent-orchestrator status
32
67
  ```
33
68
 
34
- ## Running the app
69
+ `setup` can create the runtime `.env`, run migrations, seed an admin user, and prompt you to apply pending migrations after package updates. `run` does not upgrade the database automatically. The default runtime home is `~/.agent-orchestrator`, or `${AGENT_ORCHESTRATOR_HOME}` if you set it explicitly.
70
+
71
+ For deeper CLI usage, see [docs/CLI.md](docs/CLI.md).
35
72
 
36
- Before running the application, ensure you have set the `GEMINI_API_KEY` in your environment variables, as the default agent is the `GeminiAgent`.
73
+ ### Option B: source checkout
37
74
 
38
75
  ```bash
39
- # Start the PostgreSQL Database
40
- $ docker compose up -d
76
+ git clone https://github.com/bpinhosilva/agent-orchestrator.git
77
+ cd agent-orchestrator
78
+ npm install
79
+ npm rebuild
80
+ npm run build:all
81
+ ```
41
82
 
42
- # development
43
- $ GEMINI_API_KEY="your-api-key" npm run start
83
+ > **Note**: The repository uses `ignore-scripts=true` in `.npmrc` for supply-chain hardening. After `npm install`, run `npm rebuild --ignore-scripts=false` so native modules such as `bcrypt` and `better-sqlite3` are actually compiled.
44
84
 
45
- # watch mode
46
- $ GEMINI_API_KEY="your-api-key" npm run start:dev
85
+ If you want to use the packaged CLI behavior from a source checkout, run the built entrypoint directly:
47
86
 
48
- # production mode
49
- $ GEMINI_API_KEY="your-api-key" npm run start:prod
87
+ ```bash
88
+ node dist/cli/index.js --help
50
89
  ```
51
90
 
52
- Once running, you can access the frontend dashboard container URL at `http://localhost:3000`. The API endpoints are accessible via `http://localhost:3000/api/v1/`.
91
+ ## Configure the runtime
92
+
93
+ The app loads configuration from:
53
94
 
54
- ## Testing
95
+ - `${AGENT_ORCHESTRATOR_HOME}/.env` when `AGENT_ORCHESTRATOR_HOME` is set
96
+ - `.env` in the project/package root otherwise
97
+
98
+ Example `.env`:
55
99
 
56
100
  ```bash
57
- # unit tests
58
- $ npm run test
101
+ # Required
102
+ JWT_SECRET="replace-with-a-secret-at-least-32-characters-long"
103
+
104
+ # Provider keys (optional until you want to execute agents)
105
+ GEMINI_API_KEY=""
106
+ ANTHROPIC_API_KEY=""
59
107
 
60
- # e2e tests
61
- $ npm run test:e2e
108
+ # Database
109
+ DB_TYPE=sqlite
110
+ DATABASE_URL=
62
111
 
63
- # test coverage
64
- $ npm run test:cov
112
+ # Runtime
113
+ PORT=15789
114
+ NODE_ENV=production
115
+ ALLOWED_ORIGINS=http://localhost:5173,http://localhost:3000
116
+ SCHEDULER_ENABLED=true
117
+ DB_LOGGING=false
118
+ SERVE_STATIC_UI=true
119
+ CHECK_PENDING_MIGRATIONS_ON_STARTUP=false
65
120
  ```
66
121
 
67
- ## API usage
122
+ ## Database setup
123
+
124
+ ### SQLite
125
+
126
+ SQLite is the default local/runtime option when `DATABASE_URL` is not set. The database file lives at:
127
+
128
+ - `local.sqlite` in the project/package root, or
129
+ - `${AGENT_ORCHESTRATOR_HOME}/local.sqlite` when runtime home is set
68
130
 
69
- **Endpoint**: `POST /api/v1/agents/process`
70
- **Payload**:
71
- ```json
72
- {
73
- "input": "Write a short poem about automation."
74
- }
131
+ ### PostgreSQL
132
+
133
+ Use PostgreSQL by setting `DATABASE_URL` or `DB_TYPE=postgres`:
134
+
135
+ ```bash
136
+ export DATABASE_URL="postgresql://orchestrator:orchestrator_password@localhost:5433/agent_orchestrator"
75
137
  ```
138
+
139
+ ### Initialize the schema
140
+
141
+ Run migrations before the first app start:
142
+
143
+ ```bash
144
+ npm run migration:run
145
+ ```
146
+
147
+ Create the initial admin user if you want to sign in through the dashboard:
148
+
149
+ ```bash
150
+ npm run seed:admin
151
+ ```
152
+
153
+ If you use the packaged CLI, `agent-orchestrator setup` can perform both steps for you.
154
+
155
+ ## Run the application
156
+
157
+ ### Local development
158
+
159
+ ```bash
160
+ npm run dev
161
+ ```
162
+
163
+ That starts:
164
+
165
+ - UI dev server: `http://localhost:5173`
166
+ - API: `http://localhost:3000/api/v1`
167
+ - Swagger UI: `http://localhost:3000/api` (non-production only)
168
+ - Health endpoint: `http://localhost:3000/health`
169
+
170
+ If you only want the API in watch mode:
171
+
172
+ ```bash
173
+ npm run start:dev
174
+ ```
175
+
176
+ ### Packaged/runtime mode
177
+
178
+ ```bash
179
+ agent-orchestrator run
180
+ agent-orchestrator status
181
+ agent-orchestrator logs --lines 50
182
+ agent-orchestrator stop
183
+ ```
184
+
185
+ When running the packaged app or a production build with static UI enabled, the dashboard is served from `http://localhost:15789` by default.
186
+
187
+ ## Docker
188
+
189
+ The repository ships three Compose entrypoints:
190
+
191
+ All Compose stacks now require the database variables in the project `.env` file: `POSTGRES_USER`, `POSTGRES_PASSWORD`, `POSTGRES_DB`, and `POSTGRES_TEST_DB` for the integration stack.
192
+
193
+ | File | Purpose |
194
+ | --- | --- |
195
+ | `docker-compose.yml` | Production-style stack with PostgreSQL, API, and Caddy-served UI |
196
+ | `docker-compose.dev.yml` | Development stack with API hot reload and Vite UI dev server |
197
+ | `docker-compose.test.yml` | Integration stack for migration, CLI/runtime, API, and UI checks |
198
+
199
+ ### Production-style stack
200
+
201
+ ```bash
202
+ npm run docker:up
203
+ docker compose run --rm api dist/cli/index.js migrate --yes
204
+ ```
205
+
206
+ Endpoints:
207
+
208
+ - UI: `https://localhost` or `https://agent-orchestrator.localhost`
209
+ - API: `https://localhost/api/v1` or `https://agent-orchestrator.localhost/api/v1`
210
+
211
+ In this stack the UI is served by **Caddy**, not by the Nest app. Docker explicitly sets `SERVE_STATIC_UI=false` so the backend only serves the API.
212
+
213
+ ### Development stack
214
+
215
+ ```bash
216
+ npm run docker:dev
217
+ ```
218
+
219
+ Endpoints:
220
+
221
+ - UI: `http://localhost:5173`
222
+ - API: `http://localhost:3000/api/v1`
223
+ - PostgreSQL: `localhost:5433`
224
+
225
+ ### Integration stack
226
+
227
+ Use `docker-compose.test.yml` when you want to exercise migration behavior, packaged CLI/runtime flows, API startup, and UI reachability together.
228
+
229
+ ```bash
230
+ npm run docker:test
231
+ docker compose -f docker-compose.test.yml --profile tools run --rm migrate
232
+ docker compose -f docker-compose.test.yml --profile tools run --rm cli
233
+ ```
234
+
235
+ Endpoints:
236
+
237
+ - UI: `https://localhost:8444` or `https://agent-orchestrator.localhost:8444`
238
+ - API: `https://localhost:8444/api/v1` or `https://agent-orchestrator.localhost:8444/api/v1`
239
+
240
+ ## Development workflow
241
+
242
+ | Task | Command |
243
+ | --- | --- |
244
+ | Start API + UI | `npm run dev` |
245
+ | Start API only | `npm run start:dev` |
246
+ | Lint API + UI | `npm run lint:all` |
247
+ | Run API + UI + E2E tests | `npm run test:all` |
248
+ | Run coverage | `npm run test:cov` |
249
+ | Run E2E tests | `npm run test:e2e` |
250
+ | Build backend + UI package output | `npm run build:all` |
251
+ | Apply migrations | `npm run migration:run` |
252
+
253
+ ## Auth and access model
254
+
255
+ - Access and refresh tokens are issued by the auth service and transported via **httpOnly cookies**
256
+ - System roles are **`admin`** and **`user`**
257
+ - Project membership roles are **`owner`** and **`member`**
258
+ - Routes are protected by default; use `@Public()` for public endpoints
259
+ - Global throttling defaults to `60/min`, with stricter limits on auth endpoints
260
+
261
+ ## Useful docs
262
+
263
+ - [CLI reference](docs/CLI.md)
264
+ - [CI/CD pipeline](docs/CI_CD.md)
265
+ - [Release process](docs/RELEASE.md)
266
+ - [Contributing guide](CONTRIBUTING.md)
267
+
268
+ ## Troubleshooting
269
+
270
+ - **Native module errors after install**: run `npm rebuild`
271
+ - **`JWT_SECRET` rejected**: it must be at least 32 characters
272
+ - **Agent execution fails immediately**: confirm `GEMINI_API_KEY` and/or `ANTHROPIC_API_KEY` are set
273
+ - **Schema/startup issues**: run `npm run migration:run`
274
+ - **Need to undo the latest migration**: run `npm run migration:revert`
275
+
276
+ ## License
277
+
278
+ See [LICENSE](LICENSE).
@@ -0,0 +1,5 @@
1
+ export declare const AGENT_EMOJI_VALUES: readonly ["๐Ÿง ", "๐Ÿค–", "๐Ÿงช", "๐Ÿ› ๏ธ", "๐Ÿ“Š", "๐Ÿ”", "๐Ÿงญ", "๐Ÿ“", "โš™๏ธ", "๐Ÿš€"];
2
+ export type AgentEmojiValue = (typeof AGENT_EMOJI_VALUES)[number];
3
+ export declare const DEFAULT_AGENT_EMOJI: AgentEmojiValue;
4
+ export declare const isAgentEmojiValue: (value: unknown) => value is AgentEmojiValue;
5
+ export declare const normalizeAgentEmoji: (value?: string | null) => AgentEmojiValue;
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.normalizeAgentEmoji = exports.isAgentEmojiValue = exports.DEFAULT_AGENT_EMOJI = exports.AGENT_EMOJI_VALUES = void 0;
4
+ exports.AGENT_EMOJI_VALUES = [
5
+ '๐Ÿง ',
6
+ '๐Ÿค–',
7
+ '๐Ÿงช',
8
+ '๐Ÿ› ๏ธ',
9
+ '๐Ÿ“Š',
10
+ '๐Ÿ”',
11
+ '๐Ÿงญ',
12
+ '๐Ÿ“',
13
+ 'โš™๏ธ',
14
+ '๐Ÿš€',
15
+ ];
16
+ exports.DEFAULT_AGENT_EMOJI = '๐Ÿง ';
17
+ const isAgentEmojiValue = (value) => typeof value === 'string' &&
18
+ exports.AGENT_EMOJI_VALUES.includes(value);
19
+ exports.isAgentEmojiValue = isAgentEmojiValue;
20
+ const normalizeAgentEmoji = (value) => (0, exports.isAgentEmojiValue)(value) ? value : exports.DEFAULT_AGENT_EMOJI;
21
+ exports.normalizeAgentEmoji = normalizeAgentEmoji;
@@ -1,8 +1,16 @@
1
1
  import { AgentsService } from './agents.service';
2
2
  import { AgentRequestDto } from './dto/agent-request.dto';
3
3
  import { AgentResponse } from './interfaces/agent.interface';
4
+ import { CreateAgentDto } from './dto/create-agent.dto';
5
+ import { UpdateAgentDto } from './dto/update-agent.dto';
4
6
  export declare class AgentsController {
5
7
  private readonly agentsService;
6
8
  constructor(agentsService: AgentsService);
9
+ create(createAgentDto: CreateAgentDto): Promise<import("./entities/agent.entity").AgentEntity>;
10
+ findAll(): Promise<import("./entities/agent.entity").AgentEntity[]>;
11
+ findOne(id: string): Promise<import("./entities/agent.entity").AgentEntity>;
12
+ update(id: string, updateAgentDto: UpdateAgentDto): Promise<import("./entities/agent.entity").AgentEntity>;
13
+ remove(id: string): Promise<void>;
7
14
  processText(requestDto: AgentRequestDto): Promise<AgentResponse>;
15
+ probe(requestDto: AgentRequestDto): Promise<AgentResponse>;
8
16
  }