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.
Dashboard overview of AI agents, runs, and tools
Goal
Provide a high-level overview of the AI platform health and usage.
Context
Root dashboard of the Agent Console.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { AgentSummaryModel } from './agent.schema';
export const AgentConsoleDashboardPresentation = definePresentation({
meta: {
key: 'agent-console.dashboard',
version: '1.0.0',
title: 'Agent Console Dashboard',
description: 'Dashboard overview of AI agents, runs, and tools',
goal: 'Provide a high-level overview of the AI platform health and usage.',
context: 'Root dashboard of the Agent Console.',
domain: 'agent-console',
owners: ['@agent-console-team'],
tags: ['dashboard', 'overview'],
stability: StabilityEnum.Experimental,
},
source: {
type: 'component',
framework: 'react',
componentKey: 'AgentConsoleDashboard',
},
targets: ['react', 'markdown'],
policy: { flags: ['agent-console.enabled'] },
});