pub struct SkillsConfig {
pub render_mode: SkillsRenderMode,
pub prompt_format: PromptFormat,
pub max_skills_in_prompt: usize,
pub enable_auto_trigger: bool,
pub enable_description_matching: bool,
pub min_keyword_matches: usize,
}Expand description
Skills system configuration
Fields§
§render_mode: SkillsRenderModeRendering mode for skills in system prompt
- “lean”: Codex-style minimal (name + description + path only, 40-60% token savings)
- “full”: Full metadata with version, author, native flags
prompt_format: PromptFormatPrompt format for skills section (Agent Skills spec)
- “xml”: XML wrapping for safety (Claude models default)
- “markdown”: Plain markdown sections
max_skills_in_prompt: usizeMaximum number of skills to show in system prompt
enable_auto_trigger: boolEnable auto-trigger on $skill-name mentions
enable_description_matching: boolEnable description-based keyword matching for auto-trigger
min_keyword_matches: usizeMinimum keyword matches required for description-based trigger
Trait Implementations§
Source§impl Clone for SkillsConfig
impl Clone for SkillsConfig
Source§fn clone(&self) -> SkillsConfig
fn clone(&self) -> SkillsConfig
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 SkillsConfig
impl Debug for SkillsConfig
Source§impl Default for SkillsConfig
impl Default for SkillsConfig
Source§impl<'de> Deserialize<'de> for SkillsConfig
impl<'de> Deserialize<'de> for SkillsConfig
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 JsonSchema for SkillsConfig
impl JsonSchema for SkillsConfig
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§impl PartialEq for SkillsConfig
impl PartialEq for SkillsConfig
Source§impl Serialize for SkillsConfig
impl Serialize for SkillsConfig
impl Eq for SkillsConfig
impl StructuralPartialEq for SkillsConfig
Auto Trait Implementations§
impl Freeze for SkillsConfig
impl RefUnwindSafe for SkillsConfig
impl Send for SkillsConfig
impl Sync for SkillsConfig
impl Unpin for SkillsConfig
impl UnwindSafe for SkillsConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.