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.
List normalized evidence artifacts for one run.
Goal
Expose proof of what happened during execution.
Context
Used in audit and evaluation surfaces.
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 { EvidenceArtifactModel } from '../models';
export const HarnessEvidenceListQuery = defineQuery({
meta: {
key: 'harness.evidence.list',
title: 'List Harness Evidence',
version: '1.0.0',
description: 'List normalized evidence artifacts for one run.',
goal: 'Expose proof of what happened during execution.',
context: 'Used in audit and evaluation surfaces.',
domain: HARNESS_DOMAIN,
owners: HARNESS_OWNERS,
tags: [...HARNESS_TAGS, 'evidence', 'list'],
stability: HARNESS_STABILITY,
},
capability: { key: 'harness.evidence', version: '1.0.0' },
io: {
input: HarnessEvidenceListInput,
output: HarnessEvidenceListOutput,
},
policy: {
auth: 'user',
pii: [],
},
});