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.init

Initialize a new ACP session.

  • Type: operation (command)
  • Version: 1.0.0
  • Tags: session
  • File: packages/libs/contracts-spec/src/acp/commands/acpSessionInit.command.ts
  • Start a governed ACP session with configured tools and policies.

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

    Initialize a new ACP session.

  • Type: operation (command)
  • Version: 1.0.0
  • Tags: session
  • File: packages/libs/contracts-spec/src/acp/commands/acpSessionInit.command.ts
  • Start a governed ACP session with configured tools and policies.

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

    Initialize a new ACP session.

    Goal

    Start a governed ACP session with configured tools and policies.

    Context

    Used by ACP clients to start a new session using HTTP streamable transport.

    Source Definition

    export const AcpSessionInitCommand = defineCommand({
      meta: {
        key: 'acp.session.init',
        title: 'ACP Session Init',
        version: '1.0.0',
        description: 'Initialize a new ACP session.',
        goal: 'Start a governed ACP session with configured tools and policies.',
        context:
          'Used by ACP clients to start a new session using HTTP streamable transport.',
        domain: ACP_DOMAIN,
        owners: ACP_OWNERS,
        tags: [...ACP_TAGS, 'session'],
        stability: ACP_STABILITY,
        docId: [docId('docs.tech.acp.session.init')],
      },
      capability: {
        key: 'acp.transport',
        version: '1.0.0',
      },
      io: {
        input: AcpSessionInitInput,
        output: AcpSessionInitOutput,
      },
      policy: {
        auth: 'user',
        pii: [],
      },
    });