fiftyone

claude-plugins-official

OtherClaude Codeby anthropics

Summary

Build high-quality datasets and computer vision models. Visualize datasets, analyze models, find duplicates, run inference, evaluate predictions, and develop custom plugins.

Install to Claude Code

/plugin install fiftyone@claude-plugins-official

Run in Claude Code. Add the marketplace first with /plugin marketplace add anthropics/claude-plugins-official if you haven't already.

README.md

FiftyOne Skills

<div align="center"> <p align="center">

<!-- prettier-ignore --> <img src="https://user-images.githubusercontent.com/25985824/106288517-2422e000-6216-11eb-871d-26ad2e7b1e59.png" height="55px"> &nbsp; <img src="https://user-images.githubusercontent.com/25985824/106288518-24bb7680-6216-11eb-8f10-60052c519586.png" height="50px">

</p>

Expert workflows for computer vision powered by AI assistants

![License](LICENSE) ![FiftyOne](https://github.com/voxel51/fiftyone) ![MCP Server](https://github.com/voxel51/fiftyone-mcp-server) ![Validate Skills](https://github.com/voxel51/fiftyone-skills/actions/workflows/validate.yml)

![Discord](https://discord.gg/fiftyone-community) ![Hugging Face](https://huggingface.co/Voxel51) ![Voxel51 Blog](https://voxel51.com/blog) ![Newsletter](https://share.hsforms.com/1zpJ60ggaQtOoVeBqIZdaaA2ykyk) ![LinkedIn](https://www.linkedin.com/company/voxel51) ![Twitter](https://x.com/voxel51) ![Medium](https://medium.com/voxel51)

Documentation ยท MCP Server ยท FiftyOne Plugins ยท Discord

</div>

What are Skills?

Skills are packaged workflows that teach AI assistants to perform complex computer vision tasks autonomously. Combined with the FiftyOne MCP Server, you can find duplicates, run inference, and explore datasets using natural language.

"Find and remove duplicate images from my dataset"
"Import this COCO dataset and run object detection"
"Visualize my embeddings and identify outliers"

Skills bridge the gap between natural language and FiftyOne's 80+ operators, providing step-by-step guidance that AI assistants follow to complete complex workflows.

Available Skills

| Skill | Description | MCP | |-------|-------------|-----| | ๐Ÿ“ฅ Dataset Import | Universal import for all media types, label formats, multimodal groups, and Hugging Face Hub | Yes | | ๐Ÿ“ค Dataset Export | Export datasets to COCO, YOLO, VOC, CVAT, CSV, Hugging Face Hub, and more | Yes | | ๐Ÿ” Find Duplicates | Find and remove duplicate images using brain similarity | Yes | | ๐Ÿค– Dataset Inference | Run Zoo models for detection, classification, segmentation, embeddings | Yes | | ๐Ÿ“ˆ Model Evaluation | Compute mAP, precision, recall, confusion matrices, analyze TP/FP/FN | Yes | | ๐Ÿ“Š Embeddings Visualization | Visualize datasets in 2D, find clusters, identify outliers | Yes | | ๐Ÿ”Œ Develop Plugin | Create custom FiftyOne plugins (operators and panels) | โ€” | | ๐ŸŽจ VOODO Design | Build UIs with VOODO React components and design tokens | โ€” | | ๐Ÿ“ Code Style | Write Python code following FiftyOne's official conventions | โ€” | | ๐Ÿ““ Create Notebook | Create Jupyter notebooks: getting-started guides, tutorials, recipes, ML pipelines | โ€” | | ๐Ÿท๏ธ Issue Triage | Triage GitHub issues: validate status, categorize, generate responses | โ€” | | ๐Ÿงน Dataset Curation | End-to-end curation: quality checks, annotation audit, duplicates, class distribution, splits | Yes | | ๐Ÿ”ง Troubleshoot | Fix common issues: dataset persistence, App connection, MongoDB errors, codecs, performance | โ€” | | ๐Ÿ›ก๏ธ Eval Plugin | Evaluate plugins for quality, security, and agent-readiness. Produces a structured report | โ€” | | ๐Ÿงฉ Zoo Remote Model | Build remote model zoo integrations that work with register_zoo_model_source and dataset.apply_model | โ€” | | ๐Ÿ”Œ Generate Data Lens Connector | Generate a Data Lens connector from an external database schema (PostgreSQL, BigQuery, MySQL, etc.) | โ€” |

Quick Start

Step 1: Install Skills

Universal Installer (Recommended):

curl -sL skil.sh | sh -s -- voxel51/fiftyone-skills

Interactive prompts let you select skills, agents, and install scope (project or global).

Supported agents: Claude Code, Cursor, Codex, OpenCode, GitHub Copilot, Amp, Antigravity, Roo Code, Kilo Code, Goose

Claude Code:

# Register the skills marketplace
/plugin marketplace add voxel51/fiftyone-skills

# Install a skill
/plugin install fiftyone-find-duplicates@fiftyone-skills

Gemini CLI:

gemini extensions install https://github.com/voxel51/fiftyone-skills.git --consent

Step 2: Use It

"Write a FiftyOne plugin that displays model confidence"
"Write Python code following FiftyOne conventions"

Your AI assistant will automatically load the skill instructions and execute the workflow.

Step 3: Set Up MCP Server (Optional)

Skills marked with MCP in the table above require the FiftyOne MCP Server to interact with datasets and run operators.

pip install fiftyone-mcp-server

> โš ๏ธ Important: Make sure to use the same Python environment where you installed the MCP server when configuring your AI tool. If you installed it in a virtual environment or conda environment, you must activate that environment or specify the full path to the executable.

Then configure your AI tool:

<details> <summary><b>Claude Code</b> (Recommended)</summary>

claude mcp add fiftyone -- fiftyone-mcp

</details>

<details> <summary><b>Claude Desktop</b></summary>

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "fiftyone": {
      "command": "fiftyone-mcp"
    }
  }
}

