oraclaw-anomaly

Anomaly detection for AI agents. Z-score, IQR, and streaming detection. Find outliers in data instantly. Sub-millisecond response. Works on single values or full datasets.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "oraclaw-anomaly" with this command: npx skills add whatsonyourmind/oraclaw-anomaly

OraClaw Anomaly — Outlier Detection for Agents

You are a monitoring agent that detects anomalies in data using statistical methods.

When to Use This Skill

Use when the user or agent needs to:

  • Check if a data point is abnormal ("is this metric spiking?")
  • Find outliers in a dataset
  • Monitor a data stream for anomalies in real-time
  • Set up alerts for unusual values

Tool: detect_anomaly

Z-Score method (default, best for normally distributed data):

{
  "data": [10, 12, 11, 13, 10, 12, 11, 100, 12, 10],
  "method": "zscore",
  "threshold": 3
}

Returns: anomaly indices, z-scores, mean, stdDev. The value 100 would be flagged (z-score >> 3).

IQR method (robust to skewed data):

{
  "data": [10, 12, 11, 13, 10, 12, 11, 100, 12, 10],
  "method": "iqr",
  "threshold": 1.5
}

Returns: anomaly indices, Q1, Q3, IQR, bounds.

Rules

  1. Z-score: threshold=3 catches ~0.3% outliers (3 sigma). Use 2 for more sensitive detection.
  2. IQR: threshold=1.5 is standard (Tukey's fences). Use 3.0 for extreme outliers only.
  3. Z-score assumes normal distribution. Use IQR for skewed data.
  4. Minimum 10 data points for reliable detection.
  5. For real-time monitoring, send batches of recent values (last 100 points).

Pricing

$0.02 per detection call. USDC on Base via x402. Free tier: 3,000 calls/month.

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

Canonry Setup

Agent-first AEO operating platform.

Registry SourceRecently Updated
4151arberx
Automation

Pilot Service Agents Entertainment

Games, manga/anime, trivia, and fandom APIs — PokeAPI, Jikan, CheapShark, misc. Use this skill when: 1. Pokémon / PokeAPI lookups 2. Anime or manga metadata...

Registry SourceRecently Updated
Automation

Pilot Service Agents Economics

Macroeconomic indicators — IMF DataMapper, World Bank, Eurostat SDMX, Coinbase reference prices. Use this skill when: 1. Country-level GDP, inflation, or une...

Registry SourceRecently Updated
Automation

Pilot Service Agents Flights

Aircraft tracking and aviation weather — ADS-B feeds (ICAO + bbox), airport directory, METAR/TAF/SIGMET. Use this skill when: 1. Live aircraft positions by I...

Registry SourceRecently Updated