@archastro/sdk
    Preparing search index...

    Interface AgentExport

    A portable export bundle for an agent, containing everything needed to re-deploy it in another workspace or environment.

    interface AgentExport {
        configs: Config[];
        template: Record<string, unknown>;
    }
    Index

    Properties

    Properties

    configs: Config[]

    Ordered list of config file objects that the agent depends on. Included in full so the import can recreate all dependencies without additional requests.

    template: Record<string, unknown>

    The agent template definition as a structured map. Pass this directly to the import endpoint to recreate the agent.