</details>

<details> <summary><b>Cursor</b></summary>

![Install in Cursor](cursor://anysphere.cursor-deeplink/mcp/install?name=fiftyone&config=eyJjb21tYW5kIjoiZmlmdHlvbmUtbWNwIn0)

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "fiftyone": {
      "command": "fiftyone-mcp"
    }
  }
}

</details>

<details> <summary><b>VSCode</b></summary>

![Install in VS Code](https://insiders.vscode.dev/redirect/mcp/install?name=fiftyone&config=%7B%22command%22%3A%22fiftyone-mcp%22%7D)

Add to .vscode/mcp.json:

{
  "servers": {
    "fiftyone": {
      "command": "fiftyone-mcp"
    }
  }
}

</details>

Once configured, you can use MCP-dependent skills:

"Find and remove duplicate images from my dataset"
"Import this COCO dataset and run object detection"

Skill Structure

Each skill follows the Agent Skills specification:

skills/
โ””โ”€โ”€ fiftyone-find-duplicates/
    โ””โ”€โ”€ SKILL.md                     # Instructions for AI

SKILL.md format:

---
name: skill-name
description: When to use this skill
---

# Overview
What this skill does

# Prerequisites
Required setup

# Key Directives
ALWAYS/NEVER rules for AI

# Workflow
Step-by-step instructions

# Troubleshooting
Common errors and solutions

Contributing

We welcome contributions! Whether you want to add a new skill, improve an existing one, or help with integrations and tooling โ€” there's a place for you here.

See CONTRIBUTING.md for the full guide, including skill structure requirements, the quality bar, and how to test your skill before submitting.

Looking for ideas? Browse issues labeled help wanted or good first issue, or check the project milestones for planned work.

Feedback

Help us improve FiftyOne Skills!

Just ask your AI assistant:

"Help me submit feedback about [your issue]"

The agent will automatically gather session context, environment info, and can submit directly via gh CLI or generate content to paste at Submit Feedback

Resources

| Resource | Description | |----------|-------------| | FiftyOne Docs | Official documentation | | FiftyOne MCP Server | MCP server for AI integration | | FiftyOne Plugins | Official plugin collection | | Agent Skills Spec | Skills format specification | | PyPI Package | MCP server on PyPI | | Discord Community | Get help and share ideas |

๐Ÿงก Community

Join the FiftyOne community to get help, share your skills, and connect with other users:

---

<div align="center">

Copyright 2017-2026, Voxel51, Inc. ยท Apache 2.0 License

</div>

Related plugins

Browse all โ†’

ai-plugins

claude-plugins-official

Set up endorctl and use Endor Labs to scan, prioritize, and fix security risks across your software supply chain

Open plugin โ†’

aikido

claude-plugins-official

Aikido Security scanning for Claude Code โ€” SAST, secrets, and IaC vulnerability detection powered by the Aikido MCP server.

Open plugin โ†’

atlan

claude-plugins-official

Atlan data catalog plugin for Claude Code. Search, explore, govern, and manage your data assets through natural language. Powered by the Atlan MCP server with semantic search, lineage traversal, glossary management, data quality rules, and more.

Open plugin โ†’

brightdata-plugin

claude-plugins-official

Web scraping, Google search, structured data extraction, and MCP server integration powered by Bright Data. Includes 7 skills: scrape any webpage as markdown (with bot detection/CAPTCHA bypass), search Google with structured JSON results, extract data from 40+ websites (Amazon, LinkedIn, Instagram, TikTok, YouTube, and more), orchestrate Bright Data's 60+ MCP tools, built-in best practices for Web Unlocker, SERP API, Web Scraper API, and Browser API, Python SDK best practices for the brightda...

Open plugin โ†’

cloudinary

claude-plugins-official

Use Cloudinary directly in Claude. Manage assets, apply transformations, optimize media, and more through natural conversation.

Open plugin โ†’

data-engineering

claude-plugins-official

Data engineering plugin - warehouse exploration, pipeline authoring, Airflow integration

Open plugin โ†’