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.ritual.calendar

Calendar of team rituals and events.

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

    Calendar of team rituals and events.

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

    Calendar of team rituals and events.

    Goal

    Schedule and view team events.

    Context

    Calendar view.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    
    export const RitualCalendarPresentation = definePresentation({
    	meta: {
    		key: 'team-hub.ritual.calendar',
    		version: '1.0.0',
    		title: 'Ritual Calendar',
    		description: 'Calendar of team rituals and events.',
    		domain: 'team-hub',
    		owners: ['@team-hub'],
    		stability: StabilityEnum.Experimental,
    		goal: 'Schedule and view team events.',
    		context: 'Calendar view.',
    		tags: ['ritual', 'calendar'],
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'RitualCalendar',
    	},
    	targets: ['react'],
    });