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.terminal.exec

Execute a terminal command within an ACP session.

  • Type: operation (command)
  • Version: 1.0.0
  • Tags: terminal
  • File: packages/libs/contracts-spec/src/acp/commands/acpTerminalExec.command.ts
  • field.key.label
    acp.terminal.exec
    field.version.label
    1.0.0
    field.type.label
    operation (command)
    field.title.label
    acp.terminal.exec
    field.description.label

    Execute a terminal command within an ACP session.

  • Type: operation (command)
  • Version: 1.0.0
  • Tags: terminal
  • File: packages/libs/contracts-spec/src/acp/commands/acpTerminalExec.command.ts
  • field.tags.label
    terminal
    field.owners.label
    field.stability.label

    Execute a terminal command within an ACP session.

    Goal

    Expose terminal execution with governance and auditing.

    Context

    Used by ACP clients when terminal access is granted.

    Source Definition

    export const AcpTerminalExecCommand = defineCommand({
      meta: {
        key: 'acp.terminal.exec',
        title: 'ACP Terminal Exec',
        version: '1.0.0',
        description: 'Execute a terminal command within an ACP session.',
        goal: 'Expose terminal execution with governance and auditing.',
        context: 'Used by ACP clients when terminal access is granted.',
        domain: ACP_DOMAIN,
        owners: ACP_OWNERS,
        tags: [...ACP_TAGS, 'terminal'],
        stability: ACP_STABILITY,
        docId: [docId('docs.tech.acp.terminal.exec')],
      },
      capability: {
        key: 'acp.transport',
        version: '1.0.0',
      },
      io: {
        input: AcpTerminalExecInput,
        output: AcpTerminalExecOutput,
      },
      policy: {
        auth: 'admin',
        pii: [],
      },
    });