FrootAI — AmpliFAI your AI Ecosystem Get Started

FAI Plugin Marketplace

77 plugins · 1008 bundled items · Install with one command

npx frootai install <plugin-name>ornpx frootai listorBrowse in VS Code
77 plugins · Page 1 of 4
agentic-rag
Autonomous RAG where the AI agent controls retrieval — decides when to search, which sources to query, iterates on results.
agentic-ragautonomous-retrievalmulti-sourceazure-ai-searchopenai+1
Plays: 21-agentic-rag
5 items
ai-evaluation-suite
AI Evaluation Suite — groundedness, coherence, relevance, fluency, and safety scoring. Build evaluation pipelines with Azure AI Evaluation SDK.
evaluationgroundednesscoherencerelevancesafety+4
14 items
ai-landing-zone
Azure AI Landing Zone — subscription vending, network topology, RBAC, policy enforcement.
azurelanding-zonebiceprbacpolicy+4
Plays: 02-ai-landing-zone
17 items
ai-landing-zone-advanced
Advanced AI Landing Zone — multi-region deployment, private endpoints, Azure Firewall, DDoS protection, sovereign cloud patterns.
landing-zonemulti-regionprivate-endpointsfirewallcompliance+3
Plays: 11-ai-landing-zone-advanced
20 items
ai-observability
AI Observability — distributed tracing for LLM calls, token usage dashboards, latency monitoring, evaluation score tracking.
observabilitymonitoringtracingopentelemetryazure-monitor+3
Plays: 17-ai-observability
17 items
ai-search-portal
AI Search Portal — full-text and vector hybrid search with semantic ranking, faceted navigation, autocomplete.
ai-searchvector-searchsemantic-rankinghybrid-searchfaceted-navigation+2
Plays: 09-ai-search-portal
16 items
anomaly-detection
Anomaly Detection — real-time and batch anomaly detection for time-series, metrics, and log data. Uses Azure AI Anomaly Detector, custom ML models.
anomaly-detectiontime-seriesmetricsalertingevent-hubs+3
Plays: 20-anomaly-detection
16 items
architecture-patterns
Architecture Patterns — cloud design patterns, domain-driven design, microservices, event sourcing, CQRS.
architecturedesign-patternsdddmicroservicescqrs+3
16 items
azure-ai-services
Azure AI Services — OpenAI, AI Search, Document Intelligence, Language, Speech, Vision.
azureai-servicesopenaiai-searchdocument-intelligence+4
19 items
azure-containers
Azure Containers — AKS, Container Apps, Container Registry, and Dockerized deployment patterns. GPU workloads, KEDA autoscaling.
azureakscontainer-appsacrdocker+4
15 items
azure-data-services
Azure Data Services — Cosmos DB, SQL Database, Blob Storage, Data Explorer, and Redis Cache patterns. Schema design, partition strategies.
azurecosmos-dbsql-databasestoragedata-explorer+3
18 items
azure-identity-security
Azure Identity & Security — Managed Identity, Key Vault, RBAC, Conditional Access.
azureidentitysecuritykey-vaultmanaged-identity+3
23 items
azure-infrastructure
Azure Infrastructure — landing zones, hub-spoke networking, private endpoints, Azure Policy, RBAC.
azureinfrastructurelanding-zonebicepnetworking+4
19 items
azure-messaging
Azure Messaging — Service Bus, Event Hubs, and Event Grid patterns for async communication, event sourcing.
azureservice-busevent-hubsevent-gridmessaging+3
11 items
azure-monitoring
Azure Monitoring — Application Insights, Log Analytics, KQL queries, alert rules, workbooks.
azuremonitoringapplication-insightslog-analyticskql+3
11 items
azure-serverless
Azure Serverless — Functions, Logic Apps, Event Grid, and Durable Functions patterns. Event-driven architectures with consumption-based scaling.
azureserverlessfunctionslogic-appsevent-grid+3
11 items
browser-automation
AI-driven web task execution using Playwright MCP and GPT-4o Vision — navigate websites, extract data, fill forms.
browser-automationplaywrightweb-scrapingvisionmcp+1
Plays: 23-browser-automation-agent
4 items
call-center-voice-ai
Call Center Voice AI — real-time speech-to-text, intent classification, sentiment analysis.
voice-aicall-centerspeech-to-textsentimentazure-communication-services+2
Plays: 04-call-center-voice-ai
16 items
cicd-automation
CI/CD Automation — GitHub Actions, Azure DevOps pipelines, build matrices, deployment gates.
cicdgithub-actionsazure-devopspipelinesdeployment+2
13 items
code-quality
Code Quality — automated code review, refactoring suggestions, dead code removal, complexity analysis.
code-qualitycode-reviewrefactoringdead-codecomplexity+2
17 items

Publish Your Own Plugin

1

Add plugin.json

Drop a manifest in your repo describing agents, skills, hooks, and evaluation.

2

Register via PR

Open a PR to the FAI plugins/ folder. CI validates schema + naming.

3

Discoverable

Your plugin appears in marketplace, CLI, and MCP search instantly.

Example plugin.json

{
  "name": "my-custom-plugin",
  "description": "What this plugin provides",
  "version": "1.0.0",
  "author": { "name": "Your Name" },
  "repository": "https://github.com/you/your-repo",
  "license": "MIT",
  "keywords": ["your", "tags"],
  "agents": ["../../agents/my-agent.agent.md"],
  "instructions": ["../../instructions/my-instruction.instructions.md"],
  "skills": ["../../skills/my-skill/"],
  "hooks": ["../../hooks/my-hook/"],
  "plays": ["01-enterprise-rag"]
}