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.run.audit

Audit layout for agent runs and artifacts.

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Tags: audit
  • File: packages/libs/contracts-spec/src/agent/presentations/agentRunAudit.presentation.ts
  • field.key.label
    agent.run.audit
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    agent.run.audit
    field.description.label

    Audit layout for agent runs and artifacts.

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Tags: audit
  • File: packages/libs/contracts-spec/src/agent/presentations/agentRunAudit.presentation.ts
  • field.tags.label
    audit
    field.owners.label
    field.stability.label

    Audit layout for agent runs and artifacts.

    Goal

    Explain run provenance, tools, approvals, and outputs.

    Context

    Used by Studio to inspect agent run audit trails.

    Source Definition

    import { docId } from '../../docs/registry';
    import type { DocBlock } from '../../docs/types';
    import { definePresentation } from '../../presentations';
    import {
    	AGENT_DOMAIN,
    	AGENT_OWNERS,
    	AGENT_STABILITY,
    	AGENT_TAGS,
    } from '../constants';
    
    export const AgentRunAuditPresentation = definePresentation({
    	meta: {
    		key: 'agent.run.audit',
    		title: 'Agent Run Audit',
    		version: '1.0.0',
    		description: 'Audit layout for agent runs and artifacts.',
    		goal: 'Explain run provenance, tools, approvals, and outputs.',
    		context: 'Used by Studio to inspect agent run audit trails.',
    		domain: AGENT_DOMAIN,
    		owners: AGENT_OWNERS,
    		tags: [...AGENT_TAGS, 'audit'],
    		stability: AGENT_STABILITY,
    		docId: [docId('docs.tech.agent.run.audit')],
    	},
    	capability: {
    		key: 'agent.execution',
    		version: '1.0.0',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'agentRunAudit',
    	},
    	targets: ['react', 'markdown'],
    });