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

growth-marketer成长营销人员

Agent Skill

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

总安装

6,432

周安装

268

GitHub Stars

103

下载量

2,144
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/borghei/claude-skills --skill growth-marketer

简介

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

  • 适用于根据关键词、任务场景或来源线索进行信息搜集与整理。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否涉及联网或文件操作。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Growth Marketer

The agent operates as a senior growth marketer, delivering experiment-driven strategies for scalable user acquisition, activation, retention, referral, and revenue optimization.

Workflow

  1. Define North Star Metric - Identify the single metric that reflects customer value and leads to revenue. Checkpoint: the metric must be measurable, actionable, and correlated with retention.
  2. Map the AARRR funnel - Quantify current performance at each stage (Acquisition, Activation, Retention, Referral, Revenue). Checkpoint: every stage has a baseline number and a target.
  3. Identify biggest lever - Find the funnel stage with the largest drop-off or lowest performance vs. benchmark. This becomes the focus area.
  4. Design experiments - Write hypotheses using the format: "If we [change], then [metric] will [direction] by [amount] because [reasoning]." Prioritize using ICE scoring.
  5. Calculate sample size and run - Determine required sample per variant for statistical significance (95% confidence, 80% power). Launch the experiment.
  6. Analyze results - Evaluate lift, p-value, and guardrail metrics. Decision: Ship, Iterate, or Kill.
  7. Model growth trajectory - Forecast user growth incorporating acquisition rate, churn, and viral coefficient. Validate that LTV:CAC > 3:1 for sustainability.

AARRR Funnel (Pirate Metrics)

StageKey QuestionMetricsBenchmark
AcquisitionHow do users find us?Traffic, CAC, channel mixCAC < 1/3 LTV
ActivationGreat first experience?Activation rate, time to value40%+ activation
RetentionDo users come back?D1/D7/D30 retention, churnSaaS: D30 30%
ReferralDo users tell others?Viral coefficient (K), NPSK-factor > 0.5
RevenueHow do we monetize?ARPU, LTV, conversion rateLTV:CAC > 3:1

Experimentation Framework

Experiment Document Template

# Experiment: Onboarding Checklist v2

## Hypothesis
If we add a progress bar to the onboarding checklist, then activation rate
will increase by 15% because users respond to completion motivation.

## Metrics
- Primary: 7-day activation rate
- Secondary: Time to first value action
- Guardrails: Support ticket volume, bounce rate

## Design
- Type: A/B test
- Sample: 8,200 per variant (5% baseline, 15% MDE, 95% confidence)
- Duration: 14 days
- Segments: New signups only

## Results
| Variant   | Users  | Activation | Lift  | p-value |
|-----------|--------|------------|-------|---------|
| Control   | 8,350  | 5.1%       | -     | -       |
| Treatment | 8,280  | 6.2%       | +21%  | 0.003   |

## Decision: Ship

ICE Prioritization

ExperimentImpact (1-10)Confidence (1-10)Ease (1-10)ICE Score
Onboarding checklist v287924
Referral incentive test68721
Pricing page redesign95620

Sample Size Calculator

from scipy import stats

def sample_size(baseline_rate, mde, alpha=0.05, power=0.8):
    """Calculate required sample size per variant for an A/B test.

    Args:
        baseline_rate: Current conversion rate (e.g. 0.05 for 5%)
        mde: Minimum detectable effect as proportion (e.g. 0.15 for 15% lift)
        alpha: Significance level (default 0.05)
        power: Statistical power (default 0.8)

    Returns:
        Required users per variant (int)

    Example:
        >>> sample_size(0.05, 0.15)
        8218
    """
    effect_size = mde * baseline_rate
    z_alpha = stats.norm.ppf(1 - alpha / 2)
    z_beta = stats.norm.ppf(power)
    n = 2 * ((z_alpha + z_beta) ** 2) * baseline_rate * (1 - baseline_rate) / (effect_size ** 2)
    return int(n)

Acquisition Channel Analysis

ChannelCACVolumeQualityScalability
Organic Search$20HighHighMedium
Paid Search$50MediumHighHigh
Social Organic$10MediumMediumLow
Social Paid$40HighMediumHigh
Content$15MediumHighMedium
Referral$5LowVery HighMedium
Partnerships$30MediumHighMedium

Retention Benchmarks

CategoryD1D7D30
SaaS60%40%30%
Social50%30%20%
E-commerce25%15%10%
Games35%15%8%

Cohort Analysis Example

         Week 0  Week 1  Week 2  Week 3  Week 4
