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.
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' }],
});