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.

agent-console.dashboard

Dashboard overview of AI agents, runs, and tools

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @agent-console-team
  • Tags: dashboard, overview
  • File: packages/examples/agent-console/src/agent/agent.presentation.ts
  • field.key.label
    agent-console.dashboard
    field.version.label
    1.0.0
    field.type.label
    presentation (presentation)
    field.title.label
    agent-console.dashboard
    field.description.label

    Dashboard overview of AI agents, runs, and tools

  • Type: presentation (presentation)
  • Version: 1.0.0
  • Owners: @agent-console-team
  • Tags: dashboard, overview
  • File: packages/examples/agent-console/src/agent/agent.presentation.ts
  • field.tags.label
    dashboard,overview
    field.owners.label
    @agent-console-team
    field.stability.label

    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'] },
    });