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

Knowledge base and content management capability

  • Type: capability (capability)
  • Version: 1.0.0
  • Owners: @platform.content
  • Tags: knowledge, content, data
  • File: packages/libs/contracts-spec/src/knowledge/knowledge.capability.ts
  • field.key.label
    knowledge
    field.version.label
    1.0.0
    field.type.label
    capability (capability)
    field.title.label
    knowledge
    field.description.label

    Knowledge base and content management capability

  • Type: capability (capability)
  • Version: 1.0.0
  • Owners: @platform.content
  • Tags: knowledge, content, data
  • File: packages/libs/contracts-spec/src/knowledge/knowledge.capability.ts
  • field.tags.label
    knowledge,content,data
    field.owners.label
    @platform.content
    field.stability.label

    Knowledge base and content management capability

    Source Definition

    import { defineCapability } from '../capabilities';
    import { StabilityEnum } from '../ownership';
    
    export const KnowledgeCapability = defineCapability({
    	meta: {
    		key: 'knowledge',
    		version: '1.0.0',
    		kind: 'data',
    		stability: StabilityEnum.Experimental,
    		description: 'Knowledge base and content management capability',
    		owners: ['@platform.content'],
    		tags: ['knowledge', 'content', 'data'],
    	},
    });