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.

context.snapshot.summary

Summary layout for context snapshots.

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Tags: snapshot, summary
  • File: packages/libs/contracts-spec/src/context/presentations/contextSnapshot.presentation.ts
  • field.key.label
    context.snapshot.summary
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    context.snapshot.summary
    field.description.label

    Summary layout for context snapshots.

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Tags: snapshot, summary
  • File: packages/libs/contracts-spec/src/context/presentations/contextSnapshot.presentation.ts
  • field.tags.label
    snapshot,summary
    field.owners.label
    field.stability.label

    Summary layout for context snapshots.

    Goal

    Explain snapshot composition, provenance, and usage.

    Context

    Used by Studio and audit surfaces to present snapshot details.

    Source Definition

    import { docRef } from '../../docs/registry';
    import type { DocBlock } from '../../docs/types';
    import { definePresentation } from '../../presentations';
    import {
    	CONTEXT_DOMAIN,
    	CONTEXT_OWNERS,
    	CONTEXT_STABILITY,
    	CONTEXT_TAGS,
    } from '../constants';
    
    export const ContextSnapshotSummaryPresentation = definePresentation({
    	meta: {
    		key: 'context.snapshot.summary',
    		title: 'Context Snapshot Summary',
    		version: '1.0.0',
    		description: 'Summary layout for context snapshots.',
    		goal: 'Explain snapshot composition, provenance, and usage.',
    		context: 'Used by Studio and audit surfaces to present snapshot details.',
    		domain: CONTEXT_DOMAIN,
    		owners: CONTEXT_OWNERS,
    		tags: [...CONTEXT_TAGS, 'snapshot', 'summary'],
    		stability: CONTEXT_STABILITY,
    		docId: [docRef(ContextSnapshotSummaryDocBlock.id)],
    	},
    	capability: {
    		key: 'context.system',
    		version: '1.0.0',
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'contextSnapshotSummary',
    	},
    	targets: ['react', 'markdown'],
    });