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.
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',
],
});