You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: avoid bash commands that may not be installed
Agent runs picked `file` to inspect template readability and hit exit 127
`/bin/sh: 1: file: not found`. The bash tool guidance only covered using
dedicated tools over cat/sed/grep, with no rule about missing commands.
Tell the model to inspect file existence/readability with ReadFile or basic
commands (`ls -l`, `stat`, `head`), and to switch away from a command that
exits 127 instead of retrying it.
0 commit comments