Skip to main content

PromptBundle

Struct PromptBundle 

Source
pub struct PromptBundle {
    pub fragments: Vec<PromptFragment>,
    pub environment: EnvironmentMetadata,
    pub project_context: Vec<ContextSource>,
    pub tool_catalog: Vec<ToolDefinition>,
    pub available_skills: Vec<SkillMetadata>,
    pub transcript_tail: Vec<Entry>,
    pub user_turn: String,
    pub history_reuse: HistoryReuse,
    pub prev_context_hash: Option<u64>,
    pub context_ledger: Option<ContextLedger>,
}
Expand description

The structured prompt bundle before provider-specific lowering.

Each field is a separate piece of model context. The std::fmt::Display implementation renders the full system prompt text; lower_to_umans_messages converts it to Anthropic-compatible messages.

Fields§

§fragments: Vec<PromptFragment>

Ordered prompt fragments: base identity, communication style, action model, edit guidance, action safety, self-knowledge, web/source guidance.

§environment: EnvironmentMetadata

Environment: cwd, model, search mode, rounded date.

§project_context: Vec<ContextSource>

Loaded AGENTS.md context sources.

§tool_catalog: Vec<ToolDefinition>

Tool catalog as provider-native schemas.

§available_skills: Vec<SkillMetadata>

Available Agent Skills metadata. Full skill instructions are read only after activation.

§transcript_tail: Vec<Entry>

Projected model-visible transcript tail.

§user_turn: String

Current user prompt text.

§history_reuse: HistoryReuse

Whether the provider supports reusable history / prompt caching for AGENTS.md content. When HistoryReuse::Available, full text is included only when the content hash changes.

§prev_context_hash: Option<u64>

Content hash of the root AGENTS.md from the previous turn, if any.

Used with HistoryReuse::Available to skip re-sending unchanged AGENTS.md text. None on the first turn or when no context is loaded.

§context_ledger: Option<ContextLedger>

Selected context projection from the context selection policy (P7/P8).

When Some, the system prompt renders selected project instructions, compaction summaries, and pinned handles from the ledger items, the transcript tail is taken from ledger-selected transcript context, and a compact context dashboard is added to <thndrs_self_knowledge>.

When None, the legacy rendering path is used (project_context plus the fixed transcript tail projection), preserving existing behavior.

Implementations§

Source§

impl PromptBundle

Source

pub fn new( cwd: &Path, model: &str, mode: WebSearchMode, context_sources: &[ContextSource], transcript: &[Entry], user_turn: &str, ) -> PromptBundle

Build a PromptBundle from app state and context.

Source

pub fn new_with_skills( cwd: &Path, model: &str, mode: WebSearchMode, context_sources: &[ContextSource], available_skills: &[SkillMetadata], transcript: &[Entry], user_turn: &str, ) -> PromptBundle

Build a PromptBundle including discovered Agent Skills metadata.

Source

pub fn with_tool_catalog(self, tool_catalog: Vec<ToolDefinition>) -> Self

Replace the bundle’s tool catalog with a runtime-specific catalog.

Source

pub fn with_context_ledger(self, ledger: ContextLedger) -> Self

Attach a selected context projection (P7 ledger) so the system prompt renders selected instructions, summaries, pins, and transcript context from the ledger, and adds a context dashboard to <thndrs_self_knowledge>.

Trait Implementations§

Source§

impl Clone for PromptBundle

Source§

fn clone(&self) -> PromptBundle

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 PromptBundle

Source§

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

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

impl From<&PromptBundle> for SelfKnowledgeSnapshot

Source§

fn from(bundle: &PromptBundle) -> SelfKnowledgeSnapshot

Converts to this type from the input type.

Auto Trait Implementations§

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> DynClone for T
where T: Clone,

Source§

fn __clone_box(&self, _: Private) -> *mut ()

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> IntoMaybeUndefined<T> for T

Source§

fn into_maybe_undefined(self) -> MaybeUndefined<T>

Converts this value into a three-state builder argument.
Source§

impl<T> IntoOption<T> for T

Source§

fn into_option(self) -> Option<T>

Converts this value into an optional builder argument.
Source§

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

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
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.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more