pub struct LearningSection {
pub auto_harvest: bool,
pub distiller: DistillerSection,
}Expand description
v0.8.5: automatic memory harvesting. When auto_harvest is on, the
proactive PostToolUse hook and the Stop hook emit a [kimetsu-harvest]
cue at high-signal moments (a failed-then-fixed command, or a
non-trivial session that recorded nothing) telling the agent to
dispatch the kimetsu-memory-harvester subagent. Set it false to
silence those cues.
Fields§
§auto_harvest: bool§distiller: DistillerSectionOpt-in credentialed SessionEnd distiller (configured by the install
wizard). Disabled by default; #[serde(default)] keeps older
project.toml files loading.
Trait Implementations§
Source§impl Clone for LearningSection
impl Clone for LearningSection
Source§fn clone(&self) -> LearningSection
fn clone(&self) -> LearningSection
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 moreSource§impl Debug for LearningSection
impl Debug for LearningSection
Source§impl Default for LearningSection
impl Default for LearningSection
Source§impl<'de> Deserialize<'de> for LearningSection
impl<'de> Deserialize<'de> for LearningSection
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
Auto Trait Implementations§
impl Freeze for LearningSection
impl RefUnwindSafe for LearningSection
impl Send for LearningSection
impl Sync for LearningSection
impl Unpin for LearningSection
impl UnsafeUnpin for LearningSection
impl UnwindSafe for LearningSection
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