ContractSpec docs

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.

project-management-sync

Create work items in Linear, Jira, and Notion from contract definitions

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @examples
  • Tags: project-management, sync, linear, jira, notion
  • field.key.label
    project-management-sync
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    project-management-sync
    field.description.label

    Create work items in Linear, Jira, and Notion from contract definitions

  • Type: feature
  • Version: 1.0.0
  • Stability: experimental
  • Owners: @examples
  • Tags: project-management, sync, linear, jira, notion
  • field.tags.label
    project-management,sync,linear,jira,notion
    field.owners.label
    @examples
    field.stability.label
    experimental

    Create work items in Linear, Jira, and Notion from contract definitions

    Source Definition

    import { defineFeature } from '@lssm-tech/lib.contracts-spec';
    
    export const ProjectManagementSyncFeature = defineFeature({
    	meta: {
    		key: 'project-management-sync',
    		version: '1.0.0',
    		title: 'Project Management Sync',
    		description:
    			'Create work items in Linear, Jira, and Notion from contract definitions',
    		domain: 'integration',
    		owners: ['@examples'],
    		tags: ['project-management', 'sync', 'linear', 'jira', 'notion'],
    		stability: 'experimental',
    	},
    
    	integrations: [
    		{ key: 'project-management-sync.integration.linear', version: '1.0.0' },
    		{ key: 'project-management-sync.integration.jira', version: '1.0.0' },
    		{ key: 'project-management-sync.integration.notion', version: '1.0.0' },
    	],
    
    	docs: [
    		'docs.examples.project-management-sync',
    		'docs.examples.project-management-sync.usage',
    	],
    });