Skip to main content

Op

Enum Op 

Source
pub enum Op {
    SendMessage {
        content: String,
        mode: String,
        model: Option<String>,
        model_provider: Option<String>,
        allowed_tools: Option<Vec<String>>,
        dynamic_tools: Vec<Value>,
        provenance: String,
    },
    Steer {
        content: String,
    },
    ContinueGoal,
    RunShellCommand {
        command: String,
    },
    SetGoalStatus {
        status: String,
        clear: bool,
    },
    Cancel,
    Shutdown,
    PreviewOutboundRequest {
        json: bool,
        base_prompt_only: bool,
    },
}
Expand description

Operations that can be submitted to the core engine. This is the protocol view of crates/tui/src/core/ops::Op — same lifecycle, same provenance gate — but serializable and free of mpsc / oneshot fields. In-process callers convert at the boundary; out-of-process callers send the JSON directly.

Variants§

§

SendMessage

Drive one model turn: role=user content plus the resolved route receipt the engine will freeze at the client-freeze boundary. Headless and TUI must produce byte-identical MessageRequests for identical Op::SendMessage payloads.

Fields

§content: String
§mode: String

Effective mode for this turn ("plan" | "agent" | "operate" etc).

§model: Option<String>

Optional explicit route/model the caller resolved already (mirrors ResolvedRuntimeRoute in crates_tui::route_runtime). None means “use the thread’s current route”.

§model_provider: Option<String>
§allowed_tools: Option<Vec<String>>

Tool restriction from slash-command frontmatter.

§dynamic_tools: Vec<Value>

Runtime-supplied dynamic tools for this turn only.

§provenance: String

Structural input provenance — only ExternalUser may inherit YOLO/auto-approval authority (mirrors UserInputProvenance).

§

Steer

Steer an in-flight turn with additional user content (drains into the turn loop’s rx_steer channel).

Fields

§content: String
§

ContinueGoal

Re-check and dispatch a goal continuation (synthetic turn that continues the same logical goal run).

§

RunShellCommand

Execute a local composer shell command without a model turn.

Fields

§command: String
§

SetGoalStatus

Set goal status without dispatching a model turn.

Fields

§status: String
§clear: bool
§

Cancel

§

Shutdown

§

PreviewOutboundRequest

Describe the exact request the next turn would send without sending it (/dryrun / /preview-request, #1004). Headless and TUI must render identical manifests for identical inputs.

Fields

§json: bool
§base_prompt_only: bool

Implementations§

Source§

impl Op

Source

pub fn is_send_message(&self) -> bool

Source

pub fn kind_str(&self) -> &'static str

Trait Implementations§

Source§

impl Clone for Op

Source§

fn clone(&self) -> Op

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Op

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Op

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Serialize for Op

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations§

§

impl Freeze for Op

§

impl RefUnwindSafe for Op

§

impl Send for Op

§

impl Sync for Op

§

impl Unpin for Op

§

impl UnsafeUnpin for Op

§

impl UnwindSafe for Op

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.