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.
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: [],
},
});