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.

knowledge-canon

Curated product knowledge space with blueprint, tenant config, and FAQ workflow

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @examples
  • Tags: knowledge, canon, faq
  • field.key.label
    knowledge-canon
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    knowledge-canon
    field.description.label

    Curated product knowledge space with blueprint, tenant config, and FAQ workflow

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @examples
  • Tags: knowledge, canon, faq
  • field.tags.label
    knowledge,canon,faq
    field.owners.label
    @examples
    field.stability.label
    experimental

    Curated product knowledge space with blueprint, tenant config, and FAQ workflow

    Source Definition

    import { defineFeature } from '@lssm-tech/lib.contracts-spec';
    
    export const KnowledgeCanonFeature = defineFeature({
    	meta: {
    		key: 'knowledge-canon',
    		version: '1.0.0',
    		title: 'Product Canon Knowledge Space',
    		description:
    			'Curated product knowledge space with blueprint, tenant config, and FAQ workflow',
    		domain: 'knowledge',
    		owners: ['@examples'],
    		tags: ['knowledge', 'canon', 'faq'],
    		stability: 'experimental',
    	},
    
    	knowledge: [{ key: 'knowledge.product-canon', version: '1.0.0' }],
    
    	workflows: [{ key: 'artisan.knowledge.answerFaq', version: '1.0.0' }],
    
    	docs: [
    		'docs.examples.knowledge-canon',
    		'docs.examples.knowledge-canon.usage',
    	],
    });