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.

control-plane.audit

Trace, policy explanation, and replay-grade observability.

  • Type: capability (capability)
  • Version: 1.0.0
  • Tags: audit
  • File: packages/libs/contracts-spec/src/control-plane/capabilities/controlPlaneAudit.capability.ts
  • field.key.label
    control-plane.audit
    field.version.label
    1.0.0
    field.type.label
    capability (capability)
    field.title.label
    control-plane.audit
    field.description.label

    Trace, policy explanation, and replay-grade observability.

  • Type: capability (capability)
  • Version: 1.0.0
  • Tags: audit
  • File: packages/libs/contracts-spec/src/control-plane/capabilities/controlPlaneAudit.capability.ts
  • field.tags.label
    audit
    field.owners.label
    field.stability.label

    Trace, policy explanation, and replay-grade observability.

    Source Definition

    export const ControlPlaneAuditCapability = defineCapability({
      meta: {
        key: 'control-plane.audit',
        version: '1.0.0',
        kind: 'data',
        title: 'Control Plane Audit',
        description: 'Trace, policy explanation, and replay-grade observability.',
        domain: CONTROL_PLANE_DOMAIN,
        owners: CONTROL_PLANE_OWNERS,
        tags: [...CONTROL_PLANE_TAGS, 'audit'],
        stability: CONTROL_PLANE_STABILITY,
      },
      requires: [
        {
          key: 'control-plane.core',
          version: '1.0.0',
          reason: 'Audit surfaces depend on core execution lifecycle records.',
        },
      ],
      provides: [
        {
          surface: 'operation',
          key: 'controlPlane.plan.verify',
          version: '1.0.0',
          description: 'Verify plan policy/risk before execution.',
        },
        {
          surface: 'operation',
          key: 'controlPlane.trace.get',
          version: '1.0.0',
          description: 'Get trace entries for replay and investigations.',
        },
        {
          surface: 'operation',
          key: 'controlPlane.policy.explain',
          version: '1.0.0',
          description: 'Explain policy verdict rationale.',
        },
        {
          surface: 'event',
          key: 'controlPlane.execution.failed',
          version: '1.0.0',
          description: 'Execution failure event for incident tracking.',
        },
        {
          surface: 'event',
          key: 'controlPlane.execution.completed',
          version: '1.0.0',
          description: 'Execution completion event for reporting.',
        },
      ],
    });