ISPO SDK
    Preparing search index...

    Type Alias ProjectCommandCatalogEntry

    Markdown
    ProjectCommandCatalogEntry: ProjectCommandCatalogEntryBase & (
        | {
            agent?: never;
            invocationMode: "iframe-action";
            resultChannels: ProjectCommandIframeActionResultChannel[];
        }
        | {
            agent: AgentId;
            invocationMode: "agent-task";
            resultChannels: ProjectCommandAgentTaskResultChannel[];
        }
    )

    Static, data-free metadata derived from one code-first command export. agent-task is the sole non-iframe declaration mode in this slice: it names the agent spawned into the worker project and returns one durable agent-run; Files/Assets/entities are nested run artifacts, not direct result channels. Runtime jobs and host ops remain intentionally absent.