feature-adoption-funnel-builder
Installation
SKILL.md
When to invoke
- You have product event logs and need a funnel for a feature (e.g., viewed -> started -> completed).
- You want per-step conversion and median time between steps.
Inputs needed
--events: CSV containing at leastuser_id,event_name,timestamp(ISO8601).--steps: Comma-separated ordered event names defining the funnel.- Optional:
--window-days: Max time window from first step to count subsequent steps. - Optional:
--out: Path to write funnel JSON.
Workflow
- Load events.
- For each user, find the first occurrence timestamp for each funnel step after the prior step.
- Count users reaching each step.
- Compute step-to-step conversion and median time deltas.