@suluk/agents - v0.1.6
    Preparing search index...

    Interface CatalogEntry

    One entry in an agent's loadable catalog — the CF Agent-Skill get() listing (what appears in the system prompt).

    interface CatalogEntry {
        key: string;
        local: string;
        description: string;
        kind: "instructions" | "reference" | "script";
        trust: "author-declared" | "retrieved";
        provenance: { source: string; contentHash: string; version?: string };
    }
    Index

    Properties

    key: string

    the resource key in x-suluk-resources.

    local: string

    the agent's local ref name (the resources map key).

    description: string
    kind: "instructions" | "reference" | "script"
    trust: "author-declared" | "retrieved"
    provenance: { source: string; contentHash: string; version?: string }