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