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 view of agent runs with status, tokens, and duration info
Goal
Provide an overview of agent execution history and performance.
Context
Run history dashboard.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { RunSummaryModel } from './run.schema';
export const RunListPresentation = definePresentation({
meta: {
key: 'agent-console.run.list',
version: '1.0.0',
title: 'Run List',
description:
'List view of agent runs with status, tokens, and duration info',
goal: 'Provide an overview of agent execution history and performance.',
context: 'Run history dashboard.',
domain: 'agent-console',
owners: ['@agent-console-team'],
tags: ['run', 'list', 'dashboard'],
stability: StabilityEnum.Experimental,
},
source: {
type: 'component',
framework: 'react',
componentKey: 'RunListView',
props: RunSummaryModel,
},
targets: ['react', 'markdown', 'application/json'],
policy: { flags: ['agent-console.enabled'] },
});