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.conversations.list

List user conversations.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @ai-team
  • Tags: chat, list
  • File: packages/modules/ai-chat/src/ai-chat.operations.ts
  • field.key.label
    ai-chat.conversations.list
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    ai-chat.conversations.list
    field.description.label

    List user conversations.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @ai-team
  • Tags: chat, list
  • File: packages/modules/ai-chat/src/ai-chat.operations.ts
  • field.tags.label
    chat,list
    field.owners.label
    @ai-team
    field.stability.label
    experimental

    List user conversations.

    Goal

    List conversations

    Context

    Chat History

    Source Definition

    import { defineCommand, defineQuery } from '@lssm-tech/lib.contracts-spec';
    import { defineSchemaModel, ScalarTypeEnum } from '@lssm-tech/lib.schema';
    import {
    	ChatConversationModel,
    	ListConversationsOutputModel,
    	SendMessageInputModel,
    	SendMessageOutputModel,
    } from './schema';
    
    export const ListConversationsContract = defineQuery({
    	meta: {
    		key: 'ai-chat.conversations.list',
    		version: '1.0.0',
    		owners: ['@ai-team'],
    		stability: 'experimental',
    		description: 'List user conversations.',
    		tags: ['chat', 'list'],
    		goal: 'List conversations',
    		context: 'Chat History',
    	},
    	io: {
    		input: defineSchemaModel({ name: 'VoidInput', fields: {} }),
    		output: ListConversationsOutputModel,
    	},
    	policy: { auth: 'user' },
    });