fix(agent-claude-code): add missing workflow-util dependency

The claude-code agent imports createLogger from @uncaged/workflow-util
but was missing the dependency declaration, causing test failures.
This commit is contained in:
2026-05-24 11:04:02 +00:00
parent 1f13b1e79c
commit c40007eeaf
@@ -22,7 +22,8 @@
}, },
"dependencies": { "dependencies": {
"@uncaged/json-cas": "^0.4.0", "@uncaged/json-cas": "^0.4.0",
"@uncaged/workflow-agent-kit": "workspace:^" "@uncaged/workflow-agent-kit": "workspace:^",
"@uncaged/workflow-util": "workspace:^"
}, },
"devDependencies": { "devDependencies": {
"typescript": "^5.8.3" "typescript": "^5.8.3"