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.

contractspec.docs

Comprehensive documentation system for ContractSpec

  • Type: feature
  • Version: 1.0.0
  • Stability: stable
  • Owners: @platform.docs
  • Tags: documentation, guides, api-reference
  • File: /Users/tboutron/Documents/clients/lssm/monorepo-lssm/packages/contractspec/packages/bundles/library/src/features/docs.feature.ts
  • field.key.label
    contractspec.docs
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    contractspec.docs
    field.description.label

    Comprehensive documentation system for ContractSpec

  • Type: feature
  • Version: 1.0.0
  • Stability: stable
  • Owners: @platform.docs
  • Tags: documentation, guides, api-reference
  • File: /Users/tboutron/Documents/clients/lssm/monorepo-lssm/packages/contractspec/packages/bundles/library/src/features/docs.feature.ts
  • field.tags.label
    documentation,guides,api-reference
    field.owners.label
    @platform.docs
    field.stability.label
    stable

    Comprehensive documentation system for ContractSpec

    Source Definition

    import type { FeatureModuleSpec } from '@lssm-tech/lib.contracts-spec/features';
    
    /**
     * Documentation feature for ContractSpec.
     * Provides comprehensive documentation system including search and navigation.
     */
    export const DocsFeature: FeatureModuleSpec = {
      meta: {
        key: 'contractspec.docs',
        version: '1.0.0',
        title: 'Documentation',
        description: 'Comprehensive documentation system for ContractSpec',
        domain: 'platform',
        owners: ['@platform.docs'],
        tags: ['documentation', 'guides', 'api-reference'],
        stability: 'stable',
      },
      operations: [
        { key: 'docs_search', version: '1.0.0' },
        { key: 'docs.navigate', version: '1.0.0' },
      ],
      events: [
        { key: 'docs.page_viewed', version: '1.0.0' },
        { key: 'docs.search_performed', version: '1.0.0' },
      ],
      presentations: [
        { key: 'docs.landing', version: '1.0.0' },
        { key: 'docs.getting-started', version: '1.0.0' },
        { key: 'docs.architecture', version: '1.0.0' },
      ],
      capabilities: {
        provides: [{ key: 'contracts.docs', version: '1.0.0' }],
        requires: [],
      },
    };