Originally created by: kumaakh
Gemini Flash is considerably slower than Claude for code tasks. The PM skill currently uses uniform timeouts regardless of the member's LLM backend, causing Gemini members to time out on tasks that Claude members complete easily.
Additionally, Gemini has no concept of background agents — every remote prompt blocks. This makes Gemini a poor fit as an orchestrator since the PM needs to dispatch to multiple members concurrently (prep reviewer while doer works, monitor tasks in parallel, etc.).
execute_prompt and execute_command dispatchesexecute_prompt call blocks for Gemini — no parallel dispatch possibleThis came from real-world observation: Gemini Flash is noticeably slower and its blocking nature serializes all fleet operations when used as orchestrator.
Originally posted by: kumaakh
Addressed in skills/pm/SKILL.md (main). The Provider Awareness table documents '2-3x timeout multiplier for execute_prompt dispatches to Gemini members' and notes that Gemini does not support background agents. Closing as skill-documented.
Ticket changed by: kumaakh