@desplega.ai/agent-swarm 1.54.1 → 1.56.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (81) hide show
  1. package/openapi.json +2952 -2912
  2. package/package.json +1 -1
  3. package/plugin/commands/work-on-task.md +0 -1
  4. package/plugin/skills/artifacts/skill.md +0 -1
  5. package/src/artifact-sdk/browser-sdk.ts +0 -1
  6. package/src/be/db-queries/tracker.ts +4 -4
  7. package/src/be/db.ts +24 -532
  8. package/src/be/migrations/025_workflow_run_cancelled_status.sql +56 -0
  9. package/src/be/migrations/026_drop_epics.sql +106 -0
  10. package/src/be/migrations/027_heartbeat_md.sql +1 -0
  11. package/src/be/migrations/runner.ts +8 -1
  12. package/src/commands/runner.ts +26 -194
  13. package/src/commands/templates.ts +0 -28
  14. package/src/heartbeat/heartbeat.ts +201 -92
  15. package/src/heartbeat/templates.ts +64 -9
  16. package/src/http/agents.ts +5 -2
  17. package/src/http/heartbeat.ts +29 -1
  18. package/src/http/index.ts +0 -2
  19. package/src/http/poll.ts +1 -21
  20. package/src/http/tasks.ts +0 -3
  21. package/src/http/utils.ts +1 -1
  22. package/src/http/workflows.ts +145 -2
  23. package/src/prompts/session-templates.ts +1 -2
  24. package/src/server.ts +7 -24
  25. package/src/tests/artifact-sdk.test.ts +0 -2
  26. package/src/tests/db-queries-tracker.test.ts +2 -14
  27. package/src/tests/gitlab-vcs-db.test.ts +0 -33
  28. package/src/tests/heartbeat-checklist.test.ts +417 -0
  29. package/src/tests/heartbeat.test.ts +2 -57
  30. package/src/tests/http-api-integration.test.ts +147 -220
  31. package/src/tests/oauth-wrapper.test.ts +6 -4
  32. package/src/tests/prompt-template-remaining.test.ts +2 -3
  33. package/src/tests/runner-polling-api.test.ts +1 -1
  34. package/src/tests/self-improvement.test.ts +3 -30
  35. package/src/tests/tool-annotations.test.ts +3 -19
  36. package/src/tests/tracker-tools.test.ts +2 -23
  37. package/src/tests/workflow-http-v2.test.ts +130 -1
  38. package/src/tests/workflow-patch.test.ts +169 -0
  39. package/src/tools/send-task.ts +2 -26
  40. package/src/tools/store-progress.ts +2 -35
  41. package/src/tools/tool-config.ts +4 -11
  42. package/src/tools/tracker/index.ts +0 -1
  43. package/src/tools/tracker/tracker-sync-status.ts +1 -1
  44. package/src/tools/update-profile.ts +21 -3
  45. package/src/tools/workflows/cancel-workflow-run.ts +41 -0
  46. package/src/tools/workflows/index.ts +3 -0
  47. package/src/tools/workflows/patch-workflow-node.ts +93 -0
  48. package/src/tools/workflows/patch-workflow.ts +130 -0
  49. package/src/tracker/types.ts +1 -1
  50. package/src/types.ts +37 -59
  51. package/src/workflows/cooldown.ts +24 -7
  52. package/src/workflows/definition.ts +71 -1
  53. package/src/workflows/engine.ts +17 -2
  54. package/src/workflows/executors/raw-llm.ts +17 -0
  55. package/src/workflows/executors/validate.ts +17 -0
  56. package/src/workflows/index.ts +1 -1
  57. package/src/workflows/resume.ts +44 -0
  58. package/templates/official/coder/CLAUDE.md +1 -1
  59. package/templates/official/content-reviewer/CLAUDE.md +1 -1
  60. package/templates/official/content-strategist/CLAUDE.md +1 -1
  61. package/templates/official/content-writer/CLAUDE.md +1 -1
  62. package/templates/official/forward-deployed-engineer/CLAUDE.md +1 -1
  63. package/templates/official/lead/CLAUDE.md +3 -0
  64. package/templates/official/lead/HEARTBEAT.md +12 -0
  65. package/templates/official/lead/IDENTITY.md +1 -1
  66. package/templates/official/lead/config.json +3 -2
  67. package/templates/official/researcher/CLAUDE.md +1 -1
  68. package/templates/official/reviewer/CLAUDE.md +1 -1
  69. package/templates/official/tester/CLAUDE.md +1 -1
  70. package/templates/schema.ts +2 -0
  71. package/src/http/epics.ts +0 -460
  72. package/src/tests/epics.test.ts +0 -370
  73. package/src/tools/epics/assign-task-to-epic.ts +0 -129
  74. package/src/tools/epics/create-epic.ts +0 -112
  75. package/src/tools/epics/delete-epic.ts +0 -121
  76. package/src/tools/epics/get-epic-details.ts +0 -92
  77. package/src/tools/epics/index.ts +0 -7
  78. package/src/tools/epics/list-epics.ts +0 -85
  79. package/src/tools/epics/unassign-task-from-epic.ts +0 -109
  80. package/src/tools/epics/update-epic.ts +0 -174
  81. package/src/tools/tracker/tracker-link-epic.ts +0 -64

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.