@bpinhosilva/agent-orchestrator 1.0.0-alpha.9 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +410 -0
- package/README.md +328 -49
- package/dist/agents/agent-emoji.constants.js +21 -0
- package/dist/agents/agents.controller.js +27 -0
- package/dist/agents/agents.module.js +4 -1
- package/dist/agents/agents.service.js +143 -71
- 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 +7 -0
- package/dist/agents/dto/create-agent.dto.js +28 -1
- package/dist/agents/dto/update-agent.dto.js +4 -0
- package/dist/agents/entities/agent.entity.js +27 -13
- package/dist/{src/agents → agents}/enums/provider.enum.js +1 -4
- package/dist/agents/implementations/claude.agent.js +141 -0
- package/dist/{src/agents → agents}/implementations/gemini.agent.js +88 -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 +0 -8
- package/dist/app.controller.js +15 -0
- package/dist/app.module.js +72 -11
- 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/{src/agents/dto/agent-request.dto.js → auth/dto/login.dto.js} +12 -12
- package/dist/{src/agents/dto/create-agent.dto.js → auth/dto/register.dto.js} +22 -30
- package/dist/auth/dto/update-profile.dto.js +65 -0
- package/dist/auth/entities/refresh-token.entity.js +61 -0
- package/dist/{src/app.controller.js → auth/guards/jwt-auth.guard.js} +23 -22
- 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 +47 -0
- package/dist/cli/commands/rotate-secrets.command.js +125 -0
- package/dist/cli/commands/run.command.js +54 -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/{scripts/generate-postman.js → cli/constants.js} +15 -31
- 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 +151 -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 +106 -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/{src/agents/interfaces/agent.interface.js → common/interfaces/artifact.interface.js} +0 -1
- 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 +123 -0
- 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 +6 -0
- package/dist/models/dto/update-model.dto.js +6 -2
- package/dist/models/entities/model.entity.js +11 -0
- package/dist/models/models.controller.js +13 -0
- package/dist/models/models.module.js +2 -1
- package/dist/models/models.service.js +14 -2
- package/dist/{src/providers/dto/create-provider.dto.js → projects/dto/add-member.dto.js} +11 -12
- package/dist/projects/dto/create-project.dto.js +13 -3
- package/dist/projects/dto/update-project.dto.js +22 -2
- package/dist/projects/entities/project-member.entity.js +60 -0
- package/dist/projects/entities/project.entity.js +24 -9
- package/dist/projects/projects.controller.js +76 -15
- package/dist/projects/projects.module.js +6 -1
- package/dist/projects/projects.service.js +177 -28
- package/dist/providers/dto/create-provider.dto.js +8 -0
- package/dist/providers/dto/update-provider.dto.js +6 -2
- package/dist/providers/entities/provider.entity.js +11 -1
- package/dist/providers/providers.controller.js +23 -0
- package/dist/providers/providers.service.js +15 -1
- package/dist/system-settings/dto/update-system-settings.dto.js +98 -0
- package/dist/{src/users/entities/user.entity.js → system-settings/entities/system-settings.entity.js} +15 -15
- 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/{src/projects/dto/create-project.dto.js → tasks/dto/create-comment.dto.js} +17 -17
- package/dist/{src/tasks/dto/create-task.dto.js → tasks/dto/create-recurrent-task.dto.js} +18 -20
- package/dist/tasks/dto/create-task.dto.js +15 -6
- package/dist/{src/users/dto/create-user.dto.js → tasks/dto/update-comment.dto.js} +7 -8
- package/dist/tasks/dto/update-recurrent-task.dto.js +12 -0
- package/dist/tasks/dto/update-task.dto.js +4 -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 +40 -5
- 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 +75 -28
- package/dist/tasks/tasks.module.js +37 -3
- package/dist/tasks/tasks.service.js +126 -32
- 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/{src/app.service.js → uploads/parse-filepath.pipe.js} +14 -8
- package/dist/uploads/uploads.controller.js +155 -0
- package/dist/{src/users/users.module.js → uploads/uploads.module.js} +12 -14
- package/dist/users/avatar.constants.js +35 -0
- package/dist/users/dto/create-user.dto.js +35 -0
- package/dist/users/dto/list-users-query.dto.js +49 -0
- package/dist/users/dto/update-user.dto.js +21 -0
- package/dist/users/entities/user.entity.js +29 -2
- package/dist/users/users.controller.js +25 -21
- package/dist/users/users.service.js +73 -2
- package/package.json +87 -23
- package/dist/cli.js +0 -21
- package/dist/scripts/generate-postman.d.ts +0 -1
- package/dist/scripts/generate-postman.js.map +0 -1
- package/dist/src/agents/agents.controller.d.ts +0 -15
- package/dist/src/agents/agents.controller.js +0 -100
- package/dist/src/agents/agents.controller.js.map +0 -1
- package/dist/src/agents/agents.module.d.ts +0 -2
- package/dist/src/agents/agents.module.js +0 -26
- package/dist/src/agents/agents.module.js.map +0 -1
- package/dist/src/agents/agents.service.d.ts +0 -23
- package/dist/src/agents/agents.service.js +0 -136
- package/dist/src/agents/agents.service.js.map +0 -1
- package/dist/src/agents/dto/agent-request.dto.d.ts +0 -4
- package/dist/src/agents/dto/agent-request.dto.js.map +0 -1
- package/dist/src/agents/dto/create-agent.dto.d.ts +0 -9
- package/dist/src/agents/dto/create-agent.dto.js.map +0 -1
- package/dist/src/agents/dto/update-agent.dto.d.ts +0 -5
- package/dist/src/agents/dto/update-agent.dto.js +0 -13
- package/dist/src/agents/dto/update-agent.dto.js.map +0 -1
- package/dist/src/agents/entities/agent.entity.d.ts +0 -15
- package/dist/src/agents/entities/agent.entity.js +0 -88
- package/dist/src/agents/entities/agent.entity.js.map +0 -1
- package/dist/src/agents/enums/provider.enum.d.ts +0 -6
- package/dist/src/agents/enums/provider.enum.js.map +0 -1
- package/dist/src/agents/implementations/gemini.agent.d.ts +0 -20
- package/dist/src/agents/implementations/gemini.agent.js.map +0 -1
- package/dist/src/agents/interfaces/agent.interface.d.ts +0 -14
- package/dist/src/agents/interfaces/agent.interface.js.map +0 -1
- package/dist/src/agents/registry/agent.registry.d.ts +0 -5
- package/dist/src/agents/registry/agent.registry.js +0 -15
- package/dist/src/agents/registry/agent.registry.js.map +0 -1
- package/dist/src/app.controller.d.ts +0 -6
- package/dist/src/app.controller.js.map +0 -1
- package/dist/src/app.module.d.ts +0 -2
- package/dist/src/app.module.js +0 -51
- package/dist/src/app.module.js.map +0 -1
- package/dist/src/app.service.d.ts +0 -3
- package/dist/src/app.service.js.map +0 -1
- package/dist/src/cli.d.ts +0 -2
- package/dist/src/cli.js +0 -22
- package/dist/src/cli.js.map +0 -1
- package/dist/src/main.d.ts +0 -1
- package/dist/src/main.js +0 -26
- package/dist/src/main.js.map +0 -1
- package/dist/src/models/dto/create-model.dto.d.ts +0 -4
- package/dist/src/models/dto/create-model.dto.js +0 -33
- package/dist/src/models/dto/create-model.dto.js.map +0 -1
- package/dist/src/models/dto/update-model.dto.d.ts +0 -5
- package/dist/src/models/dto/update-model.dto.js +0 -13
- package/dist/src/models/dto/update-model.dto.js.map +0 -1
- package/dist/src/models/entities/model.entity.d.ts +0 -10
- package/dist/src/models/entities/model.entity.js +0 -60
- package/dist/src/models/entities/model.entity.js.map +0 -1
- package/dist/src/models/models.controller.d.ts +0 -13
- package/dist/src/models/models.controller.js +0 -98
- package/dist/src/models/models.controller.js.map +0 -1
- package/dist/src/models/models.module.d.ts +0 -2
- package/dist/src/models/models.module.js +0 -26
- package/dist/src/models/models.module.js.map +0 -1
- package/dist/src/models/models.service.d.ts +0 -14
- package/dist/src/models/models.service.js +0 -78
- package/dist/src/models/models.service.js.map +0 -1
- package/dist/src/projects/dto/create-project.dto.d.ts +0 -7
- package/dist/src/projects/dto/create-project.dto.js.map +0 -1
- package/dist/src/projects/dto/update-project.dto.d.ts +0 -5
- package/dist/src/projects/dto/update-project.dto.js +0 -13
- package/dist/src/projects/dto/update-project.dto.js.map +0 -1
- package/dist/src/projects/entities/project.entity.d.ts +0 -18
- package/dist/src/projects/entities/project.entity.js +0 -81
- package/dist/src/projects/entities/project.entity.js.map +0 -1
- package/dist/src/projects/projects.controller.d.ts +0 -12
- package/dist/src/projects/projects.controller.js +0 -87
- package/dist/src/projects/projects.controller.js.map +0 -1
- package/dist/src/projects/projects.module.d.ts +0 -2
- package/dist/src/projects/projects.module.js +0 -26
- package/dist/src/projects/projects.module.js.map +0 -1
- package/dist/src/projects/projects.service.d.ts +0 -13
- package/dist/src/projects/projects.service.js +0 -69
- package/dist/src/projects/projects.service.js.map +0 -1
- package/dist/src/providers/dto/create-provider.dto.d.ts +0 -4
- package/dist/src/providers/dto/create-provider.dto.js.map +0 -1
- package/dist/src/providers/dto/update-provider.dto.d.ts +0 -5
- package/dist/src/providers/dto/update-provider.dto.js +0 -13
- package/dist/src/providers/dto/update-provider.dto.js.map +0 -1
- package/dist/src/providers/entities/provider.entity.d.ts +0 -9
- package/dist/src/providers/entities/provider.entity.js +0 -55
- package/dist/src/providers/entities/provider.entity.js.map +0 -1
- package/dist/src/providers/providers.controller.d.ts +0 -12
- package/dist/src/providers/providers.controller.js +0 -87
- package/dist/src/providers/providers.controller.js.map +0 -1
- package/dist/src/providers/providers.module.d.ts +0 -2
- package/dist/src/providers/providers.module.js +0 -26
- package/dist/src/providers/providers.module.js.map +0 -1
- package/dist/src/providers/providers.service.d.ts +0 -13
- package/dist/src/providers/providers.service.js +0 -60
- package/dist/src/providers/providers.service.js.map +0 -1
- package/dist/src/tasks/dto/create-task.dto.d.ts +0 -10
- package/dist/src/tasks/dto/create-task.dto.js.map +0 -1
- package/dist/src/tasks/dto/update-task.dto.d.ts +0 -5
- package/dist/src/tasks/dto/update-task.dto.js +0 -13
- package/dist/src/tasks/dto/update-task.dto.js.map +0 -1
- package/dist/src/tasks/entities/task.entity.d.ts +0 -26
- package/dist/src/tasks/entities/task.entity.js +0 -106
- package/dist/src/tasks/entities/task.entity.js.map +0 -1
- package/dist/src/tasks/tasks.controller.d.ts +0 -12
- package/dist/src/tasks/tasks.controller.js +0 -87
- package/dist/src/tasks/tasks.controller.js.map +0 -1
- package/dist/src/tasks/tasks.module.d.ts +0 -2
- package/dist/src/tasks/tasks.module.js +0 -26
- package/dist/src/tasks/tasks.module.js.map +0 -1
- package/dist/src/tasks/tasks.service.d.ts +0 -15
- package/dist/src/tasks/tasks.service.js +0 -80
- package/dist/src/tasks/tasks.service.js.map +0 -1
- package/dist/src/users/dto/create-user.dto.d.ts +0 -3
- package/dist/src/users/dto/create-user.dto.js.map +0 -1
- package/dist/src/users/dto/update-user.dto.d.ts +0 -5
- package/dist/src/users/dto/update-user.dto.js +0 -13
- package/dist/src/users/dto/update-user.dto.js.map +0 -1
- package/dist/src/users/entities/user.entity.d.ts +0 -6
- package/dist/src/users/entities/user.entity.js.map +0 -1
- package/dist/src/users/users.controller.d.ts +0 -12
- package/dist/src/users/users.controller.js +0 -89
- package/dist/src/users/users.controller.js.map +0 -1
- package/dist/src/users/users.module.d.ts +0 -2
- package/dist/src/users/users.module.js.map +0 -1
- package/dist/src/users/users.service.d.ts +0 -13
- package/dist/src/users/users.service.js +0 -58
- package/dist/src/users/users.service.js.map +0 -1
- package/dist/tsconfig.build.tsbuildinfo +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,411 @@
|
|
|
1
|
+
# [1.1.0](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0...v1.1.0) (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.1.0-alpha.1](https://github.com/bpinhosilva/agent-orchestrator/compare/v1.0.0...v1.1.0-alpha.1) (2026-04-17)
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
### Bug Fixes
|
|
80
|
+
|
|
81
|
+
* **ci:** use legacy-peer-deps to resolve peer dependency conflicts ([b450b45](https://github.com/bpinhosilva/agent-orchestrator/commit/b450b4500ff02addb1bca6cc7f6a40c93e442e7f))
|
|
82
|
+
* compatibility with path-to-regexp for serve-static excluding ([3675042](https://github.com/bpinhosilva/agent-orchestrator/commit/3675042ed0b2b7588c236b6d774aa2136e4835b8))
|
|
83
|
+
* downgrade class-validator from ^0.15.1 to ^0.14.1 ([6d9bb29](https://github.com/bpinhosilva/agent-orchestrator/commit/6d9bb291145cdfad7d8c5f4fc8a7ac6ee48ee776))
|
|
84
|
+
* ensure cli binary is executable and correctly mapped ([7616d98](https://github.com/bpinhosilva/agent-orchestrator/commit/7616d98ec29f4dfb0091869b746a3c9a00fe8cea))
|
|
85
|
+
* trigger release with updated build steps ([1ad13b0](https://github.com/bpinhosilva/agent-orchestrator/commit/1ad13b0eb64adb603762edecb82b27f6672fb847))
|
|
86
|
+
* update collisionDetection to return an empty array in TaskManager tests ([b64158e](https://github.com/bpinhosilva/agent-orchestrator/commit/b64158e61c76a0d148900d36cb9f05784e5d5461))
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
### Features
|
|
90
|
+
|
|
91
|
+
* add .npmrc to enable legacy peer dependencies ([2f41a07](https://github.com/bpinhosilva/agent-orchestrator/commit/2f41a0747e3cc862241f90c24405c6ad0976557b))
|
|
92
|
+
* add agent probing functionality with a new API endpoint, service logic ([f71abb6](https://github.com/bpinhosilva/agent-orchestrator/commit/f71abb601745b7f2ae5c1f8be53143429302c1d2))
|
|
93
|
+
* add AGENTS.md file ([51c706f](https://github.com/bpinhosilva/agent-orchestrator/commit/51c706f8784dd354280d853f605bb8c69e53175c))
|
|
94
|
+
* add Claude agent implementation with Anthropic SDK and refactor agent-provider ([1400a0d](https://github.com/bpinhosilva/agent-orchestrator/commit/1400a0dec6beb8393ddc4c5a23b9b860532079e8))
|
|
95
|
+
* add CreateTaskDto ([1604945](https://github.com/bpinhosilva/agent-orchestrator/commit/1604945737b5df5480c6c0814c369902f7cc9142))
|
|
96
|
+
* add early crash detection and log tailing for server process ([b3c7945](https://github.com/bpinhosilva/agent-orchestrator/commit/b3c79454f030845f3056e30f9daab1a7726ce00e))
|
|
97
|
+
* add environment variable setup and JWT refresh secret handling ([c9dfd05](https://github.com/bpinhosilva/agent-orchestrator/commit/c9dfd05070dfc4bc0e34e3853d0efe85d84d404a))
|
|
98
|
+
* add initial user interface for agent management and orchestration ([7a27019](https://github.com/bpinhosilva/agent-orchestrator/commit/7a270197691453384e5827987574f94e93cad7fb))
|
|
99
|
+
* add InitialsAvatar component and do some refactor ([417eff3](https://github.com/bpinhosilva/agent-orchestrator/commit/417eff3bdf4ac8cf072c99fc56744a3a93807a31))
|
|
100
|
+
* add Ollama provider and model support ([7c24c38](https://github.com/bpinhosilva/agent-orchestrator/commit/7c24c38704975c0083485e1e2a4552997cd17e34))
|
|
101
|
+
* add Spanish release notes and update task priority handling ([42484db](https://github.com/bpinhosilva/agent-orchestrator/commit/42484db728a48eed290c00be180598718ca572a5))
|
|
102
|
+
* add user management module, introduce task output field, and include a design document ([7d0717d](https://github.com/bpinhosilva/agent-orchestrator/commit/7d0717d5a566435641e46b2f4b40101df0f62ed6))
|
|
103
|
+
* add UsersPage component with user management features and tests ([bb46646](https://github.com/bpinhosilva/agent-orchestrator/commit/bb466468849b01dd30bc228e3c0375b6aea874e8))
|
|
104
|
+
* **cli:** enhance setup command with detailed configuration options and improved process ([2b7f51d](https://github.com/bpinhosilva/agent-orchestrator/commit/2b7f51d16e8f1949e222c03968d925030e4b0574))
|
|
105
|
+
* **cli:** refactor project, split into multiple components ([f18903b](https://github.com/bpinhosilva/agent-orchestrator/commit/f18903be0b1b09a1e651918d081d96267bfe2bc6))
|
|
106
|
+
* **docs:** add HOST configuration to README and CLI documentation ([8e7820e](https://github.com/bpinhosilva/agent-orchestrator/commit/8e7820e554088bc976559780088927c469f5d059))
|
|
107
|
+
* enhance file path validation and logging in uploads, add ExecLogModal component ([2d9ca31](https://github.com/bpinhosilva/agent-orchestrator/commit/2d9ca31fd67924958f417d113ec974252858782d))
|
|
108
|
+
* enhance JWT security by specifying HS256 algorithm and improve logging in services ([349c94b](https://github.com/bpinhosilva/agent-orchestrator/commit/349c94b31bfdcc2f397cd81848bb2fd3b977a438))
|
|
109
|
+
* enhance project management with user roles and member management ([877832f](https://github.com/bpinhosilva/agent-orchestrator/commit/877832fc4ad8d77499124a4da23c14a1270622a4))
|
|
110
|
+
* enhance task scheduling with dynamic settings and improved error handling ([cbb5097](https://github.com/bpinhosilva/agent-orchestrator/commit/cbb50979f8e79e6cdc581ed29fa0933f82c3e4ee))
|
|
111
|
+
* implement automated database migrations and interactive admin user setup in CLI ([6868b13](https://github.com/bpinhosilva/agent-orchestrator/commit/6868b137ad80c85d4ffc56b884b8016df8a3c533))
|
|
112
|
+
* implement cli and setup alpha releases ([c664ce8](https://github.com/bpinhosilva/agent-orchestrator/commit/c664ce8a6c7301227997fe23f9113053d074c462))
|
|
113
|
+
* implement comprehensive project management, task comments with attachments ([10eb382](https://github.com/bpinhosilva/agent-orchestrator/commit/10eb38268d50ff9418a3e7af1788d55c759522a9))
|
|
114
|
+
* implement containerization, add health check endpoint, and update RBAC ([17149d3](https://github.com/bpinhosilva/agent-orchestrator/commit/17149d32a623f532308ba0f415a4b2ba332ec794))
|
|
115
|
+
* implement models and providers modules add swagger documentation, and update agents ([b6e8245](https://github.com/bpinhosilva/agent-orchestrator/commit/b6e824547f4f603cecf0352b383d20a078fe6662))
|
|
116
|
+
* implement project and task management modules, including entities, DTOs, services, controllers ([3df2c2a](https://github.com/bpinhosilva/agent-orchestrator/commit/3df2c2a6d0bdf4e3e4edbf12f544a8e12970e2dd))
|
|
117
|
+
* implement provider and model management UI and API, and enhance agent configuration ([01dbe34](https://github.com/bpinhosilva/agent-orchestrator/commit/01dbe345b8763da433682d7bc185c017e5b5d5d9))
|
|
118
|
+
* implement recurrent task scheduling system with backend services and UI management modal ([b3c699a](https://github.com/bpinhosilva/agent-orchestrator/commit/b3c699a5b7eb261458d97a7a0d40e5071e33fb1e))
|
|
119
|
+
* implement release workflow with semantic release and build steps; remove old release.yml ([f17eb48](https://github.com/bpinhosilva/agent-orchestrator/commit/f17eb48c64b165c8fd05e142d175716f7990f670))
|
|
120
|
+
* implement scheduler page, add database indexes for performance, and update release workflow ([b4e067a](https://github.com/bpinhosilva/agent-orchestrator/commit/b4e067a1b20e4275214309c1241c163b456260da))
|
|
121
|
+
* implement security fixes ([f570f92](https://github.com/bpinhosilva/agent-orchestrator/commit/f570f92a10cf1473c36a0145c160f6e23905bb1f))
|
|
122
|
+
* implement server startup verification and enhance command handling for restart, rotate-secrets ([4033161](https://github.com/bpinhosilva/agent-orchestrator/commit/40331617046bcfe3bc96e189fa27614bee505235))
|
|
123
|
+
* implement task detail view with comment polling, numeric priorities, and enhanced task card ([7a38155](https://github.com/bpinhosilva/agent-orchestrator/commit/7a38155ac796dbe528d48a340a0e6be7fa0150a3))
|
|
124
|
+
* implement transaction management in services and tests for improved data integrity ([7b213da](https://github.com/bpinhosilva/agent-orchestrator/commit/7b213da8e9ee46da2e40f3e51e3d61c8a50ac850))
|
|
125
|
+
* implement transient agent instances with dynamic configurationn ([5d57b08](https://github.com/bpinhosilva/agent-orchestrator/commit/5d57b0886edf4b14d93ab76f245f4311b6657f7d))
|
|
126
|
+
* implement user authentication system with JWT, registration, and login functionality ([63582fa](https://github.com/bpinhosilva/agent-orchestrator/commit/63582fa8f318c8a6bc174795364a4d3cbd221d45))
|
|
127
|
+
* integrate Personality Matrix component, refactor storage service ([2aa80d3](https://github.com/bpinhosilva/agent-orchestrator/commit/2aa80d3b64cd6431ba0113182dcb5d871075fcfd))
|
|
128
|
+
* integrate wait-on for improved dev workflow ([af26318](https://github.com/bpinhosilva/agent-orchestrator/commit/af2631820f5fc95b7b85c9f6ec52157b7df74264))
|
|
129
|
+
* introduce a task scheduler service for automated agent task assignment and execution ([d756f10](https://github.com/bpinhosilva/agent-orchestrator/commit/d756f10c441aadb3b31335a55926700b5518ec9e))
|
|
130
|
+
* introduce task management UI with draggable cards and refactor provider ([1002dd1](https://github.com/bpinhosilva/agent-orchestrator/commit/1002dd1ac373fe4f6c3acb2eb6e9345b3ec35aba))
|
|
131
|
+
* **migrations:** add initial schema with users, providers, models, agents, projects, tasks ([e08e338](https://github.com/bpinhosilva/agent-orchestrator/commit/e08e3388794e8a556be3584daedd30252a8904fb))
|
|
132
|
+
* **migrations:** add migration to set default UUIDs for ID columns ([ea9289b](https://github.com/bpinhosilva/agent-orchestrator/commit/ea9289b8623d244737dfb7340a58637c8967edf8))
|
|
133
|
+
* **migrations:** add seed and backfill migrations ([5991146](https://github.com/bpinhosilva/agent-orchestrator/commit/5991146cbb3bc971bddf73295dcf7dbd3e2b74e4))
|
|
134
|
+
* **migrations:** db schema ([a0a98b7](https://github.com/bpinhosilva/agent-orchestrator/commit/a0a98b725e09f6d3a9a8fc2305704772195fe2d8))
|
|
135
|
+
* **models:** implement model deletion with agent association check and enhance UI for model mgn ([e4cc599](https://github.com/bpinhosilva/agent-orchestrator/commit/e4cc599263f910e80e00116218e9408ec2ac2bf3))
|
|
136
|
+
* refactor task and comment entities to use Artifact interface for artifacts ([806fde7](https://github.com/bpinhosilva/agent-orchestrator/commit/806fde736b734de0cb3cb9a7a05c5c3eb2d7f171))
|
|
137
|
+
* **refactor:** project terminology and update UI components ([47e5cb4](https://github.com/bpinhosilva/agent-orchestrator/commit/47e5cb4d45c05f893ebdd898f02ceeadcd213652))
|
|
138
|
+
* **TaskManager:** refactor task management with lazy loading and improved state handling ([8988277](https://github.com/bpinhosilva/agent-orchestrator/commit/898827701c7824c93b063fc6ab88862a7d79110b))
|
|
139
|
+
* **ui:** integrate MarkdownField for task description input and enhance TaskExecutions ([d4b91e8](https://github.com/bpinhosilva/agent-orchestrator/commit/d4b91e8b9c392f77a2cab3c0a5bcc641110bced2))
|
|
140
|
+
* update CI workflow to include E2E and UI tests; bump lodash version ([b8ceee6](https://github.com/bpinhosilva/agent-orchestrator/commit/b8ceee6adf0855b54d4a45d959e87ec338c55887))
|
|
141
|
+
* update default port to 15789 for production, enhance migration handling, and refactor env ([e59ba31](https://github.com/bpinhosilva/agent-orchestrator/commit/e59ba3105c5ce7367281bf3ee637bcc3bc124dcc))
|
|
142
|
+
* update Google Gemini API client library, adapt agent implementation and tests ([46a52dd](https://github.com/bpinhosilva/agent-orchestrator/commit/46a52dd518f27cded3213248e9646300b6bc2fb8))
|
|
143
|
+
* update mascot image format and adjust display size in README ([6779313](https://github.com/bpinhosilva/agent-orchestrator/commit/6779313a26a6906ecb47a8819789dc8312f3d6fc))
|
|
144
|
+
* update README and documentation files with additional references and streamlined content ([ae7b1ac](https://github.com/bpinhosilva/agent-orchestrator/commit/ae7b1acbd47eebbc91b154f2b54da83eb8da0be8))
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
### Performance Improvements
|
|
148
|
+
|
|
149
|
+
* **db:** optimize schema with composite and missing indexes ([091d7c4](https://github.com/bpinhosilva/agent-orchestrator/commit/091d7c417d9b3291d704754f8cd0b22924aec871))
|
|
150
|
+
|
|
151
|
+
# [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)
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
### Features
|
|
155
|
+
|
|
156
|
+
* implement server startup verification and enhance command handling for restart, rotate-secrets ([4033161](https://github.com/bpinhosilva/agent-orchestrator/commit/40331617046bcfe3bc96e189fa27614bee505235))
|
|
157
|
+
|
|
158
|
+
# [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)
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
### Features
|
|
162
|
+
|
|
163
|
+
* add early crash detection and log tailing for server process ([b3c7945](https://github.com/bpinhosilva/agent-orchestrator/commit/b3c79454f030845f3056e30f9daab1a7726ce00e))
|
|
164
|
+
|
|
165
|
+
# [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)
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
### Bug Fixes
|
|
169
|
+
|
|
170
|
+
* update collisionDetection to return an empty array in TaskManager tests ([b64158e](https://github.com/bpinhosilva/agent-orchestrator/commit/b64158e61c76a0d148900d36cb9f05784e5d5461))
|
|
171
|
+
|
|
172
|
+
# [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)
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
### Features
|
|
176
|
+
|
|
177
|
+
* add Ollama provider and model support ([7c24c38](https://github.com/bpinhosilva/agent-orchestrator/commit/7c24c38704975c0083485e1e2a4552997cd17e34))
|
|
178
|
+
|
|
179
|
+
# [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)
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
### Features
|
|
183
|
+
|
|
184
|
+
* **docs:** add HOST configuration to README and CLI documentation ([8e7820e](https://github.com/bpinhosilva/agent-orchestrator/commit/8e7820e554088bc976559780088927c469f5d059))
|
|
185
|
+
|
|
186
|
+
# [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)
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
### Features
|
|
190
|
+
|
|
191
|
+
* **TaskManager:** refactor task management with lazy loading and improved state handling ([8988277](https://github.com/bpinhosilva/agent-orchestrator/commit/898827701c7824c93b063fc6ab88862a7d79110b))
|
|
192
|
+
|
|
193
|
+
# [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)
|
|
194
|
+
|
|
195
|
+
|
|
196
|
+
### Features
|
|
197
|
+
|
|
198
|
+
* **models:** implement model deletion with agent association check and enhance UI for model mgn ([e4cc599](https://github.com/bpinhosilva/agent-orchestrator/commit/e4cc599263f910e80e00116218e9408ec2ac2bf3))
|
|
199
|
+
|
|
200
|
+
# [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)
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
### Performance Improvements
|
|
204
|
+
|
|
205
|
+
* **db:** optimize schema with composite and missing indexes ([091d7c4](https://github.com/bpinhosilva/agent-orchestrator/commit/091d7c417d9b3291d704754f8cd0b22924aec871))
|
|
206
|
+
|
|
207
|
+
# [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)
|
|
208
|
+
|
|
209
|
+
|
|
210
|
+
### Features
|
|
211
|
+
|
|
212
|
+
* add Spanish release notes and update task priority handling ([42484db](https://github.com/bpinhosilva/agent-orchestrator/commit/42484db728a48eed290c00be180598718ca572a5))
|
|
213
|
+
|
|
214
|
+
# [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)
|
|
215
|
+
|
|
216
|
+
|
|
217
|
+
### Features
|
|
218
|
+
|
|
219
|
+
* enhance file path validation and logging in uploads, add ExecLogModal component ([2d9ca31](https://github.com/bpinhosilva/agent-orchestrator/commit/2d9ca31fd67924958f417d113ec974252858782d))
|
|
220
|
+
* **migrations:** add migration to set default UUIDs for ID columns ([ea9289b](https://github.com/bpinhosilva/agent-orchestrator/commit/ea9289b8623d244737dfb7340a58637c8967edf8))
|
|
221
|
+
* refactor task and comment entities to use Artifact interface for artifacts ([806fde7](https://github.com/bpinhosilva/agent-orchestrator/commit/806fde736b734de0cb3cb9a7a05c5c3eb2d7f171))
|
|
222
|
+
* **ui:** integrate MarkdownField for task description input and enhance TaskExecutions ([d4b91e8](https://github.com/bpinhosilva/agent-orchestrator/commit/d4b91e8b9c392f77a2cab3c0a5bcc641110bced2))
|
|
223
|
+
|
|
224
|
+
# [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)
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
### Features
|
|
228
|
+
|
|
229
|
+
* **cli:** refactor project, split into multiple components ([f18903b](https://github.com/bpinhosilva/agent-orchestrator/commit/f18903be0b1b09a1e651918d081d96267bfe2bc6))
|
|
230
|
+
|
|
231
|
+
# [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)
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
### Features
|
|
235
|
+
|
|
236
|
+
* enhance task scheduling with dynamic settings and improved error handling ([cbb5097](https://github.com/bpinhosilva/agent-orchestrator/commit/cbb50979f8e79e6cdc581ed29fa0933f82c3e4ee))
|
|
237
|
+
|
|
238
|
+
# [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)
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
### Features
|
|
242
|
+
|
|
243
|
+
* add environment variable setup and JWT refresh secret handling ([c9dfd05](https://github.com/bpinhosilva/agent-orchestrator/commit/c9dfd05070dfc4bc0e34e3853d0efe85d84d404a))
|
|
244
|
+
|
|
245
|
+
# [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)
|
|
246
|
+
|
|
247
|
+
|
|
248
|
+
### Features
|
|
249
|
+
|
|
250
|
+
* add UsersPage component with user management features and tests ([bb46646](https://github.com/bpinhosilva/agent-orchestrator/commit/bb466468849b01dd30bc228e3c0375b6aea874e8))
|
|
251
|
+
* integrate Personality Matrix component, refactor storage service ([2aa80d3](https://github.com/bpinhosilva/agent-orchestrator/commit/2aa80d3b64cd6431ba0113182dcb5d871075fcfd))
|
|
252
|
+
* integrate wait-on for improved dev workflow ([af26318](https://github.com/bpinhosilva/agent-orchestrator/commit/af2631820f5fc95b7b85c9f6ec52157b7df74264))
|
|
253
|
+
|
|
254
|
+
# [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)
|
|
255
|
+
|
|
256
|
+
|
|
257
|
+
### Features
|
|
258
|
+
|
|
259
|
+
* **migrations:** add seed and backfill migrations ([5991146](https://github.com/bpinhosilva/agent-orchestrator/commit/5991146cbb3bc971bddf73295dcf7dbd3e2b74e4))
|
|
260
|
+
|
|
261
|
+
# [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)
|
|
262
|
+
|
|
263
|
+
|
|
264
|
+
### Features
|
|
265
|
+
|
|
266
|
+
* **migrations:** add initial schema with users, providers, models, agents, projects, tasks ([e08e338](https://github.com/bpinhosilva/agent-orchestrator/commit/e08e3388794e8a556be3584daedd30252a8904fb))
|
|
267
|
+
* **migrations:** db schema ([a0a98b7](https://github.com/bpinhosilva/agent-orchestrator/commit/a0a98b725e09f6d3a9a8fc2305704772195fe2d8))
|
|
268
|
+
|
|
269
|
+
# [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)
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
### Features
|
|
273
|
+
|
|
274
|
+
* update default port to 15789 for production, enhance migration handling, and refactor env ([e59ba31](https://github.com/bpinhosilva/agent-orchestrator/commit/e59ba3105c5ce7367281bf3ee637bcc3bc124dcc))
|
|
275
|
+
* update mascot image format and adjust display size in README ([6779313](https://github.com/bpinhosilva/agent-orchestrator/commit/6779313a26a6906ecb47a8819789dc8312f3d6fc))
|
|
276
|
+
|
|
277
|
+
# [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)
|
|
278
|
+
|
|
279
|
+
|
|
280
|
+
### Features
|
|
281
|
+
|
|
282
|
+
* add AGENTS.md file ([51c706f](https://github.com/bpinhosilva/agent-orchestrator/commit/51c706f8784dd354280d853f605bb8c69e53175c))
|
|
283
|
+
* implement containerization, add health check endpoint, and update RBAC ([17149d3](https://github.com/bpinhosilva/agent-orchestrator/commit/17149d32a623f532308ba0f415a4b2ba332ec794))
|
|
284
|
+
* **refactor:** project terminology and update UI components ([47e5cb4](https://github.com/bpinhosilva/agent-orchestrator/commit/47e5cb4d45c05f893ebdd898f02ceeadcd213652))
|
|
285
|
+
|
|
286
|
+
# [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)
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
### Features
|
|
290
|
+
|
|
291
|
+
* **cli:** enhance setup command with detailed configuration options and improved process ([2b7f51d](https://github.com/bpinhosilva/agent-orchestrator/commit/2b7f51d16e8f1949e222c03968d925030e4b0574))
|
|
292
|
+
|
|
293
|
+
# [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)
|
|
294
|
+
|
|
295
|
+
|
|
296
|
+
### Features
|
|
297
|
+
|
|
298
|
+
* update README and documentation files with additional references and streamlined content ([ae7b1ac](https://github.com/bpinhosilva/agent-orchestrator/commit/ae7b1acbd47eebbc91b154f2b54da83eb8da0be8))
|
|
299
|
+
|
|
300
|
+
# [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)
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
### Features
|
|
304
|
+
|
|
305
|
+
* enhance project management with user roles and member management ([877832f](https://github.com/bpinhosilva/agent-orchestrator/commit/877832fc4ad8d77499124a4da23c14a1270622a4))
|
|
306
|
+
* implement release workflow with semantic release and build steps; remove old release.yml ([f17eb48](https://github.com/bpinhosilva/agent-orchestrator/commit/f17eb48c64b165c8fd05e142d175716f7990f670))
|
|
307
|
+
* update CI workflow to include E2E and UI tests; bump lodash version ([b8ceee6](https://github.com/bpinhosilva/agent-orchestrator/commit/b8ceee6adf0855b54d4a45d959e87ec338c55887))
|
|
308
|
+
|
|
309
|
+
# [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)
|
|
310
|
+
|
|
311
|
+
|
|
312
|
+
### Features
|
|
313
|
+
|
|
314
|
+
* add InitialsAvatar component and do some refactor ([417eff3](https://github.com/bpinhosilva/agent-orchestrator/commit/417eff3bdf4ac8cf072c99fc56744a3a93807a31))
|
|
315
|
+
|
|
316
|
+
# [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)
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
### Features
|
|
320
|
+
|
|
321
|
+
* enhance JWT security by specifying HS256 algorithm and improve logging in services ([349c94b](https://github.com/bpinhosilva/agent-orchestrator/commit/349c94b31bfdcc2f397cd81848bb2fd3b977a438))
|
|
322
|
+
|
|
323
|
+
# [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)
|
|
324
|
+
|
|
325
|
+
|
|
326
|
+
### Features
|
|
327
|
+
|
|
328
|
+
* implement security fixes ([f570f92](https://github.com/bpinhosilva/agent-orchestrator/commit/f570f92a10cf1473c36a0145c160f6e23905bb1f))
|
|
329
|
+
|
|
330
|
+
# [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)
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
### Features
|
|
334
|
+
|
|
335
|
+
* implement transaction management in services and tests for improved data integrity ([7b213da](https://github.com/bpinhosilva/agent-orchestrator/commit/7b213da8e9ee46da2e40f3e51e3d61c8a50ac850))
|
|
336
|
+
|
|
337
|
+
# [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)
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
### Features
|
|
341
|
+
|
|
342
|
+
* implement automated database migrations and interactive admin user setup in CLI ([6868b13](https://github.com/bpinhosilva/agent-orchestrator/commit/6868b137ad80c85d4ffc56b884b8016df8a3c533))
|
|
343
|
+
|
|
344
|
+
# [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)
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
### Features
|
|
348
|
+
|
|
349
|
+
* implement recurrent task scheduling system with backend services and UI management modal ([b3c699a](https://github.com/bpinhosilva/agent-orchestrator/commit/b3c699a5b7eb261458d97a7a0d40e5071e33fb1e))
|
|
350
|
+
|
|
351
|
+
# [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)
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
### Features
|
|
355
|
+
|
|
356
|
+
* implement scheduler page, add database indexes for performance, and update release workflow ([b4e067a](https://github.com/bpinhosilva/agent-orchestrator/commit/b4e067a1b20e4275214309c1241c163b456260da))
|
|
357
|
+
|
|
358
|
+
# [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)
|
|
359
|
+
|
|
360
|
+
|
|
361
|
+
### Features
|
|
362
|
+
|
|
363
|
+
* implement user authentication system with JWT, registration, and login functionality ([63582fa](https://github.com/bpinhosilva/agent-orchestrator/commit/63582fa8f318c8a6bc174795364a4d3cbd221d45))
|
|
364
|
+
|
|
365
|
+
# [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)
|
|
366
|
+
|
|
367
|
+
|
|
368
|
+
### Features
|
|
369
|
+
|
|
370
|
+
* add CreateTaskDto ([1604945](https://github.com/bpinhosilva/agent-orchestrator/commit/1604945737b5df5480c6c0814c369902f7cc9142))
|
|
371
|
+
* implement transient agent instances with dynamic configurationn ([5d57b08](https://github.com/bpinhosilva/agent-orchestrator/commit/5d57b0886edf4b14d93ab76f245f4311b6657f7d))
|
|
372
|
+
|
|
373
|
+
# [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)
|
|
374
|
+
|
|
375
|
+
|
|
376
|
+
### Features
|
|
377
|
+
|
|
378
|
+
* add Claude agent implementation with Anthropic SDK and refactor agent-provider ([1400a0d](https://github.com/bpinhosilva/agent-orchestrator/commit/1400a0dec6beb8393ddc4c5a23b9b860532079e8))
|
|
379
|
+
|
|
380
|
+
# [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)
|
|
381
|
+
|
|
382
|
+
|
|
383
|
+
### Features
|
|
384
|
+
|
|
385
|
+
* add .npmrc to enable legacy peer dependencies ([2f41a07](https://github.com/bpinhosilva/agent-orchestrator/commit/2f41a0747e3cc862241f90c24405c6ad0976557b))
|
|
386
|
+
* implement comprehensive project management, task comments with attachments ([10eb382](https://github.com/bpinhosilva/agent-orchestrator/commit/10eb38268d50ff9418a3e7af1788d55c759522a9))
|
|
387
|
+
* implement task detail view with comment polling, numeric priorities, and enhanced task card ([7a38155](https://github.com/bpinhosilva/agent-orchestrator/commit/7a38155ac796dbe528d48a340a0e6be7fa0150a3))
|
|
388
|
+
* introduce a task scheduler service for automated agent task assignment and execution ([d756f10](https://github.com/bpinhosilva/agent-orchestrator/commit/d756f10c441aadb3b31335a55926700b5518ec9e))
|
|
389
|
+
|
|
390
|
+
# [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)
|
|
391
|
+
|
|
392
|
+
|
|
393
|
+
### Bug Fixes
|
|
394
|
+
|
|
395
|
+
* downgrade class-validator from ^0.15.1 to ^0.14.1 ([6d9bb29](https://github.com/bpinhosilva/agent-orchestrator/commit/6d9bb291145cdfad7d8c5f4fc8a7ac6ee48ee776))
|
|
396
|
+
|
|
397
|
+
|
|
398
|
+
### Features
|
|
399
|
+
|
|
400
|
+
* introduce task management UI with draggable cards and refactor provider ([1002dd1](https://github.com/bpinhosilva/agent-orchestrator/commit/1002dd1ac373fe4f6c3acb2eb6e9345b3ec35aba))
|
|
401
|
+
|
|
402
|
+
# [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)
|
|
403
|
+
|
|
404
|
+
|
|
405
|
+
### Features
|
|
406
|
+
|
|
407
|
+
* add agent probing functionality with a new API endpoint, service logic ([f71abb6](https://github.com/bpinhosilva/agent-orchestrator/commit/f71abb601745b7f2ae5c1f8be53143429302c1d2))
|
|
408
|
+
|
|
1
409
|
# [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
410
|
|
|
3
411
|
|
|
@@ -66,6 +474,8 @@
|
|
|
66
474
|
|
|
67
475
|
* ensure cli binary is executable and correctly mapped ([7616d98](https://github.com/bpinhosilva/agent-orchestrator/commit/7616d98ec29f4dfb0091869b746a3c9a00fe8cea))
|
|
68
476
|
|
|
477
|
+
# 1.0.0 (2026-03-17)
|
|
478
|
+
|
|
69
479
|
|
|
70
480
|
### Features
|
|
71
481
|
|