pub enum SkillScope {
Task,
Coordinator,
Chain,
}Expand description
Where a skill is intended to run.
Advisory only — the pool does not enforce scope. Coordinators and agents use it to decide whether a skill makes sense in a given context.
Variants§
Task
Single unit of work, any slot can run it.
Coordinator
Needs MCP access, human interaction, or cross-cutting visibility. Should run at the coordinator level, not in a pool slot.
Chain
Multi-step workflow template. Used as a chain definition, not a single task.
Trait Implementations§
Source§impl Clone for SkillScope
impl Clone for SkillScope
Source§fn clone(&self) -> SkillScope
fn clone(&self) -> SkillScope
Returns a duplicate of the value. Read more
1.0.0 · 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 SkillScope
impl Debug for SkillScope
Source§impl Default for SkillScope
impl Default for SkillScope
Source§fn default() -> SkillScope
fn default() -> SkillScope
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SkillScope
impl<'de> Deserialize<'de> for SkillScope
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
Source§impl Display for SkillScope
impl Display for SkillScope
Source§impl PartialEq for SkillScope
impl PartialEq for SkillScope
Source§impl Serialize for SkillScope
impl Serialize for SkillScope
impl Copy for SkillScope
impl Eq for SkillScope
impl StructuralPartialEq for SkillScope
Auto Trait Implementations§
impl Freeze for SkillScope
impl RefUnwindSafe for SkillScope
impl Send for SkillScope
impl Sync for SkillScope
impl Unpin for SkillScope
impl UnsafeUnpin for SkillScope
impl UnwindSafe for SkillScope
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