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.
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,
});