bi-comparison-analysis

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

A business-analysis skill for quantitatively comparing metrics across times, groups, regions, channels, versions, targets, or competitors. It calculates absolute or percentage differences and can apply statistical tests when there are multiple samples.

In plain words
What is it for?
Use it to analyze growth or decline, compare groups or versions, check performance against plans or budgets, and evaluate whether differences between samples are significant.
Why use it?
It turns a comparison into a measured difference with a consistent reference point. Statistical testing can help assess whether an observed difference is meaningful rather than random.

Skill for Claude CodeCodex

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

Good fit Use it to analyze growth or decline, compare groups or versions, check performance against plans or budgets, and evaluate whether differences between samples are significant.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/agentscope-ai/qwenpaw-data/bi-comparison-analysis"><img src="https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw-data/bi-comparison-analysis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 84 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 933 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.00084 $0.00933
Opus 5 $0.00042 $0.00466
Sonnet 5 $0.00017 $0.00187
Haiku 4.5 $0.00008 $0.00093

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

Security

Grade A, and why

bi-comparison-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.

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-comparison-analysis/SKILL.md · 74 lines

What it actually says

bi-comparison-analysis

对不同时间、群体、地区、渠道、版本之间的指标差异值进行分析。

执行步骤

Step 1. 明确比较维度

一般而言,对比分析主要涉及以下 3 个维度:

维度 说明 目的
时间对比 (纵向) 同比(与历史相同节点)或环比(与相邻节点) 了解发展速度、规模水平的增减变化
空间对比 (横向) 与同类对象、竞争对手或行业平均水平对比 评估自身在群体中的水平高低,找出差距
标准对比 (计划对比) 将实际完成数据与目标、计划、预算数值对比 检查指标是否达标,评估业务运行是否协调

根据数据分析需求以及上述维度的解释说明,选择合理的对比维度。

Step 2. 设定基准与比较对象

根据所确定的比较分析维度以及提供的数据,选择合适的对比参照物(时间、空间或标准),以及确定合理的比较对象。确保参照物与比较对象的数据在统计口径、计量标准上一致,具有可比性。

整理数据为一份 CSV 文件,包含参照物相应数据列以及比较对象相应数据列。以“对比不同端转化情况”为例,可用的数据类似

业务日期,web端转化率,app端转化率
20251101,0.7856,0.2343
20251102,0.2288,0.8822
20251103,0.6677,0.7760

Step 3. 计算差异

对比分析的定量计算形式主要有以下两种

方式 计算方式 例子
绝对差值 (差值=对象A - 对象B) 数值大小比较
相对差值 (差异率=\frac{对象A - 对象B}{对象B}) 环比增长、同比增长

根据步骤 1 和步骤 2 确定的比较维度、参照物和比较对象,从中选择合适的定量计算方式计算对比差异。不遗漏任何需要比较的对象。

Step 4. 显著性分析

当对两组或多组数据进行比较,且比较结果具有多个样本时,需进行显著性分析。常用显著性检验方法如下:

检验方法 适用场景 数据要求
t 检验 两组均值对比,样本量 < 30 或总体方差未知 连续型数据,近似正态分布
z 检验 两组均值/比例对比,大样本量(n ≥ 30) 连续型或二分类数据
卡方检验 分类变量独立性检验、拟合优度检验 频数数据,期望频数 ≥ 5

显著性检验方法选择策略如下:

if 数据为分类变量:
    使用 chi_square
elif 样本量 >= 30:
    使用 z_test
else:
    使用 t_test

各个检验方法的具体计算方式参见 <skill-dir>/references/significance-test.md

输出要求

输出差异定量计算结果,以及显著性检验方式、检验统计量与 P 值(如果执行了显著性分析)。不要遗失任何计算结果,包括 NaN 值。

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 · 74 lines · 84 tokens per session scan A 24d587a89e01

Subscribe to this mod's changes

bi-comparison-analysis is a skill published in the GitHub repository agentscope-ai/QwenPaw-Data (71 stars, last pushed 2d ago), licensed Apache-2.0. It adds 84 tokens to every session and 933 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