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.
Feed of team announcements.
Goal
Broadcast important team news.
Context
Dashboard widget or dedicated page.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
export const AnnouncementFeedPresentation = definePresentation({
meta: {
key: 'team-hub.announcement.feed',
version: '1.0.0',
title: 'Announcement Feed',
description: 'Feed of team announcements.',
domain: 'team-hub',
owners: ['@team-hub'],
stability: StabilityEnum.Experimental,
goal: 'Broadcast important team news.',
context: 'Dashboard widget or dedicated page.',
tags: ['announcement', 'feed'],
},
source: {
type: 'component',
framework: 'react',
componentKey: 'AnnouncementFeed',
},
targets: ['react'],
});