pub struct CortexPrincipleStatusTool { /* private fields */ }Expand description
MCP tool: cortex_principle_status.
Schema:
cortex_principle_status(
principle_id?: string, // optional — filter to a single principle row
) → {
active_count: int,
candidate_count: int,
doctrine_count: int,
principles: [{ id, claim, status, confidence }],
}When principle_id is supplied the principles array contains at most one
entry. When omitted all candidate rows are returned.
Implementations§
Trait Implementations§
Source§impl Debug for CortexPrincipleStatusTool
impl Debug for CortexPrincipleStatusTool
Auto Trait Implementations§
impl Freeze for CortexPrincipleStatusTool
impl RefUnwindSafe for CortexPrincipleStatusTool
impl Send for CortexPrincipleStatusTool
impl Sync for CortexPrincipleStatusTool
impl Unpin for CortexPrincipleStatusTool
impl UnsafeUnpin for CortexPrincipleStatusTool
impl UnwindSafe for CortexPrincipleStatusTool
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