pub struct KumihoConfig {
pub enabled: bool,
pub mcp_path: String,
pub space_prefix: String,
pub api_url: String,
pub memory_project: String,
pub harness_project: String,
}Expand description
Kumiho graph-memory integration ([kumiho] section).
Controls automatic injection of the Kumiho MCP server and session-bootstrap system prompt into every non-internal agent. Kumiho is Construct’s canonical persistent memory store; disable only for testing or air-gapped deployments.
Fields§
§enabled: boolEnable Kumiho memory injection for non-internal agents. Default: true.
mcp_path: StringAbsolute path to the run_kumiho_mcp.py script.
Supports tilde expansion. Defaults to
~/.construct/kumiho/run_kumiho_mcp.py.
space_prefix: StringKumiho project / space prefix used to scope memories.
Memories are stored under <space_prefix>/<context>. Defaults to
"Construct".
api_url: StringBase URL for the Kumiho FastAPI REST API.
Used by the agent management proxy to call Kumiho endpoints directly.
Defaults to "http://localhost:8000".
memory_project: StringKumiho project for user memories, sessions, and compactions.
harness_project: StringKumiho project for skills, operational data, and ClawHub installs.
Trait Implementations§
Source§impl Clone for KumihoConfig
impl Clone for KumihoConfig
Source§fn clone(&self) -> KumihoConfig
fn clone(&self) -> KumihoConfig
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for KumihoConfig
impl Debug for KumihoConfig
Source§impl Default for KumihoConfig
impl Default for KumihoConfig
Source§impl<'de> Deserialize<'de> for KumihoConfig
impl<'de> Deserialize<'de> for KumihoConfig
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>,
Source§impl JsonSchema for KumihoConfig
impl JsonSchema for KumihoConfig
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for KumihoConfig
impl RefUnwindSafe for KumihoConfig
impl Send for KumihoConfig
impl Sync for KumihoConfig
impl Unpin for KumihoConfig
impl UnsafeUnpin for KumihoConfig
impl UnwindSafe for KumihoConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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