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

Detailed view of an AI tool with configuration and test panel

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

    Detailed view of an AI tool with configuration and test panel

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

    Detailed view of an AI tool with configuration and test panel

    Goal

    Allow users to inspect and test a specific tool.

    Context

    Detailed view of a tool.

    Source Definition

    import {
    	definePresentation,
    	StabilityEnum,
    } from '@lssm-tech/lib.contracts-spec';
    import { ToolSummaryModel } from './tool.schema';
    
    export const ToolDetailPresentation = definePresentation({
    	meta: {
    		key: 'agent-console.tool.detail',
    		version: '1.0.0',
    		title: 'Tool Details',
    		description:
    			'Detailed view of an AI tool with configuration and test panel',
    		goal: 'Allow users to inspect and test a specific tool.',
    		context: 'Detailed view of a tool.',
    		domain: 'agent-console',
    		owners: ['@agent-console-team'],
    		tags: ['tool', 'detail'],
    		stability: StabilityEnum.Experimental,
    	},
    	source: {
    		type: 'component',
    		framework: 'react',
    		componentKey: 'ToolDetailView',
    	},
    	targets: ['react', 'markdown'],
    	policy: { flags: ['agent-console.enabled'] },
    });