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.

harness.run.audit

Audit view for harness runs, steps, evidence, and assertions.

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

    Audit view for harness runs, steps, evidence, and assertions.

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

    Audit view for harness runs, steps, evidence, and assertions.

    Goal

    Explain what happened, why it happened, and what proves it.

    Context

    Used by review surfaces to inspect bounded harness execution.

    Source Definition

    import { definePresentation } from '../../presentations';
    import {
    	HARNESS_DOMAIN,
    	HARNESS_OWNERS,
    	HARNESS_STABILITY,
    	HARNESS_TAGS,
    } from '../constants';
    
    export const HarnessRunAuditPresentation = definePresentation({
    	meta: {
    		key: 'harness.run.audit',
    		title: 'Harness Run Audit',
    		version: '1.0.0',
    		description:
    			'Audit view for harness runs, steps, evidence, and assertions.',
    		goal: 'Explain what happened, why it happened, and what proves it.',
    		context: 'Used by review surfaces to inspect bounded harness execution.',
    		domain: HARNESS_DOMAIN,
    		owners: HARNESS_OWNERS,
    		tags: [...HARNESS_TAGS, 'audit'],
    		stability: HARNESS_STABILITY,
    	},
    	capability: {
    		key: 'harness.evidence',
    		version: '1.0.0',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'harnessRunAudit',
    	},
    	targets: ['react', 'markdown'],
    });