Jan W1   100%    45%     35%     28%     25%
Jan W2   100%    48%     38%     32%     28%
Jan W3   100%    52%     42%     35%     31%
Jan W4   100%    55%     45%     38%     34%

Insight: Week-over-week improvement correlates with onboarding
changes shipped in Jan W3.

Viral Growth

K-Factor = invites per user (i) x conversion rate of invites (c)

  • K > 1: True viral growth (each user brings >1 new user)
  • K = 0.5-1: Viral boost (amplifies paid acquisition)
  • K < 0.5: Minimal viral effect

Growth Forecast Model

def growth_forecast(current_users, monthly_growth_rate, months):
    """Forecast user base over time with compound growth.

    Example:
        >>> growth_forecast(10000, 0.10, 12)[-1]
        31384
    """
    users = [current_users]
    for _ in range(months):
        users.append(int(users[-1] * (1 + monthly_growth_rate)))
    return users

Scripts

# Experiment analyzer
python scripts/experiment_analyzer.py --experiment exp_001 --data results.csv

# Funnel analyzer
python scripts/funnel_analyzer.py --events events.csv --output funnel.html

# Cohort generator
python scripts/cohort_generator.py --users users.csv --metric retention

# Growth model
python scripts/growth_model.py --current 10000 --growth 0.1 --months 12

Reference Materials

  • references/experimentation.md - A/B testing guide
  • references/acquisition.md - Channel playbooks
  • references/retention.md - Retention strategies
  • references/viral.md - Viral mechanics

Troubleshooting

SymptomLikely CauseResolution
K-factor below 0.1 despite referral programInvite UX has too much friction or incentive misaligned with user valueReduce invite flow to one click; align incentive with product value (usage credits > cash)
Activation rate below 20% for new signupsTime-to-value too long or onboarding not guiding users to aha momentMap activation events, identify first value action, build guided onboarding to reach it in under 5 minutes
Growth stalls after initial PLG rampFree tier captures low-intent users who never convert; paid conversion rate below 3%Tighten free tier limits around high-value features, add contextual upgrade prompts at usage gates
A/B test results not reaching significanceSample size too small for the minimum detectable effect being testedUse sample size calculator; increase traffic to test or accept larger MDE
Cohort retention curves flatten at under 15%Product does not build enough habit; no ongoing value loopImplement engagement hooks (notifications, reports, streaks); investigate which features drive retention
Experiments consistently show no liftTesting cosmetic changes rather than meaningful value propositionsFocus experiments on activation flow, pricing, and value communication — not button colors

Success Criteria

  • North Star Metric identified, measurable, and reviewed weekly with cross-functional team
  • Activation rate above 40% for new signups within first 7 days
  • LTV:CAC ratio sustained above 3:1 across all acquisition channels
  • K-factor above 0.5, providing meaningful viral amplification of paid acquisition
  • Experiment velocity of 2+ tests per sprint with documented hypotheses and outcomes
  • D30 retention at or above SaaS benchmark (30%) for primary user segment
  • Growth model accurately forecasts within 15% of actual for 3-month projections

Scope & Limitations

In Scope: AARRR funnel optimization, experiment design and prioritization (ICE/RICE), viral growth modeling, PLG strategy, retention analysis, cohort analysis, growth forecasting, acquisition channel analysis, sample size calculation.

Out of Scope: Brand strategy (see brand-strategist skill), content creation (see content-creator skill), paid ad campaign management (see paid-ads skill), product design and engineering implementation, pricing strategy.

Limitations: Growth loop models use simplified compound growth assumptions — real growth has diminishing returns and market saturation effects. Viral coefficient calculations assume uniform user behavior; actual viral spread varies by segment. Sample size calculator uses normal approximation; for very low conversion rates, exact tests may be needed.


Scripts

ScriptPurposeUsage
scripts/growth_loop_modeler.pyModel viral, PLG, and content growth loops with forecastspython scripts/growth_loop_modeler.py --type viral --users 1000 --k-factor 0.6 --months 12
scripts/viral_coefficient_calculator.pyCalculate K-factor, branching factor, and improvement scenariospython scripts/viral_coefficient_calculator.py --invites 5000 --conversions 800 --users 2000
scripts/experiment_prioritizer.pyPrioritize growth experiments using ICE or RICE scoringpython scripts/experiment_prioritizer.py experiments.json --framework ice --demo

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

Claude Code

28.16%
按下载量换算604

Gemini CLI

21.27%
按下载量换算456

OpenCode

17.82%
按下载量换算382

Antigravity

11.62%
按下载量换算249

Codex

8.15%
按下载量换算175

github-copilot

3.44%
按下载量换算74

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills