OSS-first docs

These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.

acp.session.resume

Resume an existing ACP session.

  • Type: operation (command)
  • Version: 1.0.0
  • Tags: session
  • File: packages/libs/contracts-spec/src/acp/commands/acpSessionResume.command.ts
  • Continue a previously initialized ACP session with full context.

    field.key.label
    acp.session.resume
    field.version.label
    1.0.0
    field.type.label
    operation (command)
    field.title.label
    acp.session.resume
    field.description.label

    Resume an existing ACP session.

  • Type: operation (command)
  • Version: 1.0.0
  • Tags: session
  • File: packages/libs/contracts-spec/src/acp/commands/acpSessionResume.command.ts
  • Continue a previously initialized ACP session with full context.

    field.tags.label
    session
    field.owners.label
    field.stability.label

    Resume an existing ACP session.

    Goal

    Continue a previously initialized ACP session with full context.

    Context

    Used by ACP clients to resume HTTP streamable sessions.

    Source Definition

    export const AcpSessionResumeCommand = defineCommand({
      meta: {
        key: 'acp.session.resume',
        title: 'ACP Session Resume',
        version: '1.0.0',
        description: 'Resume an existing ACP session.',
        goal: 'Continue a previously initialized ACP session with full context.',
        context: 'Used by ACP clients to resume HTTP streamable sessions.',
        domain: ACP_DOMAIN,
        owners: ACP_OWNERS,
        tags: [...ACP_TAGS, 'session'],
        stability: ACP_STABILITY,
        docId: [docId('docs.tech.acp.session.resume')],
      },
      capability: {
        key: 'acp.transport',
        version: '1.0.0',
      },
      io: {
        input: AcpSessionResumeInput,
        output: AcpSessionResumeOutput,
      },
      policy: {
        auth: 'user',
        pii: [],
      },
    });