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.

ai-chat-assistant

Focused assistant example with chat UX and search-backed retrieval.

  • Type: feature
  • Version: 1.0.0
  • Stability: beta
  • Owners: @platform.core
  • Tags: ai, chat, assistant, example
  • File: packages/examples/ai-chat-assistant/src/ai-chat-assistant.feature.ts
  • field.key.label
    ai-chat-assistant
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    ai-chat-assistant
    field.description.label

    Focused assistant example with chat UX and search-backed retrieval.

  • Type: feature
  • Version: 1.0.0
  • Stability: beta
  • Owners: @platform.core
  • Tags: ai, chat, assistant, example
  • File: packages/examples/ai-chat-assistant/src/ai-chat-assistant.feature.ts
  • field.tags.label
    ai,chat,assistant,example
    field.owners.label
    @platform.core
    field.stability.label
    beta

    Focused assistant example with chat UX and search-backed retrieval.

    Operations (1)

    `assistant.search` (v1.0.0)

    Source Definition

    import { defineFeature } from '@lssm-tech/lib.contracts-spec';
    
    export const AiChatAssistantFeature = defineFeature({
    	meta: {
    		key: 'ai-chat-assistant',
    		version: '1.0.0',
    		title: 'AI Chat Assistant',
    		description:
    			'Focused assistant example with chat UX and search-backed retrieval.',
    		domain: 'example',
    		owners: ['@platform.core'],
    		tags: ['ai', 'chat', 'assistant', 'example'],
    		stability: 'beta',
    	},
    
    	operations: [{ key: 'assistant.search', version: '1.0.0' }],
    });