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.
List view of AI tools with category, status, and version info
Goal
Provide an overview of all available tools for agents.
Context
Tool management dashboard.
Source Definition
import {
definePresentation,
StabilityEnum,
} from '@lssm-tech/lib.contracts-spec';
import { ToolSummaryModel } from './tool.schema';
export const ToolListPresentation = definePresentation({
meta: {
key: 'agent-console.tool.list',
version: '1.0.0',
title: 'Tool List',
description:
'List view of AI tools with category, status, and version info',
goal: 'Provide an overview of all available tools for agents.',
context: 'Tool management dashboard.',
domain: 'agent-console',
owners: ['@agent-console-team'],
tags: ['tool', 'list', 'dashboard'],
stability: StabilityEnum.Experimental,
},
source: {
type: 'component',
framework: 'react',
componentKey: 'ToolListView',
props: ToolSummaryModel,
},
targets: ['react', 'markdown', 'application/json'],
policy: { flags: ['agent-console.enabled'] },
});