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 tool calls within an ACP session.
Goal
Run tool calls with safe governance and telemetry.
Context
Used by ACP clients when the agent requests tool execution.
Source Definition
export const AcpToolCallsCommand = defineCommand({
meta: {
key: 'acp.tool.calls',
title: 'ACP Tool Calls',
version: '1.0.0',
description: 'Execute tool calls within an ACP session.',
goal: 'Run tool calls with safe governance and telemetry.',
context: 'Used by ACP clients when the agent requests tool execution.',
domain: ACP_DOMAIN,
owners: ACP_OWNERS,
tags: [...ACP_TAGS, 'tools'],
stability: ACP_STABILITY,
docId: [docId('docs.tech.acp.tool.calls')],
},
capability: {
key: 'acp.transport',
version: '1.0.0',
},
io: {
input: AcpToolCallsInput,
output: AcpToolCallsOutput,
},
policy: {
auth: 'user',
pii: [],
},
});