Changeset 0.27.3 (#170)

This commit is contained in:
2026-03-11 09:12:57 +00:00
parent dcb915555e
commit a46ec63464
14 changed files with 561 additions and 110 deletions

View File

@@ -166,7 +166,7 @@ v0.27.2 Task Execution ✅
(budgets, admin controls,
run history, kill switch)
v0.27.3 Task Chaining
v0.27.3 Task Chaining
(webhooks, task_create tool,
workflow-to-workflow)
@@ -973,16 +973,17 @@ Depends on: v0.27.1 (task scheduler).
---
## v0.27.3 — Task Chaining: Webhooks + Workflow-to-Workflow
## v0.27.3 — Task Chaining: Webhooks + Workflow-to-Workflow
External integration and multi-workflow orchestration.
Depends on: v0.27.2 (task budgets).
- [ ] Completion webhooks (POST to external URL on task/workflow completion)
- [ ] Webhook retry (3 attempts, exponential backoff) + HMAC signature
- [ ] `task_create` tool (AI spawns sub-tasks, `RequireWorkflow` predicate, depth limit)
- [ ] `on_complete` chaining via task system (completed workflow → one-shot task → target workflow)
- [ ] Webhook secret generation per task/workflow
- [x] Completion webhooks (POST to external URL on task/workflow completion)
- [x] Webhook retry (3 attempts, exponential backoff) + HMAC signature
- [x] `task_create` tool (AI spawns sub-tasks, RequireWorkflow/RequireTeam predicate, depth limit)
- [x] `on_complete` chaining via task system (completed workflow → one-shot task → target workflow)
- [x] Webhook secret generation per task/workflow
- [x] Bug fix: `workflow_advance` tool now triggers `on_complete` chaining on completion
---