MATIH Platform is in active MVP development. Documentation reflects current implementation status.
15. Workbench Architecture
Marketplace

Marketplace

The Marketplace at frontend/agentic-workbench/src/components/Marketplace/ provides a catalog of pre-built agents, tools, and templates that can be installed and customized.


Components

ComponentFilePurpose
MarketplaceHomeMarketplaceHome.tsxMain marketplace browse view
ItemCardItemCard.tsxMarketplace item card
ItemDetailItemDetail.tsxItem detail with install

Types

// frontend/agentic-workbench/src/components/Marketplace/types.ts
interface MarketplaceItem {
  id: string;
  name: string;
  description: string;
  type: 'agent' | 'tool' | 'template' | 'workflow';
  category: string;
  author: string;
  version: string;
  downloads: number;
  rating: number;
  tags: string[];
  icon?: string;
  screenshots?: string[];
}

MarketplaceHome

Features:

  • Category browsing (agents, tools, templates, workflows)
  • Search with tag filtering
  • Featured items section
  • Installation with dependency resolution
  • Rating and review system