Member Junction
    Preparing search index...

    Type Alias WorkflowAgentWriter

    Persists the Flow agent behind a workflow's graph.

    Injected rather than imported so this package does not depend on the agent-manager. The host supplies an implementation backed by AgentSpecSync, which is the one place that writes an agent.

    type WorkflowAgentWriter = {
        PersistFlowAgent(
            spec: WorkflowSpec,
            context: WorkflowSyncContext,
        ): Promise<string>;
    }
    Index

    Methods