Dim prompts use the documented dim exec form

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01QKxGW1raAWaqeU8WdHsMsp
This commit is contained in:
2026-08-25 15:03:35 -04:00
co-authored by Claude Fable 5
parent a3cd27dba3
commit aa87ed97c1
+6 -2
View File
@@ -108,8 +108,12 @@ deepcode)
[[ -n ${prompt:-} ]] && command+=("$prompt")
;;
dim)
command=(dim)
[[ -n ${prompt:-} ]] && command+=("$prompt")
# `dim exec` is the documented one-shot prompt form
if [[ -n ${prompt:-} ]]; then
command=(dim exec "$prompt")
else
command=(dim)
fi
;;
*)
echo "Unsupported default agent: $agent" >&2