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.

controlPlane.skill.disable

Disable an installed skill in the control plane registry.

  • Type: operation (command)
  • Version: 1.0.0
  • Tags: skills, governance
  • File: packages/libs/contracts-spec/src/control-plane/commands/controlPlaneSkillDisable.command.ts
  • field.key.label
    controlPlane.skill.disable
    field.version.label
    1.0.0
    field.type.label
    operation (command)
    field.title.label
    controlPlane.skill.disable
    field.description.label

    Disable an installed skill in the control plane registry.

  • Type: operation (command)
  • Version: 1.0.0
  • Tags: skills, governance
  • File: packages/libs/contracts-spec/src/control-plane/commands/controlPlaneSkillDisable.command.ts
  • field.tags.label
    skills,governance
    field.owners.label
    field.stability.label

    Disable an installed skill in the control plane registry.

    Goal

    Allow operators to revoke risky or obsolete skills quickly.

    Context

    Used for incident response, governance enforcement, and lifecycle cleanup.

    Source Definition

    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
    import { defineCommand } from '../../operations';
    import {
    	CONTROL_PLANE_DOMAIN,
    	CONTROL_PLANE_OWNERS,
    	CONTROL_PLANE_STABILITY,
    	CONTROL_PLANE_TAGS,
    } from '../constants';
    
    export const ControlPlaneSkillDisableCommand = defineCommand({
    	meta: {
    		key: 'controlPlane.skill.disable',
    		title: 'Disable Skill Artifact',
    		version: '1.0.0',
    		description: 'Disable an installed skill in the control plane registry.',
    		goal: 'Allow operators to revoke risky or obsolete skills quickly.',
    		context:
    			'Used for incident response, governance enforcement, and lifecycle cleanup.',
    		domain: CONTROL_PLANE_DOMAIN,
    		owners: CONTROL_PLANE_OWNERS,
    		tags: [...CONTROL_PLANE_TAGS, 'skills', 'governance'],
    		stability: CONTROL_PLANE_STABILITY,
    	},
    	capability: {
    		key: 'control-plane.skill-registry',
    		version: '1.0.0',
    	},
    	io: {
    		input: ControlPlaneSkillDisableInput,
    		output: ControlPlaneSkillDisableOutput,
    	},
    	policy: {
    		auth: 'admin',
    		pii: [],
    	},
    });