od-expert

od-expert is a skill for Claude Code, Codex from yzhao062/pyod. It costs 0 tokens per session (2,343 once invoked), scanned A, original, BSD-2-Clause.

A skill that helps detect unusual or potentially erroneous data using PyOD, a Python toolkit for finding outliers. It can work with tabular, time-series, graph, text, and image data.

In plain words
What is it for?
Use it to profile data, choose and compare detectors, assess detection quality, refine the analysis, and produce a report.
Why use it?
It guides people who may not know which anomaly-detection method fits their data or how to judge the results.

Skill for Claude CodeCodex

About the project

PyOD is a Python library for detecting unusual or outlying data points across tabular, time-series, graph, text, image, and audio data. It is used by developers and machine-learning practitioners for tasks such as anomaly detection, fraud analysis, and unsupervised data exploration. The catalogue includes a skill for working with the library.

yzhao062/pyod · 9,981 stars · on GitHub

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.

agentmods
npx agentmods add skills/yzhao062/pyod/od_expert
Any agent
npx skills add yzhao062/pyod --skill od_expert
Clone the repo
git clone --depth 1 https://github.com/yzhao062/pyod

Made for: Claude Code, Codex.

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 od-expert

README.md
[![agentmods](https://agentmods.dev/badge/skills/yzhao062/pyod/od_expert.svg)](https://agentmods.dev/skills/yzhao062/pyod/od_expert)
Your own site
<a href="https://agentmods.dev/skills/yzhao062/pyod/od_expert"><img src="https://agentmods.dev/badge/skills/yzhao062/pyod/od_expert.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,343 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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 $0.00000 $0.02343
Opus 5 $0.00000 $0.01171
Sonnet 5 $0.00000 $0.00469
Haiku 4.5 $0.00000 $0.00234

Measured 5d ago against content hash fd46974c9f5e, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

od-expert 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 5d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (__init__.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

pyod/skills/od_expert/SKILL.md · 124 lines

How it starts

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

You are an anomaly detection expert backed by PyOD's ADEngine. Your job is to take a non-expert user's data and turn it into an actionable anomaly detection result with minimal intervention. Drive the full workflow autonomously by default; pause only when the situation is genuinely uncertain (see Adaptive Escalation Triggers below).

When to activate

Fire this skill when:

  • User has data and wants anomaly detection (any modality)
  • User asks "which detector should I use?"
  • User asks about PyOD algorithms, benchmarks, or methods
  • User asks to compare detection methods
  • User wants to analyze, explain, or interpret anomaly detection results
  • User has time series, graph, text, or image data and mentions outliers, anomalies, or unusual patterns
  • User mentions fraud, intrusion, defect detection, novelty, out-of-distribution, or similar

What you have access to

PyOD ships 61 detectors across six modalities (43 tabular, 7 time series, 8 graph, 2 text, 2 image, 1 multimodal, 3 audio). Use the ADEngine session API to drive the full workflow:

from pyod.utils.ad_engine import ADEngine
engine = ADEngine()
state = engine.investigate(X)        # one-shot: profile -> plan -> run -> analyze
# or step-by-step:
state = engine.start(X)              # profile data
state = engine.plan(state)           # select top-N detectors
state = engine.run(state)            # execute, compute consensus
state = engine.analyze(state)        # quality assessment, best detector
state = engine.iterate(state, fb)    # iterate based on feedback
report = engine.report(state)        # final report

state.next_action after each call tells you what to do next: report_to_user, iterate, or confirm_with_user.

For knowledge-only queries (no execution), the legacy methods engine.profile_data, engine.list_detectors, engine.explain_detector, engine.compare_detectors, engine.get_benchmarks all still work.

Master decision tree

Read the full file on GitHub · 124 lines

Files

What ships with it

7 files 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. 5d ago First seen · 124 lines · 0 tokens per session scan A fd46974c9f5e

Subscribe to this mod's changes

od-expert is a skill published in the GitHub repository yzhao062/pyod (9,981 stars, last pushed 17d ago), licensed BSD-2-Clause. It costs nothing until one of its globs matches a file; then it loads 2,343 tokens. 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.

Related

Other skills, from other repositories

scomp-link

End-to-end ML toolkit with 26 CLI commands. Use when training models, tuning hyperparameters, detecting data drift, generating HTML reports with charts, profiling datasets, detecting anomalies, forecasting time series, checking fairness, or serving models as REST APIs. Prefer over raw sklearn when you need automated…

GiacomoSaccaggi/scomp_link · 74 tokens

Sybil & Insider Detector

Advanced detection system identifying Sybil attacks, bot networks, and insider trading using multi-heuristic analysis, machine learning clustering, and transaction graph algorithms.

XSpoonAi/spoon-awesome-skill · 35 tokens

detecting-anomalies-in-industrial-control-systems

This skill covers deploying anomaly detection systems for industrial control environments using machine learning models trained on OT network baselines, physics-based process models, and behavioral analysis of industrial protocol communications. It addresses building normal behavior profiles for SCADA polling…

Njones17/AI-agent-master-cyber-skills-list · 89 tokens

fixing-streamlit-ci

Analyze and fix failed GitHub Actions CI jobs for the current branch/PR. Use when CI checks fail, PR checks show failures, or you need to diagnose lint/type/test errors and verify fixes locally.

streamlit/streamlit · 47 tokens

gradio-themes

Build and customise Gradio themes. Use when creating, editing, or publishing Python-based Gradio themes that control colours, typography, spacing, shadows, and dark mode.

gradio-app/gradio · 39 tokens

hf-gradio

Use Gradio applications via API. Use when the user asks for to generate a prediction from a Gradio app on Hugging Face spaces or public URL. For example, "Generate an image using black-forest-labs/FLUX.2-dev".

gradio-app/gradio · 55 tokens