pub enum HarnessPostureKind {
Standard,
CacheHeavy,
Lean,
Custom,
}Expand description
Kinds of built-in harness postures.
A posture names the runtime strategy CodeWhale should use for a provider/model route: how much context to preload, how aggressively to lean on sub-agents, and how to balance prompt-cache stability against quick exploration. Runtime selection is wired in later v0.9 slices; this config model intentionally keeps the policy data explicit first.
Variants§
Standard
Full-featured default: rich constitution, broad tool catalog, and normal sub-agent posture.
CacheHeavy
Cache-heavy: deeper prompt layering and prefix-cache-oriented context.
Lean
Lean: smaller starting context, faster compaction, and stronger exploration/delegation bias.
Custom
User-defined posture assembled from explicit knobs below.
Trait Implementations§
Source§impl Clone for HarnessPostureKind
impl Clone for HarnessPostureKind
Source§fn clone(&self) -> HarnessPostureKind
fn clone(&self) -> HarnessPostureKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for HarnessPostureKind
Source§impl Debug for HarnessPostureKind
impl Debug for HarnessPostureKind
Source§impl Default for HarnessPostureKind
impl Default for HarnessPostureKind
Source§fn default() -> HarnessPostureKind
fn default() -> HarnessPostureKind
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HarnessPostureKind
impl<'de> Deserialize<'de> for HarnessPostureKind
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for HarnessPostureKind
Source§impl PartialEq for HarnessPostureKind
impl PartialEq for HarnessPostureKind
Source§fn eq(&self, other: &HarnessPostureKind) -> bool
fn eq(&self, other: &HarnessPostureKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HarnessPostureKind
impl Serialize for HarnessPostureKind
impl StructuralPartialEq for HarnessPostureKind
Auto Trait Implementations§
impl Freeze for HarnessPostureKind
impl RefUnwindSafe for HarnessPostureKind
impl Send for HarnessPostureKind
impl Sync for HarnessPostureKind
impl Unpin for HarnessPostureKind
impl UnsafeUnpin for HarnessPostureKind
impl UnwindSafe for HarnessPostureKind
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.