Skip to main content

🛒 Plugin Marketplace

A decentralized marketplace where anyone can publish agents, skills, and prompts — discovered via a simple plugin.json manifest.

📦 How It Works

📝Step 1

Add plugin.json

Drop a plugin.json manifest in your repo root. It describes your agent, its tools, config, and evaluation scripts.

🔗Step 2

Register Your Repo

Open a PR to the FrootAI registry adding your repo URL. The CI validates your manifest automatically.

🚀Step 3

Users Discover & Install

Users browse the marketplace, preview your plugin, and install it with one command or via the VS Code extension.

🧬 Example plugin.json

Every plugin is discovered by its plugin.json. Here's a minimal example:

{
  "name": "my-custom-agent",
  "version": "1.0.0",
  "description": "Summarizes Azure costs and suggests optimizations",
  "author": "your-github-handle",
  "repository": "https://github.com/you/my-custom-agent",
  "type": "agent",
  "tags": ["cost", "azure", "optimization"],
  "entry": "agent.md",
  "mcp_tools": ["get_cost_report", "recommend_savings"],
  "config": "config/openai.json",
  "evaluation": "evaluation/eval.yaml",
  "license": "MIT"
}
FieldRequiredDescription
nameUnique plugin identifier (kebab-case)
versionSemver version string
typeagent | skill | prompt
entryPath to the main file (agent.md, skill.md, etc.)
mcp_toolsArray of MCP tool names this plugin exposes
configPath to default config file
evaluationPath to evaluation / benchmark scripts
tagsDiscovery tags for marketplace search

⭐ Featured Plugins

The 20 built-in FrootAI Solution Plays — each available as a standalone plugin.

🔍
01. Enterprise RAG Pipeline
tag: rag
Built-in
🔬
02. AI-Powered Code Review
tag: code-review
Built-in
🎫
03. Intelligent IT Ticket Resolution
tag: itsm
Built-in
📄
04. Document Intelligence Pipeline
tag: doc-intel
Built-in
🤖
05. Multi-Agent Orchestrator
tag: multi-agent
Built-in
💰
06. AI Cost Optimization Advisor
tag: cost
Built-in
🛡️
07. Security Copilot Integration
tag: security
Built-in
⛏️
08. Knowledge Mining Platform
tag: knowledge
Built-in
🎧
09. Customer Service AI Agent
tag: customer
Built-in
🚀
10. DevOps AI Assistant
tag: devops
Built-in
📊
11. Data Analytics Copilot
tag: analytics
Built-in
📋
12. Compliance & Governance Agent
tag: compliance
Built-in
👥
13. HR Onboarding Assistant
tag: hr
Built-in
📈
14. Sales Intelligence Agent
tag: sales
Built-in
🏭
15. Supply Chain Optimizer
tag: supply-chain
Built-in
🏥
16. Healthcare Data Agent
tag: healthcare
Built-in
🏦
17. Financial Risk Analyzer
tag: finance
Built-in
⚖️
18. Legal Document Reviewer
tag: legal
Built-in
📣
19. Marketing Content Copilot
tag: marketing
Built-in
🔧
20. Infrastructure Drift Detector
tag: infra
Built-in

🚀 Submit Your Plugin

Built a custom agent, skill, or prompt pack? Add a plugin.json to your repo and open a PR to the FrootAI registry.

Submit Plugin →View Ecosystem →