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.

calendar-google

Google Calendar integration with OAuth, event listing, and sync

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @examples
  • Tags: calendar, google, integration, oauth
  • field.key.label
    calendar-google
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    calendar-google
    field.description.label

    Google Calendar integration with OAuth, event listing, and sync

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @examples
  • Tags: calendar, google, integration, oauth
  • field.tags.label
    calendar,google,integration,oauth
    field.owners.label
    @examples
    field.stability.label
    experimental

    Google Calendar integration with OAuth, event listing, and sync

    Source Definition

    import { defineFeature } from '@lssm-tech/lib.contracts-spec';
    
    export const CalendarGoogleFeature = defineFeature({
    	meta: {
    		key: 'calendar-google',
    		version: '1.0.0',
    		title: 'Google Calendar Integration',
    		description:
    			'Google Calendar integration with OAuth, event listing, and sync',
    		domain: 'integration',
    		owners: ['@examples'],
    		tags: ['calendar', 'google', 'integration', 'oauth'],
    		stability: 'experimental',
    	},
    
    	integrations: [{ key: 'calendar-google.integration.gcal', version: '1.0.0' }],
    
    	docs: [
    		'docs.examples.calendar-google',
    		'docs.examples.calendar-google.usage',
    	],
    });