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

List knowledge sources configured for a tenant.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.knowledge
  • Tags: knowledge, sources
  • File: packages/libs/contracts-spec/src/knowledge/operations.ts
  • field.key.label
    knowledge.source.list
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    knowledge.source.list
    field.description.label

    List knowledge sources configured for a tenant.

  • Type: operation (query)
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @platform.knowledge
  • Tags: knowledge, sources
  • File: packages/libs/contracts-spec/src/knowledge/operations.ts
  • field.tags.label
    knowledge,sources
    field.owners.label
    @platform.knowledge
    field.stability.label
    experimental

    List knowledge sources configured for a tenant.

    Goal

    Provide visibility into knowledge ingest configuration and schedules.

    Context

    Used by App Studio and Ops flows to surface knowledge sources and their health.

    Source Definition

    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
    import {
    	type AnyOperationSpec,
    	defineCommand,
    	defineQuery,
    } from '../operations/';
    import type { OperationSpecRegistry } from '../operations/registry';
    
    export const ListKnowledgeSources = defineQuery({
    	meta: {
    		key: 'knowledge.source.list',
    		title: 'List Knowledge Sources',
    		version: '1.0.0',
    		description: 'List knowledge sources configured for a tenant.',
    		goal: 'Provide visibility into knowledge ingest configuration and schedules.',
    		context:
    			'Used by App Studio and Ops flows to surface knowledge sources and their health.',
    		owners: ['@platform.knowledge'],
    		tags: ['knowledge', 'sources'],
    		stability: 'experimental',
    	},
    	io: {
    		input: ListKnowledgeSourcesInput,
    		output: ListKnowledgeSourcesOutput,
    	},
    	policy: {
    		auth: 'admin',
    		policies: [{ key: 'platform.knowledge.read', version: '1.0.0' }],
    	},
    });