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 of available integrations
Goal
Show users available integrations they can connect to.
Context
The marketplace of integrations within the hub.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { IntegrationModel } from './integration.schema';
export const IntegrationListPresentation = definePresentation({
meta: {
key: 'integration.list',
version: '1.0.0',
title: 'Integration List',
description: 'List of available integrations',
domain: 'integration',
owners: ['@integration-team'],
tags: ['integration', 'list'],
stability: StabilityEnum.Experimental,
goal: 'Show users available integrations they can connect to.',
context: 'The marketplace of integrations within the hub.',
},
source: {
type: 'component',
framework: 'react',
componentKey: 'IntegrationList',
props: IntegrationModel,
},
targets: ['react', 'markdown'],
policy: {
flags: ['integration.enabled'],
},
});