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.
Detailed view of an agent run with steps, logs, and metrics
Goal
Allow users to inspect and debug a specific agent run.
Context
Detailed view of an agent run.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { RunSummaryModel } from './run.schema';
export const RunDetailPresentation = definePresentation({
meta: {
key: 'agent-console.run.detail',
version: '1.0.0',
title: 'Run Details',
description: 'Detailed view of an agent run with steps, logs, and metrics',
goal: 'Allow users to inspect and debug a specific agent run.',
context: 'Detailed view of an agent run.',
domain: 'agent-console',
owners: ['@agent-console-team'],
tags: ['run', 'detail'],
stability: StabilityEnum.Experimental,
},
source: {
type: 'component',
framework: 'react',
componentKey: 'RunDetailView',
},
targets: ['react', 'markdown'],
policy: { flags: ['agent-console.enabled'] },
});