bi-conversion-rate

bi-conversion-rate is a skill for Claude Code, Codex from agentscope-ai/QwenPaw-Data. It costs 50 tokens per session (660 once invoked), scanned A, original, Apache-2.0.

A tool for calculating the share of users who move from a starting action to a completed action. This share is called a conversion rate.

In plain words
What is it for?
Use it with CSV columns such as visitors and people who started a conversation to calculate one or more conversion rates.
Why use it?
It turns counts at two stages into a comparable measure, making it easier to see how many users complete the intended step.

Skill for Claude CodeCodex

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

Good fit Use it with CSV columns such as visitors and people who started a conversation to calculate one or more conversion rates.

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

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/agentscope-ai/qwenpaw-data/bi-conversion-rate"><img src="https://agentmods.dev/badge/skills/agentscope-ai/qwenpaw-data/bi-conversion-rate.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 50 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 660 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.00050 $0.00660
Opus 5 $0.00025 $0.00330
Sonnet 5 $0.00010 $0.00132
Haiku 4.5 $0.00005 $0.00066

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

Security

Grade A, and why

bi-conversion-rate 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 10d ago.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/compute_conversion.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-conversion-rate/SKILL.md · 57 lines

What it actually says

bi-conversion-rate

计算用户从接触目标行为(起始阶段)到完成目标行为(结束阶段)的转化率。

执行步骤

Step 0: 检查数据以及确定计算指标

  1. 转化率计算涉及的指标以及数据范围(初始状态数据以及目标状态数据)已经明确,如指标明确为“对话转化率”,转化率计算需“访问用户数”与“对话用户数”;
  2. 数据已经保存为 CSV 文件,且包含转化率计算所需关键数据,如上述的“访问用户数”与“对话用户数”。如
date,访问用户数,对话用户数
2025-01-01,10000,3000
2025-01-02,10500,1000
2025-01-03,9800,100

Step 1: 执行转化率计算

使用 <skill-dir>/scripts/compute_conversion.py 脚本,计算用户从某初始状态到目标状态的转化率(计算结果保留小数点后 5 位)。

python <skill-dir>/scripts/compute_retention.py --input_file "<输入数据文件路径 (CSV)>" --metric_name "<转化率名称>" --begin_col "<初始行为状态的对象列名>" --end_col "<目标/结束行为状态的对象列名>"

参数说明

参数 说明 默认值
--input_file 输入数据文件路径 (.csv) (必填)
--metric_name 计算指标名称(如对话转化率等) 转化率
--begin_col 初始行为状态的对象列名 (必填)
--end_col 目标/结束行为状态的对象列名 (必填)

对于所有需要计算的转化率指标都需调用该脚本计算,不能遗失任何必要的指标计算。

fallback (指引模式)

无脚本环境时按以下计算公式手动计算转化率:

$$ \text{转换率}=\frac{\text{User at the final stage}}{\text{User at the beginning stage}} $$

  • 分母:起始阶段用户数(接触过目标行为或进入漏斗起点)
  • 分子:结束阶段用户数(完成目标行为)
  • 口径须与业务一致(例如结束阶段用户是否为起始阶段的子集、是否去重同一用户)

输出要求

输出所有需要计算的转化率指标结果,不要遗失任何计算结果,包括 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. 10d ago First seen · 57 lines · 50 tokens per session scan A 43b5c19ac574

Subscribe to this mod's changes

bi-conversion-rate is a skill published in the GitHub repository agentscope-ai/QwenPaw-Data (71 stars, last pushed yesterday), licensed Apache-2.0. It adds 50 tokens to every session and 660 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

fastapi-patterns

FastAPI patterns for async APIs, dependency injection, Pydantic request and response models, OpenAPI docs, tests, security, and production readiness.

affaan-m/ECC · 35 tokens

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