@archastro/sdk
    Preparing search index...

    Interface InstalledConfigEntry

    A slim summary of a single config record created during an agent install transaction. Returned as an entry in AgentCreateResponse.installed_configs.

    interface InstalledConfigEntry {
        id: string;
        key: string;
        kind: string;
        lookup_key?: string;
    }
    Index

    Properties

    Properties

    id: string

    ID of the persisted config record (cfg_...).

    key: string

    Caller-supplied correlation key echoed back from the request. For top-level configs this is the original lookup_key (before any suffix is applied). For skill file children it is the composite "<skill_lookup_key>:<relative_path>" string, since file rows have no lookup_key of their own.

    kind: string

    Type of config that was created. One of "Skill", "File", "Script", "AgentTemplate", or "Config".

    lookup_key?: string

    Stored lookup_key for this config after any suffix has been applied. null for File children inside a skill bundle, which are keyed by (parent_id, relative_path) rather than by lookup_key.