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