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.

team-hub.dashboard

Main team hub dashboard.

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @team-hub
  • Tags: dashboard, team
  • File: packages/examples/team-hub/src/presentations/team-hub.presentation.ts
  • field.key.label
    team-hub.dashboard
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    team-hub.dashboard
    field.description.label

    Main team hub dashboard.

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @team-hub
  • Tags: dashboard, team
  • File: packages/examples/team-hub/src/presentations/team-hub.presentation.ts
  • field.tags.label
    dashboard,team
    field.owners.label
    @team-hub
    field.stability.label

    Main team hub dashboard.

    Goal

    Central hub for team activity.

    Context

    Landing page for team members.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    
    export const TeamDashboardPresentation = definePresentation({
    	meta: {
    		key: 'team-hub.dashboard',
    		version: '1.0.0',
    		title: 'Team Dashboard',
    		description: 'Main team hub dashboard.',
    		domain: 'team-hub',
    		owners: ['@team-hub'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Central hub for team activity.',
    		context: 'Landing page for team members.',
    		tags: ['dashboard', 'team'],
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'TeamDashboard',
    	},
    	targets: ['react'],
    });