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

Detailed view of an agent run with steps, logs, and metrics

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

    Detailed view of an agent run with steps, logs, and metrics

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

    Detailed view of an agent run with steps, logs, and metrics

    Goal

    Allow users to inspect and debug a specific agent run.

    Context

    Detailed view of an agent run.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { RunSummaryModel } from './run.schema';
    
    export const RunDetailPresentation = definePresentation({
    	meta: {
    		key: 'agent-console.run.detail',
    		version: '1.0.0',
    		title: 'Run Details',
    		description: 'Detailed view of an agent run with steps, logs, and metrics',
    		goal: 'Allow users to inspect and debug a specific agent run.',
    		context: 'Detailed view of an agent run.',
    		domain: 'agent-console',
    		owners: ['@agent-console-team'],
    		tags: ['run', 'detail'],
    		stability: StabilityEnum.Experimental,
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'RunDetailView',
    	},
    	targets: ['react', 'markdown'],
    	policy: { flags: ['agent-console.enabled'] },
    });