funnel-analysis

funnel-analysis is a skill for Claude Code from RBraga01/builder-growth. It costs 44 tokens per session (1,690 once invoked), scanned A, original, MIT.

A diagnostic workflow for finding where a multi-step conversion process loses people and why. Conversion rate means the share of users who complete a desired action, such as signing up or buying.

In plain words
What is it for?
Use it before proposing conversion experiments or other changes to a multi-step user journey, such as signup, activation, or checkout.
Why use it?
Trying to improve a conversion rate before locating and explaining the biggest drop-off can focus work on the wrong step. This requires mapping the process and identifying the root cause first.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the builder-growth plugin — 14 skills, 5 agents shipped together

Good fit Use it before proposing conversion experiments or other changes to a multi-step user journey, such as signup, activation, or checkout.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/rbraga01/builder-growth/funnel-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 RBraga01/builder-growth --skill funnel-analysis
Clone the repo
git clone --depth 1 https://github.com/RBraga01/builder-growth

Made for: Claude Code.

Or install builder-growth, the plugin that ships this one along with the rest of its 14 skills, 5 agents.

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 funnel-analysis

README.md
[![agentmods](https://agentmods.dev/badge/skills/rbraga01/builder-growth/funnel-analysis/github.svg)](https://agentmods.dev/skills/rbraga01/builder-growth/funnel-analysis)
Your own site
<a href="https://agentmods.dev/skills/rbraga01/builder-growth/funnel-analysis"><img src="https://agentmods.dev/badge/skills/rbraga01/builder-growth/funnel-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 funnel-analysis

Your own site · 80×15
<a href="https://agentmods.dev/skills/rbraga01/builder-growth/funnel-analysis"><img src="https://agentmods.dev/badge/skills/rbraga01/builder-growth/funnel-analysis.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 44 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,690 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.
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.00044 $0.01690
Opus 5 $0.00022 $0.00845
Sonnet 5 $0.00009 $0.00338
Haiku 4.5 $0.00004 $0.00169

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

Security

Grade A, and why

funnel-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 9d 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.

skills/funnel-analysis/SKILL.md · 156 lines

How it starts

The opening of the file, as written. The whole thing — 156 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Funnel Analysis

The Law

OPTIMISING A FUNNEL BEFORE DIAGNOSING IT OPTIMISES THE WRONG STEP.
"Let's improve the conversion rate" without identifying which step leaks most is guessing — you can improve every step but the broken one and the funnel does not move.
Leak identified + root-caused + hypothesis formed IS a funnel analysis.

When to Use

Trigger before:

  • Any CRO (conversion rate optimisation) effort
  • Proposing any experiment targeting funnel improvement
  • Allocating engineering or design time to "improve" any multi-step flow
  • Presenting funnel performance to stakeholders

When NOT to Use

  • Single-step actions with no funnel (e.g., a standalone API call — no steps to diagnose)
  • Features in pre-launch without traffic data to analyse

The Four Diagnostic Steps

Do not propose solutions before completing all four.

Step 1 — Map the Funnel

List every step between the user's entry point and the conversion goal.

Step 1: [Action] — e.g., "User arrives on landing page"
Step 2: [Action] — e.g., "User clicks CTA"
Step 3: [Action] — e.g., "User completes signup form"
Step 4: [Action] — e.g., "User activates (completes first key action)"
Goal:   [Conversion] — e.g., "User converts to paid"

Use the product's actual steps — not a generic template. Every step must be measurable.

Step 2 — Quantify Each Step

For each step, collect:

  • Volume: how many users enter this step per period
  • Exit rate: percentage who leave without completing this step
  • Time in step: median and p95 time spent before exit
| Step | Entered | Completed | Exit rate | Median time |
|------|---------|-----------|-----------|-------------|
| 1    | 10,000  | 8,100     | 19%       | 2s          |
| 2    | 8,100   | 2,430     | 70%       | 45s         |
| 3    | 2,430   | 2,070     | 15%       | 3min        |
| 4    | 2,070   | 830       | 60%       | 12h         |

The step with the highest exit rate AND the highest volume of exits (exits = entered × exit rate) is the primary leak. Both dimensions matter — a 70% exit rate on 100 users is smaller than a 20% exit rate on 10,000.

Read the full file on GitHub · 156 lines

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. 9d ago First seen · 156 lines · 44 tokens per session scan A 35b218f6cc75

Subscribe to this mod's changes

funnel-analysis is a skill published in the GitHub repository RBraga01/builder-growth (2 stars, last pushed 2mo ago), licensed MIT. It adds 44 tokens to every session and 1,690 once invoked, about $0.0002 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-31.

Related

Other skills, from other repositories

gr-geo-cite

A guide for checking whether AI assistants such as ChatGPT, Claude, Perplexity, and Gemini mention or cite your website when answering set questions.

Gingiris-1031/gingiris-skills · 188 tokens

gingiris-github-star-growth

A guide to steadily increasing the number of people who bookmark an open-source project on GitHub by building content, community, events, contributors, and ambassadors.

Gingiris-1031/gingiris-skills · 357 tokens

gr-blog-post

A Jekyll blog publishing workflow. Jekyll is a tool that turns text and templates into a website, and this workflow also prepares matching English, Japanese, and Korean posts.

Gingiris-1031/gingiris-skills · 160 tokens

gr-seo-patrol

An automated SEO and GEO checking routine. SEO helps pages appear in search engines; GEO checks how they may be found and understood by AI-based search tools.

Gingiris-1031/gingiris-skills · 159 tokens

gingiris-reddit-marketing

🇺🇸 Reddit Marketing & Growth Playbook 2026 — The complete Reddit operations SOP for AI/SaaS founders. Covers account warming (Karma 0→500 in 20 days), shadow ban prevention, multi-account matrix via fingerprint browsers, subreddit selection across 10K+ communities, content templates (90/10 rule), Product Hunt ×…

Gingiris-1031/gingiris-skills · 1,066 tokens

gingiris-growth-finder

Diagnose a product's growth model, stage, and current constraint, then route the request to the narrowest Gingiris specialist and execute it when installed. Use for broad or uncertain growth questions involving go-to-market, Product Hunt, GitHub stars, open-source marketing, B2B SaaS, PLG, ASO, SEO/GEO, AI citations…

Gingiris-1031/gingiris-skills · 183 tokens