fixed plan mode respond reading from memory in cli (#6738)

* fixed plan mode respond partial in cli and cline core

* reverting planmoderespondhandler
This commit is contained in:
pashpashpash
2025-10-09 16:26:33 -07:00
committed by GitHub
parent 7f05e06d8e
commit a43d375366
+7
View File
@@ -877,6 +877,13 @@ func (m *Manager) processStateUpdate(stateUpdate *cline.State, coordinator *Stre
m.displayMessage(msg, false, false, i)
coordinator.MarkProcessedInCurrentTurn("ask_command_output")
}
case msg.Ask == string(types.AskTypePlanModeRespond):
if !coordinator.IsProcessedInCurrentTurn("plan_mode_respond") {
fmt.Println()
m.displayMessage(msg, false, false, i)
coordinator.MarkProcessedInCurrentTurn("plan_mode_respond")
}
}
}