Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问许可证需确认审计通过

experimentexperiment 搜索

Agent Skill

experiment 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

218

周安装

9

GitHub Stars

1

下载量

71
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/hungv47/strategy-skills --skill experiment

简介

experiment 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中根据关键词快速定位候选结果。

  • 适用于研究检索类任务,可结合来源仓库和原始 README 核验具体用法,支持线索驱动的信息筛选。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态后再使用。
  • 安装前建议核实是否会触发联网、命令执行或文件读写,避免在不支持的宿主环境中运行。
  • experiment 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Experiment Design — Orchestrator

*Strategy — Step 4 of 4. Designs minimum viable tests with clear success/iterate/kill rules.*

Core Question: "What's the cheapest way to learn if this works?"


Critical Gates — Read First

  1. Executable in ≤2 weeks. If the experiment takes longer than 2 weeks, it's not a minimum viable test. Simplify the design or switch test type.
  2. Success threshold MUST be a specific number. "Significant improvement" or "we'll know it when we see it" are not thresholds. "≥2.5% signup rate" is a threshold. Define before launching.
  3. Sample size MUST be checked. If insufficient for A/B, adjust: bigger swing, lower confidence, Before-After, or Pilot. Never rationalize "let's just go with what feels right."
  4. Guardrail metrics are mandatory. A test can "succeed" on the primary metric while degrading support tickets, error rates, or refund rates. Define at least 2 guardrail metrics with specific thresholds.

Philosophy

Experimental rigor matters — but the level should match the stakes. Sample size tables assume 95% confidence / 80% power, appropriate for high-stakes decisions. For lower-stakes tests (social creative, email subjects), 90% confidence may suffice. Define acceptable risk upfront.

Inputs Required

  • An initiative with hypothesis and target metric (from .agents/solution-design.md + .agents/targets.md)
  • Baselines from .agents/targets.md (required for sample size calculation and lift targets)
  • OR: User describes what they want to test

Output

  • .agents/experiment-[name].md

Chain Position

Previous: funnel-planner | Next: implement winning variant, or re-diagnose with problem-analysis if inconclusive

Re-run triggers: When prior experiment results become stale (>60 days), when testing a new initiative from solution-design, or when baselines in targets.md are updated.


Agent Manifest

#AgentLayerFocusInputOutput
1test-design-agentL1 (parallel)Test type selection, experiment structureInitiative + baselinesTest design with hypothesis and variants
2metrics-agentL1 (parallel)Decision rules, success/iterate/kill thresholdsInitiative + baselines + targetsDecision thresholds + guardrail definitions
3sample-size-agentL2 (sequential)Sample size calculation, sufficiency checkMerged L1 outputSample calculation + adjustments
4guardrail-agentL2 (sequential)Breach protocols, rollback planSample-size output + metricsBreach scenario matrix + monitoring plan
5critic-agentL2 (sequential)5-point quality gateComplete analysisPASS or FAIL with fix routing

Routing Logic

Route A: Full Experiment Design (Default)

For any initiative that needs a properly designed test.

Layer 1 (parallel):  test-design-agent + metrics-agent
         ↓ merge
Layer 2 (sequential): sample-size-agent → guardrail-agent → critic-agent

Route B: Quick Experiment

When the test type is obvious and the user just needs decision rules and sample validation.

test-design-agent → sample-size-agent → critic-agent

Skip metrics-agent (user provides thresholds) and guardrail-agent (low-stakes test). Use when:

  • Test type is already decided (e.g., "run an A/B test on this headline")
  • User provides their own success/kill thresholds
  • Low-stakes test where guardrail complexity isn't warranted (e.g., email subject line test)

Dispatch Protocol

Pre-Dispatch: Context Gathering

Step 0: Product Context

Check for .agents/product-context.md. If missing: Strongly recommended: run icp-research (from hungv47/marketing-skills) first to create .agents/product-context.md — this skill works without it but produces significantly better analysis with it. If the user prefers not to, ask the user 8 product questions (what, who, problem, differentiator, proof points, pricing, objections, voice) and save to .agents/product-context.md.

If upstream artifacts' date fields are older than 30 days, recommend re-running upstream skills before proceeding — stale baselines invalidate sample size calculations.

Required Artifacts

ArtifactSourceIf Missing
solution-design.mdsolution-designINTERVIEW. Ask what to test.
targets.mdfunnel-plannerINTERVIEW. Ask for baseline metrics. Baselines are required — without them, sample size and lift calculations are meaningless.

Optional Artifacts

ArtifactSourceBenefit
product-context.mdicp-research (from hungv47/marketing-skills)Test design context

Initiative & Target Review

Read .agents/solution-design.md and .agents/targets.md if they exist. If not, interview for:

  1. "What are you trying to test? What's your hypothesis?"
  2. "What metric are you measuring? What's the current baseline?"
  3. "What would success look like? What would make you stop?"

