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.pack.describe

Describe a context pack and its sources.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: pack, describe
  • File: packages/libs/contracts-spec/src/context/queries/contextPackDescribe.query.ts
  • field.key.label
    context.pack.describe
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    context.pack.describe
    field.description.label

    Describe a context pack and its sources.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: pack, describe
  • File: packages/libs/contracts-spec/src/context/queries/contextPackDescribe.query.ts
  • field.tags.label
    pack,describe
    field.owners.label
    field.stability.label

    Describe a context pack and its sources.

    Goal

    Provide a canonical view of context pack composition.

    Context

    Used by Studio and agents to understand what a pack will include before snapshotting.

    Source Definition

    export const ContextPackDescribeQuery = defineQuery({
      meta: {
        key: 'context.pack.describe',
        title: 'Describe Context Pack',
        version: '1.0.0',
        description: 'Describe a context pack and its sources.',
        goal: 'Provide a canonical view of context pack composition.',
        context:
          'Used by Studio and agents to understand what a pack will include before snapshotting.',
        domain: CONTEXT_DOMAIN,
        owners: CONTEXT_OWNERS,
        tags: [...CONTEXT_TAGS, 'pack', 'describe'],
        stability: CONTEXT_STABILITY,
        docId: [docId('docs.tech.context.pack.describe')],
      },
      capability: {
        key: 'context.system',
        version: '1.0.0',
      },
      io: {
        input: ContextPackDescribeInput,
        output: ContextPackDescribeOutput,
      },
      policy: {
        auth: 'user',
        pii: [],
      },
    });