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.

control-plane.skill-registry

Signed skill lifecycle and compatibility governance.

  • Type: capability (capability)
  • Version: 1.0.0
  • Tags: skills
  • File: packages/libs/contracts-spec/src/control-plane/capabilities/controlPlaneSkillRegistry.capability.ts
  • field.key.label
    control-plane.skill-registry
    field.version.label
    1.0.0
    field.type.label
    capability (capability)
    field.title.label
    control-plane.skill-registry
    field.description.label

    Signed skill lifecycle and compatibility governance.

  • Type: capability (capability)
  • Version: 1.0.0
  • Tags: skills
  • File: packages/libs/contracts-spec/src/control-plane/capabilities/controlPlaneSkillRegistry.capability.ts
  • field.tags.label
    skills
    field.owners.label
    field.stability.label

    Signed skill lifecycle and compatibility governance.

    Source Definition

    export const ControlPlaneSkillRegistryCapability = defineCapability({
      meta: {
        key: 'control-plane.skill-registry',
        version: '1.0.0',
        kind: 'integration',
        title: 'Control Plane Skill Registry',
        description: 'Signed skill lifecycle and compatibility governance.',
        domain: CONTROL_PLANE_DOMAIN,
        owners: CONTROL_PLANE_OWNERS,
        tags: [...CONTROL_PLANE_TAGS, 'skills'],
        stability: CONTROL_PLANE_STABILITY,
      },
      provides: [
        {
          surface: 'operation',
          key: 'controlPlane.skill.install',
          version: '1.0.0',
          description: 'Install signed skill artifacts.',
        },
        {
          surface: 'operation',
          key: 'controlPlane.skill.disable',
          version: '1.0.0',
          description: 'Disable installed skill artifacts.',
        },
        {
          surface: 'operation',
          key: 'controlPlane.skill.list',
          version: '1.0.0',
          description: 'List installed skill artifacts.',
        },
        {
          surface: 'operation',
          key: 'controlPlane.skill.verify',
          version: '1.0.0',
          description: 'Verify skill signatures and constraints.',
        },
        {
          surface: 'event',
          key: 'controlPlane.skill.installed',
          version: '1.0.0',
          description: 'Skill install succeeded.',
        },
        {
          surface: 'event',
          key: 'controlPlane.skill.rejected',
          version: '1.0.0',
          description: 'Skill install rejected.',
        },
      ],
    });