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