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