fix(cli): remove stale send delivery flags from help - #902
Open
CraigVG wants to merge 1 commit into
Open
Conversation
zhengr
pushed a commit
to zhengr/prime-agent
that referenced
this pull request
Aug 8, 2026
…meIntellect-ai#902) Fixes 400 errors when reading multiple images via GitHub Copilot's Claude models. Claude requires tool_use -> tool_result adjacency with no user messages interleaved. Before: assistant(tool_calls) -> tool -> user(images) -> tool -> user(images) After: assistant(tool_calls) -> tool -> tool -> user(all images)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
--steerand--follow-upflags fromprime-agent help sendsendas always-steering and clarify tool-boundary deliveryThe parser and 0.7.0 changelog already agree that agent messages always steer; only the command registry help remained stale.
Closes #901.
Test plan
npm --prefix packages/coding-agent test -- test/public-command.test.ts(31 passed)npm exec -- biome check packages/coding-agent/src/cli/command-registry.ts packages/coding-agent/test/public-command.test.tsNote
Remove stale
--steerand--follow-updelivery flags fromsendcommand helpUpdates the
sendcommand spec in command-registry.ts to reflect that messages always steer an active turn and are delivered at the next tool boundary. The--steerand--follow-upflags are removed from the documented options, and a new test asserts their absence.Macroscope summarized f460c6b.