A hypothesis, a target metric, and a baseline number are the minimum required inputs — without them, success criteria become subjective.

Route Selection

  • Default → Route A (Full Experiment Design)
  • If user provides thresholds + test type AND it's low-stakes → Route B

Single-Agent Fallback

If the full orchestration is unnecessary (simple test, user has design and thresholds already), you may run the experiment design inline without dispatching agents. Apply the same quality gate (5-point checklist) before delivering.


Layer 1 — Parallel: Test Design + Metrics

Dispatch test-design-agent and metrics-agent simultaneously.

test-design-agent

  • Input: Initiative details, baselines from targets.md, traffic data
  • References: references/experiment-templates.md
  • Expected output: Test type selection (with reasoning against all 4 types), hypothesis, variant definition, duration, budget

metrics-agent

  • Input: Initiative details, baselines, target values from targets.md
  • References: references/common-mistakes.md
  • Expected output: Decision rules (success/iterate/kill with specific numbers), guardrail metrics with thresholds

Layer 1 Merge

After both agents return:

  1. Combine test design (type, variants, duration) with metrics (thresholds, guardrails)
  2. Verify hypothesis in test design matches the metrics baseline and target
  3. If misalignment, reconcile before passing downstream
  4. Pass merged output to sample-size-agent

Layer 2 — Sequential: Sample Size → Guardrails → Critic

Step 1: sample-size-agent

  • Input: Merged L1 output (test design + metrics)
  • References: references/sample-size-guide.md
  • Expected output: Sample size calculation, sufficiency verdict, adjustments if insufficient

If INSUFFICIENT:

  • sample-size-agent recommends adjustments (bigger swing, lower confidence, different test type)
  • If test type change is recommended, re-dispatch test-design-agent with the new type
  • Re-merge before proceeding

Step 2: guardrail-agent

  • Input: Sample-size-agent output + merged L1 (metrics with guardrail definitions)
  • References: references/common-mistakes.md
  • Expected output: Breach scenario matrix, guardrail-specific protocols, monitoring schedule, rollback plan

Step 3: critic-agent

  • Input: Complete merged analysis
  • Expected output: PASS or FAIL against 5-point quality gate

Critic Gate

Maximum 2 rewrite cycles. If the critic returns FAIL:

  1. Read the critic's failure report — it names the specific gate, the fix, and the agent to re-dispatch
  2. Re-dispatch ONLY the named agent(s) with the critic's feedback
  3. Re-merge and send back to critic-agent
  4. If FAIL again after 2 cycles: deliver the artifact with a "Known Issues" section listing unresolved gate failures

Loop-Back Protocol

When an experiment concludes, follow the appropriate path:

Kill Decision

  1. Append learnings to the experiment file under ## Post-Mortem
  2. Check: Is the root cause (.agents/problem-analysis.md) still valid?

- Yes → Route to solution design: Run solution-design with constraint: "[Failed approach] did not work because [reason]. Generate alternatives that avoid this failure mode." - No → Route to problem analysis: Problem may have shifted. Re-diagnose using problem-analysis.

  1. Update .agents/solution-design.md — move killed initiative to "Kill" status with reason.

Iterate Decision

  1. Change exactly ONE variable from the original test
  2. Maximum 2 iterations allowed before triggering Kill protocol
  3. Document iteration rationale in experiment file under ## Iterations

Scale Decision

  1. Document final results in experiment file under ## Results
  2. Move to full execution — no further testing needed for this initiative
  3. Map the scaled initiative to KPIs and track attribution

Artifact Template

On re-run: rename existing artifact to experiment-[name].v[N].md and create new with incremented version.

---
skill: experiment
version: 1
date: {{today}}
status: draft
---

# Experiment: [Name]

**Initiative:** [from prioritized list]

## Design

| Field | Value |
|-------|-------|
| Hypothesis | If [action], then [metric] changes from [baseline] to [target], because [reason] |
| Test Type | A/B / Before-After / Cohort / Pilot |
| Duration | [≤2 weeks] |
| Budget | [$X or $0] |
| Primary Metric | [metric name] |
| Baseline | [current value] |
| Guardrail Metrics | [metrics that must NOT degrade — e.g., support tickets, error rate, refund rate] |
| Guardrail Thresholds | [acceptable range for each guardrail — e.g., support tickets ≤ current +10%] |

## Decision Rules

| Outcome | Threshold | Action |
|---------|-----------|--------|
| Success | [metric] ≥ [X] | [Scale how] |
| Iterate | [metric] between [X-Y] | Change: [one specific variable]. Rerun: [duration]. |
| Kill | [metric] < [X] after [duration] | Archive. Next: [what to try instead] |

