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
The StandardCodingAgentExecutor trait was updated in commit e442281 to add a reset_to_message_id parameter to the spawn_follow_up method. While the Droid executor had this parameter in its signature (marked as unused), it was still using the old fork_session approach which:
Created unnecessary copies of session files
Was incompatible with Droid's actual CLI interface
Implementation Details
The fix simplifies the follow-up flow by:
Removing the fork_session() call that created session file copies
Directly passing the original session_id to Droid's --session-id flag
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Root Cause
The StandardCodingAgentExecutor trait was updated in commit e442281 to add a reset_to_message_id parameter to the spawn_follow_up method. While the Droid executor had this parameter in its signature (marked as unused), it was still using the old fork_session approach which:
Implementation Details
The fix simplifies the follow-up flow by:
This aligns with Droid's documented CLI interface where --session-id is used to continue existing sessions.
Droid CLI version is
0.57.9Beta Was this translation helpful? Give feedback.
All reactions