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

Emitted when a skill artifact is verified and installed.

  • Type: event (event)
  • Version: 1.0.0
  • Tags: skills
  • File: packages/libs/contracts-spec/src/control-plane/events/controlPlaneSkillInstalled.event.ts
  • field.key.label
    controlPlane.skill.installed
    field.version.label
    1.0.0
    field.type.label
    event (event)
    field.title.label
    controlPlane.skill.installed
    field.description.label

    Emitted when a skill artifact is verified and installed.

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

    Emitted when a skill artifact is verified and installed.

    Source Definition

    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
    import { defineEvent } from '../../events';
    import {
    	CONTROL_PLANE_DOMAIN,
    	CONTROL_PLANE_OWNERS,
    	CONTROL_PLANE_STABILITY,
    	CONTROL_PLANE_TAGS,
    } from '../constants';
    
    export const ControlPlaneSkillInstalledEvent = defineEvent({
    	meta: {
    		key: 'controlPlane.skill.installed',
    		version: '1.0.0',
    		description: 'Emitted when a skill artifact is verified and installed.',
    		domain: CONTROL_PLANE_DOMAIN,
    		owners: CONTROL_PLANE_OWNERS,
    		tags: [...CONTROL_PLANE_TAGS, 'skills'],
    		stability: CONTROL_PLANE_STABILITY,
    	},
    	payload: ControlPlaneSkillInstalledPayload,
    });