← 返回
未分类 Key 中文

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...
AI代理异常检测:Z‑score、IQR与流式检测,实时捕获离群点,亚毫秒响应,支持单值或...
whatsonyourmind whatsonyourmind 来源
未分类 clawhub v1.0.0 1 版本 100000 Key: 需要
★ 0
Stars
📥 324
下载
💾 0
安装
1
版本
#latest

概述

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.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-05-07 10:07 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

ai-agent

Agent Browser

rez0
用于 AI 代理的浏览器自动化 CLI。当用户需要与网站交互(包括浏览页面、填写表单、点击按钮、截图等)时使用。
★ 851 📥 334,115
ai-agent

Self-Improving + Proactive Agent

ivangdavila
自我反思+自我批评+自我学习+自组织记忆。智能体评估自身工作、发现错误并持续改进。
★ 1,424 📥 326,585
ai-agent

self-improving agent

pskoett
记录自身发现以实现自我改进的技能
★ 4,135 📥 910,589