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.
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' }],
});