fiftyone-sdk-guidance

fiftyone-sdk-guidance is a skill for Claude Code, Codex from voxel51/fiftyone-skills. It costs 122 tokens per session (3,037 once invoked), scanned A, original, Apache-2.0.

A documentation-search skill for answering questions about the FiftyOne Python SDK, a library for working with computer-vision datasets.

In plain words
What is it for?
It is for finding current FiftyOne documentation and returning runnable Python examples for SDK tasks.
Why use it?
It helps avoid outdated or incorrect code when the SDK's methods, arguments, or data fields have changed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one. Also seen: mentions Claude Code.

Part of the fiftyone plugin — 18 skills, 2 commands, 1 MCP server shipped together

Good fit It is for finding current FiftyOne documentation and returning runnable Python examples for SDK tasks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/voxel51/fiftyone-skills/fiftyone-sdk-guidance
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add voxel51/fiftyone-skills --skill fiftyone-sdk-guidance
Clone the repo
git clone --depth 1 https://github.com/voxel51/fiftyone-skills

Made for: Claude Code, Codex.

Or install fiftyone, the plugin that ships this one along with the rest of its 18 skills, 2 commands, 1 MCP server.

Its marketplace also offers this one on its own, as the plugin fiftyone-sdk-guidance/plugin install fiftyone-sdk-guidance after adding the marketplace above.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for fiftyone-sdk-guidance

README.md
[![agentmods](https://agentmods.dev/badge/skills/voxel51/fiftyone-skills/fiftyone-sdk-guidance/github.svg)](https://agentmods.dev/skills/voxel51/fiftyone-skills/fiftyone-sdk-guidance)
Your own site
<a href="https://agentmods.dev/skills/voxel51/fiftyone-skills/fiftyone-sdk-guidance"><img src="https://agentmods.dev/badge/skills/voxel51/fiftyone-skills/fiftyone-sdk-guidance/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for fiftyone-sdk-guidance

Your own site · 80×15
<a href="https://agentmods.dev/skills/voxel51/fiftyone-skills/fiftyone-sdk-guidance"><img src="https://agentmods.dev/badge/skills/voxel51/fiftyone-skills/fiftyone-sdk-guidance.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 122 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,037 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high YARA Match · line 12
    YARA rule matched a hack tool or exploit indicator (offensive tools, reconnaissance, privilege escalation, or exploit frameworks).
    Fix: Remove offensive tool references and exploit code. Legitimate agent skills should not contain penetration testing tools, exploit frameworks, or reconnaissance utilities.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00122 $0.03037
Opus 5 $0.00061 $0.01519
Sonnet 5 $0.00024 $0.00607
Haiku 4.5 $0.00012 $0.00304

Measured 12d ago against content hash ee9cdc7db943, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

fiftyone-sdk-guidance scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/fiftyone-sdk-guidance/SKILL.md · 267 lines

How it starts

The opening of the file, as written. The whole thing — 267 lines — stays where its author put it; the contents beside it link to each section on GitHub.

FiftyOne SDK Guidance

Answers FiftyOne SDK and docs questions by searching live documentation and returning accurate, runnable Python code. Covers two scenarios: direct SDK questions and fallback guidance when no operator or skill exists for the user's goal.

Key Directives

ALWAYS follow these rules, no exceptions:

1. Always search docs first; never answer from training knowledge alone

search_fifty_one_knowledge_sources(query="How do I <user goal> in the FiftyOne Python SDK?")

FiftyOne's API changes frequently. Training knowledge may be outdated. Call search_fifty_one_knowledge_sources (the fiftyone-docs MCP tool) for every FiftyOne-specific question before answering. If it isn't available, see Directive 6 for the fallback order.

The query must be a complete natural-language sentence, not keywords. This tool does semantic retrieval, not keyword search; its own schema requires "a single, well-formed natural-language query" that "must be a complete sentence." query="filter confidence Python" retrieves worse matches than query="How do I filter detections by confidence threshold in the FiftyOne Python SDK?".

2. Return runnable Python code, not pseudocode, and cite your source

All code examples must be complete enough to run. Include imports. Use real FiftyOne API patterns from the search results, not invented method names. Cite the source_url of the result(s) you drew from so the user can verify against live docs.

3. For fallback scenarios, acknowledge the gap explicitly

If the user is attempting to perform an unsupported or limited feature in the FiftyOne Application or operators, state clearly that this is the case and provide a supported route using the Python SDK where available:

"There's no built-in operator for this; here's how to do it with the Python SDK instead."

4. If one search isn't enough, search again with a refined query

SDK questions may need at least 2–3 searches to find the right method, argument, or pattern. Search until you have a concrete answer or have concrete evidence that the feature is not available or included in the documentation.

Read the full file on GitHub · 267 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 267 lines · 122 tokens per session scan A ee9cdc7db943

Subscribe to this mod's changes

fiftyone-sdk-guidance is a skill published in the GitHub repository voxel51/fiftyone-skills (39 stars, last pushed today), licensed Apache-2.0. It adds 122 tokens to every session and 3,037 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.