pub struct SkillRegistry { /* private fields */ }Expand description
Registry of loaded skills from bundled, project, and user directories.
Load with SkillRegistry::load_all. Skills are searched in order:
project (.agent/skills/), user (~/.config/agent-code/skills/),
then bundled. A project skill with the same name overrides a bundled one.
Implementations§
Auto Trait Implementations§
impl Freeze for SkillRegistry
impl RefUnwindSafe for SkillRegistry
impl Send for SkillRegistry
impl Sync for SkillRegistry
impl Unpin for SkillRegistry
impl UnsafeUnpin for SkillRegistry
impl UnwindSafe for SkillRegistry
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