diff --git a/.agents/scripts/commands/new-task.md b/.agents/scripts/commands/new-task.md index 6ea54350ce..08c5bcde4b 100644 --- a/.agents/scripts/commands/new-task.md +++ b/.agents/scripts/commands/new-task.md @@ -118,8 +118,8 @@ After creating the brief, classify the task to determine if it should be decompo DECOMPOSE_HELPER="$HOME/.aidevops/agents/scripts/task-decompose-helper.sh" if [[ -x "$DECOMPOSE_HELPER" ]]; then - CLASSIFY=$(/bin/bash "$DECOMPOSE_HELPER" classify --task "{title}" --quiet 2>/dev/null) || CLASSIFY="" - TASK_KIND=$(echo "$CLASSIFY" | jq -r '.kind // "atomic"' 2>/dev/null || echo "atomic") + CLASSIFY=$(/bin/bash "$DECOMPOSE_HELPER" classify "{title}") || CLASSIFY="" + TASK_KIND=$(echo "$CLASSIFY" | jq -r '.kind // "atomic"' || echo "atomic") fi ```