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.

workspace-cli

Core CLI operations for managing ContractSpec workspaces

  • Type: feature
  • Version: 1.0.0
  • Stability: stable
  • Owners: @lssm/core
  • Tags: cli, core
  • File: packages/bundles/workspace/src/contracts/features/cli.feature.ts
  • field.key.label
    workspace-cli
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    workspace-cli
    field.description.label

    Core CLI operations for managing ContractSpec workspaces

  • Type: feature
  • Version: 1.0.0
  • Stability: stable
  • Owners: @lssm/core
  • Tags: cli, core
  • File: packages/bundles/workspace/src/contracts/features/cli.feature.ts
  • field.tags.label
    cli,core
    field.owners.label
    @lssm/core
    field.stability.label
    stable

    Core CLI operations for managing ContractSpec workspaces

    Operations (3)

    `init` (v1.0.0)

    `validate` (v1.0.0)

    `test` (v1.0.0)

    Source Definition

    import { defineFeature } from '@lssm-tech/lib.contracts-spec';
    
    export const cliFeature = defineFeature({
    	meta: {
    		key: 'workspace-cli',
    		title: 'ContractSpec Workspace CLI',
    		description: 'Core CLI operations for managing ContractSpec workspaces',
    		version: '1.0.0',
    		stability: 'stable',
    		tags: ['cli', 'core'],
    		owners: ['@lssm/core'],
    	},
    	operations: [
    		{ key: 'init', version: '1.0.0' },
    		{ key: 'validate', version: '1.0.0' },
    		{ key: 'test', version: '1.0.0' },
    	],
    });