bi-adaptive-threshold

bi-adaptive-threshold is a skill for Claude Code, Codex from agentscope-ai/QwenPaw-Data. It costs 72 tokens per session (1,278 once invoked), scanned A, original, Apache-2.0.

A tool for calculating a change threshold from the natural variation in historical time-series data. A threshold is the boundary above which a change is treated as notable.

In plain words
What is it for?
Use it to derive daily or weekly thresholds for anomaly detection or for judging whether an event had a significant effect.
Why use it?
It reduces the need to guess a fixed limit and helps avoid thresholds that are too sensitive or too slow to react.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to derive daily or weekly thresholds for anomaly detection or for judging whether an event had a significant effect.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agentscope-ai/qwenpaw-data/bi-adaptive-threshold
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 agentscope-ai/QwenPaw-Data --skill bi-adaptive-threshold
Clone the repo
git clone --depth 1 https://github.com/agentscope-ai/QwenPaw-Data

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 bi-adaptive-threshold

README.md
[![agentmods](https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw-data/bi-adaptive-threshold/github.svg)](https://agentmods.dev/skills/agentscope-ai/qwenpaw-data/bi-adaptive-threshold)
Your own site
<a href="https://agentmods.dev/skills/agentscope-ai/qwenpaw-data/bi-adaptive-threshold"><img src="https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw-data/bi-adaptive-threshold/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 bi-adaptive-threshold

Your own site · 80×15
<a href="https://agentmods.dev/skills/agentscope-ai/qwenpaw-data/bi-adaptive-threshold"><img src="https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw-data/bi-adaptive-threshold.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 72 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,278 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 pass 7 Sept 2026
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.00072 $0.01278
Opus 5 $0.00036 $0.00639
Sonnet 5 $0.00014 $0.00256
Haiku 4.5 $0.00007 $0.00128

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

Security

Grade A, and why

bi-adaptive-threshold 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 11d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/adaptive_threshold.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.

packages/qwenpaw-data-skills/skills/atomic/bi-adaptive-threshold/SKILL.md · 106 lines

How it starts

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

bi-adaptive-threshold

基于标准差衡量数据的自然波动幅度,从数值序列中自适应计算阈值,常见场景:

  • 异常检测:确定指标波动率的异常阈值
  • 影响度判定:确定事件影响度的显著性阈值
  • 其他需要从数据分布中推导合理边界的场景

适用范围:仅适用于日粒度和周粒度的阈值计算。

执行步骤

1:数据准备

包含时间序列数据的 CSV 文件,至少包含以下两列:

说明 示例
日期列 时间标识 日期
数值列 需要计算阈值的目标数值序列 访问用户数

示例:

日期,访问用户数
2025-01-01,10000
2025-01-02,10500
2025-01-03,9800

若上游步骤已产出可用数据文件则直接使用,否则自行取数。默认取近 90 天数据,若可用数据不足 90 天则取全部。

2:执行阈值计算

按以下优先级选择计算方式,命中即停:

方式一:使用脚本

路径: scripts/adaptive_threshold.py

原理:

  1. 检查数据量是否充足(即:数据行数 < 最少数据行数),不足则直接返回 默认阈值
  2. 计算变化率序列,用 IQR 围栏法(四分位距 × IQR 倍数)剔除极端异常值
  3. 通过 ruptures 库检测结构性变化点,将数据划分为若干分段
  4. 取最后一段平稳区间:
    • 若最后一段不足 最少数据行数,说明稳定数据不够,可能处于业务初期,返回 默认阈值
    • 计算该段数据标准差,若标准差 ≥ 阈值上限,说明当前仍处于剧烈波动期,返回 默认阈值
  5. 最终阈值 = 标准差 × 标准差倍数,并限制在 [阈值下限, 阈值上限] 范围内,避免阈值过于敏感或过于迟钝

若脚本适用于当前场景,按以下方式调用:

参数

参数 说明 默认值
--input-file 输入数据文件路径 (必填)
--date-col 日期列名 (必填)
--metric-col 数值列名 (必填)
--default-threshold 默认阈值,按指标类型区分,详见下方说明 (必填)
--min-periods 最少数据行数 30
--iqr-multiplier IQR 倍数 1.5
--std-multiplier 标准差倍数 3.0
--threshold-min 阈值下限 0.05
--threshold-max 阈值上限 0.20
--ruptures-method ruptures 库的变化点检测算法(pelt/binseg/window) pelt
--ruptures-penalty ruptures 库的变化点检测的惩罚系数,值越大分段越少 None (自动计算)

Read the full file on GitHub · 106 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. 11d ago First seen · 106 lines · 72 tokens per session scan A 7eca85c5d124

Subscribe to this mod's changes

bi-adaptive-threshold is a skill published in the GitHub repository agentscope-ai/QwenPaw-Data (72 stars, last pushed today), licensed Apache-2.0. It adds 72 tokens to every session and 1,278 once invoked, about $0.0004 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.

Related

Other skills, from other repositories

mem0-tour

Browses all stored memories grouped by category with full content display. Use when reviewing all project memories, exploring stored knowledge, onboarding to a project, or getting an overview of captured decisions, conventions, and learnings.

mem0ai/mem0 · 47 tokens

status

Show whether Mem0 memory is working in this repository, covering configuration, capture state, pending flushes, and whether the Mem0 API key is valid. Use when the user asks whether memory is on, why a memory is missing, or anything looks broken.

mem0ai/mem0 · 54 tokens

open-source

Documentation reference for writing Python code using the browser-use open-source library. Use this skill whenever the user needs help with Agent, Browser, or Tools configuration, is writing code that imports from browseruse, asks about @sandbox deployment, supported LLM models, Actor API, custom tools, lifecycle…

browser-use/browser-use · 137 tokens

mem0-test-integration

Verify a Mem0 integration produced by /mem0-integrate. Runs in the same workspace on the same branch (loose coupling) — installs dependencies, runs the repo's native test suite, then exercises a real end-to-end smoke flow against the user's API key. Produces a scorecard. TRIGGER when: user has just run /mem0-integrate…

mem0ai/mem0 · 207 tokens

connect-recommend

Use this skill when the user asks about Stripe Connect configuration, charge patterns, Dashboard access, or how to get started with Connect, is building a marketplace, platform, multi-vendor store, gig platform, or subscription platform, needs to pay out sellers, vendors, or providers, mentions split payments, revenue…

stripe/ai · 151 tokens

frontend-feature

Build a new page, view, or data-driven feature in the Next.js frontend. Use when adding a route under the dashboard/marketing area, wiring UI to a backend endpoint, adding client state, or creating a localized page. Covers App Router, data fetching, Zustand stores, and i18n.

vstorm-co/full-stack-ai-agent-template · 64 tokens