Merge pull request #937 from abeperl/feat/fn-024-add-dependencies-to-task-update

feat: Add optional dependencies parameter to fn_task_update tool
This commit is contained in:
gsxdsm
2026-05-25 14:18:01 -07:00
committed by GitHub
2 changed files with 47 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
---
"@fusion/engine": minor
---
Add optional dependencies parameter to fn_task_update tool. Executors can now programmatically modify task dependency arrays during execution with `fn_task_update({ id: "FN-XXX", dependencies: ["FN-001", "FN-002"] })`. The parameter is optional and backward-compatible; omitting it preserves existing dependencies. Includes validation for self-dependency and non-existent task IDs. Eliminates the need for direct task.json editing workarounds.