pub struct RemoteSkillMeta {
pub name: String,
pub description: String,
pub skill_directory: String,
pub when_to_use: Option<String>,
pub keywords: Vec<String>,
pub tools: Vec<String>,
pub providers: Vec<String>,
pub categories: Vec<String>,
}Fields§
§name: String§description: String§skill_directory: String§when_to_use: Option<String>Optional “when to use” guidance — sourced from SKILL.md YAML
frontmatter (when_to_use field, synonymous with Anthropic’s
when-to-use). Used by ati-client.build_skill_listing to emit a
richer <system-reminder> block matching Claude Code’s shape.
Serde-optional so older catalog manifests deserialize unchanged.
keywords: Vec<String>§tools: Vec<String>§providers: Vec<String>§categories: Vec<String>Trait Implementations§
Source§impl Clone for RemoteSkillMeta
impl Clone for RemoteSkillMeta
Source§fn clone(&self) -> RemoteSkillMeta
fn clone(&self) -> RemoteSkillMeta
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 RemoteSkillMeta
impl Debug for RemoteSkillMeta
Source§impl<'de> Deserialize<'de> for RemoteSkillMeta
impl<'de> Deserialize<'de> for RemoteSkillMeta
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 PartialEq for RemoteSkillMeta
impl PartialEq for RemoteSkillMeta
Source§impl Serialize for RemoteSkillMeta
impl Serialize for RemoteSkillMeta
impl Eq for RemoteSkillMeta
impl StructuralPartialEq for RemoteSkillMeta
Auto Trait Implementations§
impl Freeze for RemoteSkillMeta
impl RefUnwindSafe for RemoteSkillMeta
impl Send for RemoteSkillMeta
impl Sync for RemoteSkillMeta
impl Unpin for RemoteSkillMeta
impl UnsafeUnpin for RemoteSkillMeta
impl UnwindSafe for RemoteSkillMeta
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.