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

Fetch one evaluation and its assertion results.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: evaluation
  • File: packages/libs/contracts-spec/src/harness/queries/harnessEvaluationGet.query.ts
  • field.key.label
    harness.evaluation.get
    field.version.label
    1.0.0
    field.type.label
    operation (query)
    field.title.label
    harness.evaluation.get
    field.description.label

    Fetch one evaluation and its assertion results.

  • Type: operation (query)
  • Version: 1.0.0
  • Tags: evaluation
  • File: packages/libs/contracts-spec/src/harness/queries/harnessEvaluationGet.query.ts
  • field.tags.label
    evaluation
    field.owners.label
    field.stability.label

    Fetch one evaluation and its assertion results.

    Goal

    Expose benchmark and regression outcomes with evidence pointers.

    Context

    Used by evaluation dashboards and automation.

    Source Definition

    import { ScalarTypeEnum, SchemaModel } from '@lssm-tech/lib.schema';
    import { defineQuery } from '../../operations';
    import {
    	HARNESS_DOMAIN,
    	HARNESS_OWNERS,
    	HARNESS_STABILITY,
    	HARNESS_TAGS,
    } from '../constants';
    import { HarnessEvaluationModel } from '../models';
    
    export const HarnessEvaluationGetQuery = defineQuery({
    	meta: {
    		key: 'harness.evaluation.get',
    		title: 'Get Harness Evaluation',
    		version: '1.0.0',
    		description: 'Fetch one evaluation and its assertion results.',
    		goal: 'Expose benchmark and regression outcomes with evidence pointers.',
    		context: 'Used by evaluation dashboards and automation.',
    		domain: HARNESS_DOMAIN,
    		owners: HARNESS_OWNERS,
    		tags: [...HARNESS_TAGS, 'evaluation'],
    		stability: HARNESS_STABILITY,
    	},
    	capability: { key: 'harness.evaluation', version: '1.0.0' },
    	io: {
    		input: HarnessEvaluationGetInput,
    		output: HarnessEvaluationGetOutput,
    	},
    	policy: {
    		auth: 'user',
    		pii: [],
    	},
    });