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

List view of AI tools with category, status, and version info

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

    List view of AI tools with category, status, and version info

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

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