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.

docs.generated

Emitted when documentation artifacts are generated.

  • Type: event (event)
  • Version: 1.0.0
  • Tags: generation
  • File: packages/libs/contracts-spec/src/docs/events/docsGenerated.event.ts
  • ```typescript

    field.key.label
    docs.generated
    field.version.label
    1.0.0
    field.type.label
    event (event)
    field.title.label
    docs.generated
    field.description.label

    Emitted when documentation artifacts are generated.

  • Type: event (event)
  • Version: 1.0.0
  • Tags: generation
  • File: packages/libs/contracts-spec/src/docs/events/docsGenerated.event.ts
  • ```typescript

    field.tags.label
    generation
    field.owners.label
    field.stability.label

    Emitted when documentation artifacts are generated.

    Source Definition

    export const DocsGeneratedEvent = defineEvent({
      meta: {
        key: 'docs.generated',
        version: '1.0.0',
        description: 'Emitted when documentation artifacts are generated.',
        domain: DOCS_DOMAIN,
        owners: DOCS_OWNERS,
        tags: [...DOCS_TAGS, 'generation'],
        stability: DOCS_STABILITY,
        docId: [docId('docs.tech.docs-generator')],
      },
      payload: DocsGeneratedPayload,
    });