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 AI agents with status, model provider, and version info
Goal
Provide an overview of all agents in an organization.
Context
Main landing page for agent management.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { AgentSummaryModel } from './agent.schema';
export const AgentListPresentation = definePresentation({
meta: {
key: 'agent-console.agent.viewList',
version: '1.0.0',
title: 'Agent List',
description:
'List view of AI agents with status, model provider, and version info',
goal: 'Provide an overview of all agents in an organization.',
context: 'Main landing page for agent management.',
domain: 'agent-console',
owners: ['@agent-console-team'],
tags: ['agent', 'list', 'dashboard'],
stability: StabilityEnum.Experimental,
},
source: {
type: 'component',
framework: 'react',
componentKey: 'AgentListView',
props: AgentSummaryModel,
},
targets: ['react', 'markdown', 'application/json'],
policy: { flags: ['agent-console.enabled'] },
});