Token导航 LogoToken导航TokenDH.com
开发敏感数据github未标认证来源可访问许可证需确认审计异常

abtestingabtesting 自动化

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

416

周安装

17

GitHub Stars

4

下载量

135
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:abtesting(abtesting 自动化)
来源仓库:https://github.com/alphaonedev/openclaw-graph
仓库路径:skills/abtesting
安装命令:
npx skills add https://github.com/alphaonedev/openclaw-graph --skill abtesting
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill abtesting

简介

用于 A/B 测试设计与数据分析,支持实验验证决策。

  • 适用于功能发布、界面变更等需要统计验证的场景。
  • 可计算样本量、执行显著性检验并定义上线标准。适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。
  • 需确认项目测试框架与环境配置,避免误改生产逻辑。
  • abtesting 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

abtesting

Purpose

This skill enables A/B testing workflows, including experiment design, statistical significance testing, sample size power analysis, and defining launch criteria. Use it to optimize decisions based on data-driven experiments.

When to Use

Apply this skill when designing experiments for feature rollouts, website changes, or product variations. Use it for scenarios requiring statistical validation, such as comparing conversion rates or user engagement metrics, to ensure reliable results before full deployment.

Key Capabilities

  • Design A/B experiments with parameters like variants, metrics, and duration.
  • Perform power analysis to calculate required sample sizes using formulas like Cohen's d.
  • Test statistical significance with t-tests or chi-squared tests on experiment data.
  • Define launch criteria based on p-values, confidence intervals, and effect sizes.
  • Integrate with data sources for real-time analysis.

Usage Patterns

Start by initializing an experiment object with required parameters. Use CLI for quick calculations or API for programmatic access. Always set the API key via environment variable $ABTEST_API_KEY before operations. For example, chain commands to design, run analysis, and decide on launch. Handle asynchronous API calls by polling for results.

Common Commands/API

Use the OpenClaw CLI for A/B testing commands. Set up with export ABTEST_API_KEY=your_key. Example API endpoint: POST https://api.openclaw.ai/abtesting/experiments.

  • CLI command for sample size calculation: abtest calculate-sample-size --effect-size 0.2 --power 0.8 --alpha 0.05 This outputs the minimum sample per group.
  • API call for significance test: curl -H "Authorization: Bearer $ABTEST_API_KEY" -d '{"control': [50, 55], 'treatment': [60, 65], 'metric': 'mean'}" https://api.openclaw.ai/abtesting/significance Returns JSON with p-value and confidence interval.
  • Config format for experiment design (JSON): {"name": "email-variant-test", "variants": ["A", "B"], "metric": "click-rate", "duration_days": 7} Save as experiment.json and run: abtest design --config experiment.json.
  • Power analysis via code snippet (Python): import openclaw.abtesting result = openclaw.abtesting.power_analysis(effect_size=0.1, alpha=0.05, power=0.8) Print result for required sample size.

Integration Notes

Integrate this skill into your codebase by importing the OpenClaw SDK and setting $ABTEST_API_KEY. For web apps, use it in CI/CD pipelines to validate experiments before merges. Ensure data sources (e.g., databases) are accessible via the SDK's connect method, like openclaw.abtesting.connect(db_url="postgres://user:pass@host/db"). If using in a microservice, handle retries for API calls with exponential backoff.

Error Handling

Check for errors in every command; CLI returns exit codes (e.g., 1 for invalid input). For API, parse HTTP responses: 400 for bad requests, 401 for auth failures. Example: try: response = requests.post(url, headers={"Authorization": f"Bearer {os.environ['ABTEST_API_KEY']}"})) response.raise_for_status() except requests.exceptions.HTTPError as e: log_error(e) Handle common issues like insufficient sample size by validating inputs upfront, e.g., use abtest validate --config experiment.json to catch errors early.

Concrete Usage Examples

  1. Design and calculate sample size for a website variant test: First, create a config: {"name": "homepage-test", "variants": ["original", "new"], "metric": "bounce-rate"}. Run: abtest calculate-sample-size --effect-size 0.05 --power 0.8 --alpha 0.05. Use the output (e.g., 500 per group) to set up: abtest design --config config.json. This ensures your experiment has enough power.
  2. Analyze significance and decide launch for an email campaign: Collect data: control clicks = [100, 120], treatment = [140, 150]. Run: curl -H "Authorization: Bearer $ABTEST_API_KEY" -d '{"control": [100,120], "treatment": [140,150], "metric": "mean"}' https://api.openclaw.ai/abtesting/significance. If p-value < 0.05, proceed with launch criteria: abtest launch-check --p-value 0.03 --min-effect 0.1. This automates decision-making based on results.

Graph Relationships

  • Related to cluster: abtesting (direct parent).
  • Connected to tags: ab-testing, experiments, statistics.
  • Links to other skills: analytics (for data processing), data-science (for advanced stats).

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

32.88%
按下载量换算44

Claude

30.46%
按下载量换算41

Cursor

18.7%
按下载量换算25

Gemini CLI

9.31%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

未通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills