pub struct GenerateSkillParams {
pub server_id: String,
pub servers_dir: Option<PathBuf>,
pub skill_name: Option<String>,
pub use_case_hints: Option<Vec<String>>,
}Expand description
Parameters for generating a skill.
§Examples
use mcp_execution_skill::types::GenerateSkillParams;
let params = GenerateSkillParams {
server_id: "github".to_string(),
servers_dir: None,
skill_name: None,
use_case_hints: None,
};Fields§
§server_id: StringServer identifier (e.g., “github”).
Must contain only lowercase letters, digits, and hyphens.
servers_dir: Option<PathBuf>Base directory for generated servers.
Default: ~/.claude/servers
skill_name: Option<String>Custom skill name.
Default: {server_id}-progressive
use_case_hints: Option<Vec<String>>Additional context about intended use cases.
Helps generate more relevant documentation.
Trait Implementations§
Source§impl Clone for GenerateSkillParams
impl Clone for GenerateSkillParams
Source§fn clone(&self) -> GenerateSkillParams
fn clone(&self) -> GenerateSkillParams
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 GenerateSkillParams
impl Debug for GenerateSkillParams
Source§impl<'de> Deserialize<'de> for GenerateSkillParams
impl<'de> Deserialize<'de> for GenerateSkillParams
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 GenerateSkillParams
impl JsonSchema for GenerateSkillParams
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 inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for GenerateSkillParams
impl RefUnwindSafe for GenerateSkillParams
impl Send for GenerateSkillParams
impl Sync for GenerateSkillParams
impl Unpin for GenerateSkillParams
impl UnwindSafe for GenerateSkillParams
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