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 prompt turn within an ACP session.
Goal
Run ACP prompt turns with tool calls and structured outputs.
Context
Used by ACP clients to send messages and receive outputs.
Source Definition
export const AcpPromptTurnCommand = defineCommand({
meta: {
key: 'acp.prompt.turn',
title: 'ACP Prompt Turn',
version: '1.0.0',
description: 'Execute a prompt turn within an ACP session.',
goal: 'Run ACP prompt turns with tool calls and structured outputs.',
context: 'Used by ACP clients to send messages and receive outputs.',
domain: ACP_DOMAIN,
owners: ACP_OWNERS,
tags: [...ACP_TAGS, 'prompt'],
stability: ACP_STABILITY,
docId: [docId('docs.tech.acp.prompt.turn')],
},
capability: {
key: 'acp.transport',
version: '1.0.0',
},
io: {
input: AcpPromptTurnInput,
output: AcpPromptTurnOutput,
},
policy: {
auth: 'user',
pii: [],
},
});