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 packs, snapshots, and discovery surfaces.
Source Definition
import { defineCapability } from '../../capabilities';
import { docRef } from '../../docs/registry';
import type { DocBlock } from '../../docs/types';
import {
CONTEXT_DOMAIN,
CONTEXT_OWNERS,
CONTEXT_STABILITY,
CONTEXT_TAGS,
} from '../constants';
export const ContextSystemCapability = defineCapability({
meta: {
key: 'context.system',
version: '1.0.0',
kind: 'data',
title: 'Context System',
description: 'Context packs, snapshots, and discovery surfaces.',
domain: CONTEXT_DOMAIN,
owners: CONTEXT_OWNERS,
tags: [...CONTEXT_TAGS, 'system'],
stability: CONTEXT_STABILITY,
docId: [docRef(ContextSystemDocBlock.id)],
},
provides: [
{
surface: 'operation',
key: 'context.pack.describe',
version: '1.0.0',
description: 'Describe a context pack and its sources.',
},
{
surface: 'operation',
key: 'context.pack.search',
version: '1.0.0',
description: 'Search and filter context packs and snapshots.',
},
{
surface: 'operation',
key: 'context.pack.snapshot',
version: '1.0.0',
description: 'Create an immutable context snapshot.',
},
{
surface: 'event',
key: 'context.snapshot.created',
version: '1.0.0',
description: 'Snapshot created event.',
},
{
surface: 'presentation',
key: 'context.snapshot.summary',
version: '1.0.0',
description: 'Snapshot summary presentation.',
},
],
});