🐛 Bug Fix
Critical Gemini Agent Execution
Fixed bug that prevented Gemini agents from executing in embrace/probe workflows:
- Issue: Gemini agents failed immediately with exit code 127: "gtimeout: failed to run command 'NODE_NO_WARNINGS=1': No such file or directory"
- Root Cause:
agent_to_command()returnedNODE_NO_WARNINGS=1 gemini ...which, when passed togtimeout, tried to executeNODE_NO_WARNINGS=1as a command - Fix: Added
envprefix to matchagent_to_command_array()format:env NODE_NO_WARNINGS=1 gemini ... - Impact: Gemini agents can now complete embrace/probe workflows with warning suppression (P2.2)
Discovered during live embrace workflow testing when 2/4 probe agents (both Gemini) failed instantly.