pub struct ParsedSkillMd {Show 14 fields
pub name: String,
pub description: String,
pub license: Option<String>,
pub compatibility: Option<String>,
pub metadata: HashMap<String, Value>,
pub allowed_tools: Option<String>,
pub version: String,
pub instructions: String,
pub user_invocable: bool,
pub disable_model_invocation: bool,
pub argument_hint: Option<String>,
pub context: SkillContext,
pub agent: Option<String>,
pub model: Option<String>,
}Expand description
Parsed SKILL.md content
Fields§
§name: StringSkill name from frontmatter
description: StringDescription from frontmatter
license: Option<String>License from frontmatter
compatibility: Option<String>Compatibility from frontmatter
metadata: HashMap<String, Value>Arbitrary metadata from frontmatter
allowed_tools: Option<String>Allowed tools from frontmatter
version: StringVersion from metadata or default
instructions: StringMarkdown body (after frontmatter)
user_invocable: boolWhether this skill appears as a /slash command for users (default: true)
disable_model_invocation: boolWhether the model is prevented from auto-invoking this skill (default: false)
argument_hint: Option<String>Hint string for autocomplete (e.g., "<issue-number>")
context: SkillContextExecution context: inline (default) or fork (subagent)
agent: Option<String>Subagent type when context is fork (e.g., “Explore”, “Plan”). Default: “general-purpose”
model: Option<String>LLM model override for this skill (e.g., “claude-haiku-4-5-20251001”)
Trait Implementations§
Source§impl Clone for ParsedSkillMd
impl Clone for ParsedSkillMd
Source§fn clone(&self) -> ParsedSkillMd
fn clone(&self) -> ParsedSkillMd
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 moreAuto Trait Implementations§
impl Freeze for ParsedSkillMd
impl RefUnwindSafe for ParsedSkillMd
impl Send for ParsedSkillMd
impl Sync for ParsedSkillMd
impl Unpin for ParsedSkillMd
impl UnsafeUnpin for ParsedSkillMd
impl UnwindSafe for ParsedSkillMd
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
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>
Converts
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>
Converts
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 moreSource§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T in a tonic::Request