fix: fs tools now output better error handling to guide the model more effectively
CI / All (ubuntu-latest) (push) Failing after 25s
CI / All (macos-latest) (push) Has been cancelled
CI / All (windows-latest) (push) Has been cancelled

This commit is contained in:
2026-07-14 12:47:43 -06:00
parent dd40892ad5
commit 2fe6704fbc
5 changed files with 31 additions and 10 deletions
+2 -2
View File
@@ -23,8 +23,8 @@ main() {
local limit="${argc_limit:-2000}"
if [[ ! -e "$target" ]]; then
echo "Error: path not found: $target" >> "$LLM_OUTPUT"
return 1
echo "Error: path not found: $target" >&2
exit 1
fi
if [[ -d "$target" ]]; then