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.
List installed and available skill artifacts.
Goal
Provide a governed inventory of skill availability and state.
Context
Used by operators and marketplace tooling to inspect active skill sets.
Source Definition
export const ControlPlaneSkillListQuery = defineQuery({
meta: {
key: 'controlPlane.skill.list',
title: 'List Skills',
version: '1.0.0',
description: 'List installed and available skill artifacts.',
goal: 'Provide a governed inventory of skill availability and state.',
context:
'Used by operators and marketplace tooling to inspect active skill sets.',
domain: CONTROL_PLANE_DOMAIN,
owners: CONTROL_PLANE_OWNERS,
tags: [...CONTROL_PLANE_TAGS, 'skills'],
stability: CONTROL_PLANE_STABILITY,
},
capability: {
key: 'control-plane.skill-registry',
version: '1.0.0',
},
io: {
input: ControlPlaneSkillListInput,
output: ControlPlaneSkillListOutput,
},
policy: {
auth: 'admin',
pii: [],
},
});