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.
Verify skill signature and compatibility constraints.
Goal
Make skill trust checks explicit and queryable.
Context
Used by install pipelines and operators before enabling skill artifacts.
Source Definition
export const ControlPlaneSkillVerifyQuery = defineQuery({
meta: {
key: 'controlPlane.skill.verify',
title: 'Verify Skill Artifact',
version: '1.0.0',
description: 'Verify skill signature and compatibility constraints.',
goal: 'Make skill trust checks explicit and queryable.',
context:
'Used by install pipelines and operators before enabling skill artifacts.',
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: ControlPlaneSkillVerifyInput,
output: ControlPlaneSkillVerifyOutput,
},
policy: {
auth: 'admin',
pii: [],
},
});