pub struct CatalogAiSkillCandidate {
pub description: Option<String>,
pub display_name: String,
pub handle: String,
pub handle_expires_at: String,
pub installability: CatalogAiSkillCandidateInstallability,
pub kind: CatalogAiSkillCandidateKind,
pub media_type: CatalogAiSkillCandidateMediaType,
pub provenance: CatalogAiSkillCandidateProvenance,
pub publisher: Option<String>,
pub source: CatalogCandidateSource,
}Expand description
An inert AI skill catalog result. AI skills are discovery-only and cannot be represented as installable through this surface.
Experimental. This type is part of an experimental wire-protocol surface and may change or be removed in future SDK or CLI releases.
Fields§
§description: Option<String>Description taken verbatim from the card. Inert untrusted text.
display_name: StringDisplay name taken verbatim from the card. Inert untrusted text.
handle: StringOpaque, runtime-instance scoped, TTL-bound, single-use handle for this candidate. Carries no readable information and is rejected when stale, replayed, or presented to a different runtime instance. Never logged.
handle_expires_at: StringISO 8601 timestamp after which the handle is stale and will be rejected.
installability: CatalogAiSkillCandidateInstallabilityAI skills are discovery-only and cannot be installed through this surface
kind: CatalogAiSkillCandidateKindDiscriminator: this candidate describes an AI skill
media_type: CatalogAiSkillCandidateMediaTypeMedia type of the underlying AI skill card
provenance: CatalogAiSkillCandidateProvenanceWhere the catalog reference was observed, without the card itself or any content digest.
publisher: Option<String>Publisher taken verbatim from the card. Inert untrusted text.
source: CatalogCandidateSourceWhere the card came from: exactly one of a URL or embedded data, encoded as a tagged union so neither both nor neither can be represented.
Trait Implementations§
Source§impl Clone for CatalogAiSkillCandidate
impl Clone for CatalogAiSkillCandidate
Source§fn clone(&self) -> CatalogAiSkillCandidate
fn clone(&self) -> CatalogAiSkillCandidate
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more