bi-distribution-analysis

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

A tool for describing how numeric data is spread across groups, such as countries or customer types. It calculates averages, standard deviation, median, largest groups, shares, and cumulative-share buckets.

In plain words
What is it for?
Use it with CSV data to compare numeric values across dimensions and identify the groups that account for most of the total.
Why use it?
It makes it easier to see where values are concentrated and how much they vary, instead of relying on a single total or average.

Skill for Claude CodeCodex

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

Good fit Use it with CSV data to compare numeric values across dimensions and identify the groups that account for most of the total.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/agentscope-ai/qwenpaw-data/bi-distribution-analysis
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-distribution-analysis
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-distribution-analysis

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/agentscope-ai/qwenpaw-data/bi-distribution-analysis"><img src="https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw-data/bi-distribution-analysis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 52 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,331 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.00052 $0.01331
Opus 5 $0.00026 $0.00665
Sonnet 5 $0.00010 $0.00266
Haiku 4.5 $0.00005 $0.00133

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

Security

Grade A, and why

bi-distribution-analysis 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/distribution_stats.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-distribution-analysis/SKILL.md · 69 lines

How it starts

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

bi-distribution-analysis

观察数据在不同区间的分布特征,计算均值、标准差、中位数等统计信息,用于刻画集中趋势与离散程度。

执行步骤

Step 0:检查数据以及确定区间维度与计算指标

  1. 明确分析对象:明确区间维度,以及相应具体数据列。例如,分析“不同国家用户数的分布情况”,区间维度为“国家”,具体数据列为“用户数”;
  2. 数据以 CSV 格式保存,且数据中已包含区间维度信息以及关键数据列。如
date,访问用户数,国家
20250101,10000,英国
20250102,10500,法国
20250103,9800,德国

Step 1:计算数据分布特征

对用于分析的数值序列 (x_1,\ldots,x_n),计算以下数据分布特征:

指标 说明
均值 (\bar{x} = \frac{1}{n}\sum_{i=1}^n x_i)
标准差 (\sigma = \sqrt{\frac{1}{n}\sum_{i=1}^n (x_i-\bar{x})^2})
中位数 数值序列中位数
top 5 的维度 数据值最大的 5 个维度 |
top 5 维度各数值占比 数值最大的 5 个维度,每个维度对应数值占所有维度数值和的比例
频率分布(按累计占比分桶) 将各维度按数值从大到小排序,逐项累计求和并除以总和得到累计占比 (r),按 (r) 落入以下 7 个桶:<0.5[0.5, 0.6)[0.6, 0.7)[0.7, 0.8)[0.8, 0.9)[0.9, 0.95)>=0.95。每个桶的值为该桶包含的维度名称列表

使用 <skill-dir>/scripts/distribution_stats.py 脚本,计算上述 6 个数值分布特征(数值类指标计算结果保留小数点后 5 位)。

python <skill-dir>/scripts/distribution_stats.py --input_file "<输入数据文件路径 (CSV)>" --value_col "<数值列名>" --dimension_col "<区间维度取值列>"

参数说明

参数 说明 默认值
--input_file 输入数据文件路径 (.csv) (必填)
--value_col 区间各维度对应数值列名 (必填)
--dimension_col 区间维度值列 (必填)

fallback(指引模式)

无脚本环境时按以下计算方式手动计算,不可遗漏任何指标计算。

对用于分析的数值序列 (x_1,\ldots,x_n),计算以下数据分布特征:

指标 计算方式
均值 (\bar{x} = \frac{1}{n}\sum_{i=1}^n x_i)
标准差 (\sigma = \sqrt{\frac{1}{n}\sum_{i=1}^n (x_i-\bar{x})^2})
中位数 1. 将数据进行从小到大排序;2. n 是奇数,中位数为第 (\frac{n+1}{2}) 个数;n 是偶数,中位数为第 (\frac{n}{2}) 位和第 (\frac{n+1}{2}) 为数的平均数
top 5 的维度 数据最大的 5 个维度 |
top 5 维度各数值占比 数值最大的 5 个维度,每个维度对应数值占所有维度数值和的比例
频率分布(按累计占比分桶) 1. 将所有维度按数值 (x_i) 从大到小排序;2. 计算总和 (S=\sum_i x_i);3. 依次计算累计和 (C_k=\sum_{i=1}^{k} x_i) 与累计占比 (r_k = C_k / S);4. 按 (r_k) 将第 (k) 个维度名归入对应的桶:<0.5((r_k<0.5))、[0.5, 0.6)[0.6, 0.7)[0.7, 0.8)[0.8, 0.9)[0.9, 0.95)>=0.95((r_k \ge 0.95));5. 输出为 dict,key 为桶名,value 为该桶包含的维度名称列表

Read the full file on GitHub · 69 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 · 69 lines · 52 tokens per session scan A b68bd5566a1d

Subscribe to this mod's changes

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