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

Verify skill signature and compatibility constraints.

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

    Verify skill signature and compatibility constraints.

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

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