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.agent.viewList

List view of AI agents with status, model provider, and version info

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

    List view of AI agents with status, model provider, and version info

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

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