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
Every other command supports --format json for machine-readable output, but execute does not. Currently, stdout/stderr are printed directly with no structured wrapper, making it difficult to programmatically distinguish command output from CLI errors.
Agents and scripts that parse exec output need to reliably separate stdout, stderr, and exit codes. Today this requires heuristics or checking $? separately.
Feature request
Every other command supports
--format jsonfor machine-readable output, butexecutedoes not. Currently, stdout/stderr are printed directly with no structured wrapper, making it difficult to programmatically distinguish command output from CLI errors.Suggestion
Impact
Agents and scripts that parse exec output need to reliably separate stdout, stderr, and exit codes. Today this requires heuristics or checking
$?separately.