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.

harness.evaluation.completed

Emitted when a harness evaluation completes.

  • Type: event (event)
  • Version: 1.0.0
  • Tags: evaluation, completed
  • File: packages/libs/contracts-spec/src/harness/events/harnessEvaluationCompleted.event.ts
  • field.key.label
    harness.evaluation.completed
    field.version.label
    1.0.0
    field.type.label
    event (event)
    field.title.label
    harness.evaluation.completed
    field.description.label

    Emitted when a harness evaluation completes.

  • Type: event (event)
  • Version: 1.0.0
  • Tags: evaluation, completed
  • File: packages/libs/contracts-spec/src/harness/events/harnessEvaluationCompleted.event.ts
  • field.tags.label
    evaluation,completed
    field.owners.label
    field.stability.label

    Emitted when a harness evaluation completes.

    Source Definition

    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
    import { defineEvent } from '../../events';
    import {
    	HARNESS_DOMAIN,
    	HARNESS_OWNERS,
    	HARNESS_STABILITY,
    	HARNESS_TAGS,
    } from '../constants';
    
    export const HarnessEvaluationCompletedEvent = defineEvent({
    	meta: {
    		key: 'harness.evaluation.completed',
    		version: '1.0.0',
    		description: 'Emitted when a harness evaluation completes.',
    		domain: HARNESS_DOMAIN,
    		owners: HARNESS_OWNERS,
    		tags: [...HARNESS_TAGS, 'evaluation', 'completed'],
    		stability: HARNESS_STABILITY,
    	},
    	payload: HarnessEvaluationCompletedPayload,
    });