## Guardrail Breach Protocol

| Situation | Decision | Action |
|-----------|----------|--------|
| Primary succeeds, guardrails hold | Success | Scale as planned |
| Primary succeeds, guardrail breached slightly | Conditional Success | Reduce scope, rerun |
| Primary succeeds, guardrail breached severely | Iterate | Fix implementation, retest |
| Primary succeeds, breach inherent | Kill | Not worth guardrail cost |

## Sample Size Check

- Daily traffic: [N]
- Test duration: [days]
- Visitors per variant: [N x days / 2]
- Required for [X%] lift at baseline [Y%]: [from table]
- **Sufficient?** Yes / No → [if no, adjusted approach]

## Results

[Filled in after experiment concludes]
- **Outcome:** Success / Iterate / Kill
- **Primary metric result:** [actual value]
- **Duration:** [actual days run]
- **Key finding:** [one sentence — what did we learn?]

## Post-Mortem

[Filled in for Kill decisions]
- **What we tested:** [summary]
- **Why it failed:** [root cause of failure]
- **What we learned:** [insight for future initiatives]
- **Next action:** Run `solution-design` for alternatives / Run `problem-analysis` to re-diagnose

## Next Step

[When to check results. What to do with each outcome.]

Worked Example 1: A/B Test

Initiative: Restore + Refine Paid Targeting. Baseline: 1.2% paid signup rate. Target: 3.0%.

Layer 1: Parallel Dispatch

test-design-agent: Selects A/B test (can split paid budget 50/50, enough volume). Hypothesis: "If we use a 1% converters lookalike audience, then paid signup rate increases from 1.2% to ≥3%, because the lookalike matches our ICP better than current broad targeting." Duration: 10 days. Budget: $500 (redirected existing spend).

metrics-agent: Success ≥2.5%, Iterate 1.5-2.5%, Kill <1.5% after 10 days. Guardrails: CPA (must not exceed $80), landing page error rate (must stay <1%).

Layer 2: Sequential

sample-size-agent: Daily paid traffic ~300. 10 days = 3,000 total → 1,500 per variant. Need ~1,300 for 50% lift at 1.2% baseline. SUFFICIENT.

guardrail-agent: Breach matrix defined. CPA slight breach = ≤$95, severe = >$95. Early termination if CPA >$120 for 3 consecutive days. Rollback: revert to original targeting in Meta.

critic-agent: PASS — all 5 gates satisfied.

Worked Example 2: Before-After

Initiative: Restore Homepage Social Proof. Baseline: 52% bounce. Target: ≤42%.

Layer 1: Parallel

test-design-agent: Before-After (change affects all visitors, can't split). Duration: 7 days. Budget: $0.

metrics-agent: Success ≤42%, Iterate 42-48%, Kill >48% after 7 days. Guardrails: signup rate (must not drop >5%), page load time (must stay <3s).

Layer 2: Sequential

sample-size-agent: 800 daily visitors x 7 = 5,600. Ample for 10-point bounce rate change. SUFFICIENT.

guardrail-agent: Breach protocols. Signup drop >5% = pause and investigate. Load time >3s = optimize assets before continuing.

critic-agent: PASS.


Anti-Patterns

Testing the wrong level — Most teams test CTA button colors when they should test entirely different angles. INSTEAD: Start at the top of the creative testing hierarchy: Concept/angle → Hook/headline → Visual style → Body copy → CTA.

Testing multiple variables — Changing the hook, CTA, and format simultaneously makes results uninterpretable. INSTEAD: Change exactly ONE element per variant. The learning is more valuable than the lift.

Insufficient sample rationalization — "We don't have enough traffic for statistical significance, so let's just go with what feels right." INSTEAD: Adjust the test — aim for bigger change (50%+ lift), use Before-After, or run a Pilot. Don't abandon rigor.

Novelty effect as success — New things get clicks initially. A variant that "wins" in 3 days may lose after 2 weeks. INSTEAD: Run tests long enough for novelty to normalize (minimum 7 days).

Metrics without baselines — "Let's test if this improves conversions" without knowing the current rate. INSTEAD: Every experiment requires a numeric baseline. Without one, you can't calculate lift, sample size, or significance.

Testing without guardrails — A test can "succeed" on the primary metric while degrading other metrics. INSTEAD: Define at least 2 guardrail metrics with specific thresholds before launching.

Survivorship bias in iteration — Iterating only on winners while ignoring what failures teach. INSTEAD: Kill decisions feed learnings back to solution-design. The failure mechanism often reveals a better approach.


References

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.97%
按下载量换算26

Claude

28.59%
按下载量换算20

Cursor

19%
按下载量换算13

Gemini CLI

8.64%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

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

来源信息

继续浏览同类 Skills