Skip to content

fix(cli): remove stale send delivery flags from help - #902

Open
CraigVG wants to merge 1 commit into
PrimeIntellect-ai:mainfrom
CraigVG:fix/send-help-delivery-flags
Open

fix(cli): remove stale send delivery flags from help#902
CraigVG wants to merge 1 commit into
PrimeIntellect-ai:mainfrom
CraigVG:fix/send-help-delivery-flags

Conversation

@CraigVG

@CraigVG CraigVG commented Aug 8, 2026

Copy link
Copy Markdown

Summary

  • remove the intentionally retired --steer and --follow-up flags from prime-agent help send
  • describe send as always-steering and clarify tool-boundary delivery
  • add a regression test for the rendered command help

The 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.ts

Note

Remove stale --steer and --follow-up delivery flags from send command help

Updates the send command spec in command-registry.ts to reflect that messages always steer an active turn and are delivered at the next tool boundary. The --steer and --follow-up flags are removed from the documented options, and a new test asserts their absence.

Macroscope summarized f460c6b.

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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

send help advertises removed --steer/--follow-up flags that parser rejects

1 participant