pub struct QueueAppendSteeringRequest {
pub agent_mode: SendAgentMode,
pub attachments: Vec<Value>,
pub display_prompt: String,
pub expected_prompt: String,
pub message_id: String,
pub prompt: String,
}Expand description
Append to one pending steering message without changing its identity or delivery position.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§agent_mode: SendAgentModeMode captured at submission. Only steering messages in the same mode may be combined.
attachments: Vec<Value>Attachments to add after the message’s existing attachments. An empty list preserves the existing attachments.
display_prompt: StringDisplay text to append to the existing preview after a blank line.
expected_prompt: StringExpected current prompt, including any previous appends. The runtime applies plan-mode normalization before comparing and refuses a changed message.
message_id: StringMessage identity returned by send, not the queue item id. Only unclaimed user steering messages are eligible.
prompt: StringText to append after a blank line.