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

    Interface AgentRuntimeArtifacts

    What every runtime adapter returns: owned source + the reachable sub-agent list + the deploy hint.

    interface AgentRuntimeArtifacts {
        files: Record<string, string>;
        reachableSubAgents: string[];
        deploy: RuntimeDeployHint;
    }
    Index

    Properties

    files: Record<string, string>

    path → owned source the user writes into their project.

    reachableSubAgents: string[]

    reachable sub-agents (each a separate runtime unit; scaffold per provider).

    provider-specific deploy descriptor (Cloudflare → @suluk/deploy's durableObjects; Node → none).