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.detail

Detailed view of an AI agent with configuration, tools, and recent runs

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

    Detailed view of an AI agent with configuration, tools, and recent runs

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

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