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