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