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
| Component | File | Purpose |
|---|---|---|
MarketplaceHome | MarketplaceHome.tsx | Main marketplace browse view |
ItemCard | ItemCard.tsx | Marketplace item card |
ItemDetail | ItemDetail.tsx | Item 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