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.

agent.approval.requested

Emitted when an approval is required for an agent action.

  • Type: event (event)
  • Version: 1.0.0
  • Tags: approval
  • File: packages/libs/contracts-spec/src/agent/events/agentApprovalRequested.event.ts
  • field.key.label
    agent.approval.requested
    field.version.label
    1.0.0
    field.type.label
    event (event)
    field.title.label
    agent.approval.requested
    field.description.label

    Emitted when an approval is required for an agent action.

  • Type: event (event)
  • Version: 1.0.0
  • Tags: approval
  • File: packages/libs/contracts-spec/src/agent/events/agentApprovalRequested.event.ts
  • field.tags.label
    approval
    field.owners.label
    field.stability.label

    Emitted when an approval is required for an agent action.

    Source Definition

    export const AgentApprovalRequestedEvent = defineEvent({
      meta: {
        key: 'agent.approval.requested',
        version: '1.0.0',
        description: 'Emitted when an approval is required for an agent action.',
        domain: AGENT_DOMAIN,
        owners: AGENT_OWNERS,
        tags: [...AGENT_TAGS, 'approval'],
        stability: AGENT_STABILITY,
        docId: [docId('docs.tech.agent.approval.requested')],
      },
      capability: {
        key: 'agent.execution',
        version: '1.0.0',
      },
      pii: ['reason'],
      payload: AgentApprovalRequestedPayload,
    });