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