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.list

List installed and available skill artifacts.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: skills
  • File: packages/libs/contracts-spec/src/control-plane/queries/controlPlaneSkillList.query.ts
  • field.key.label
    controlPlane.skill.list
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    controlPlane.skill.list
    field.description.label

    List installed and available skill artifacts.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: skills
  • File: packages/libs/contracts-spec/src/control-plane/queries/controlPlaneSkillList.query.ts
  • field.tags.label
    skills
    field.owners.label
    field.stability.label

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