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.

platform.context

Snapshot, search, and describe context packs for AI-driven workflows

  • Type: feature
  • Version: 1.0.0
  • File: packages/libs/contracts-spec/src/context/context.feature.ts
  • context.pack.snapshot (v1.0.0)
  • field.key.label
    platform.context
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    platform.context
    field.description.label

    Snapshot, search, and describe context packs for AI-driven workflows

  • Type: feature
  • Version: 1.0.0
  • File: packages/libs/contracts-spec/src/context/context.feature.ts
  • context.pack.snapshot (v1.0.0)
  • field.tags.label
    field.owners.label
    field.stability.label

    Snapshot, search, and describe context packs for AI-driven workflows

    Operations (3)

    `context.pack.snapshot` (v1.0.0)

    `context.pack.describe` (v1.0.0)

    `context.pack.search` (v1.0.0)

    Events (1)

    `context.snapshot.created` (v1.0.0)

    Presentations (1)

    `context.snapshot.summary` (v1.0.0)

    Source Definition

    import { defineFeature } from '../features';
    import {
    	CONTEXT_DOMAIN,
    	CONTEXT_OWNERS,
    	CONTEXT_STABILITY,
    	CONTEXT_TAGS,
    } from './constants';
    
    export const ContextFeature = defineFeature({
    	meta: {
    		key: 'platform.context',
    		version: '1.0.0',
    		title: 'Context System',
    		description:
    			'Snapshot, search, and describe context packs for AI-driven workflows',
    		domain: CONTEXT_DOMAIN,
    		owners: CONTEXT_OWNERS,
    		tags: [...CONTEXT_TAGS],
    		stability: CONTEXT_STABILITY,
    	},
    
    	operations: [
    		{ key: 'context.pack.snapshot', version: '1.0.0' },
    		{ key: 'context.pack.describe', version: '1.0.0' },
    		{ key: 'context.pack.search', version: '1.0.0' },
    	],
    
    	events: [{ key: 'context.snapshot.created', version: '1.0.0' }],
    
    	presentations: [{ key: 'context.snapshot.summary', version: '1.0.0' }],
    
    	capabilities: {
    		provides: [{ key: 'context.system', version: '1.0.0' }],
    	},
    
    	dataViews: [{ key: 'context.snapshot.index', version: '1.0.0' }],
    
    	forms: [{ key: 'context.pack.search.form', version: '1.0.0' }],
    });