agentsclimarketplace

Funnel

Skill shuakami/paperchart/skills/funnel

Quiet, editorial chart PNGs for technical blog posts. 15 primitives, six themes, one CLI.

Install
npx -y skills add shuakami/paperchart --skill funnel

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Render a conversion funnel with stage bars whose widths are proportional to count, drop-off annotations between stages, and a final accented bar for the terminal stage. Use for acquisition / activation funnels, feature adoption funnels, and search-result click-through analysis.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

1.7 KB, as published. Nobody here has run it

paperchart — funnel

Stages stack vertically. Bar width is proportional to count. The last stage gets the accent. To the right of each subsequent stage, the renderer shows survival rate and absolute loss vs. the previous stage.

When to use

  • Acquisition funnels (visit → signup → activation → retention).
  • Feature funnels (search opened → query submitted → result clicked → page consumed).
  • Any multi-step conversion narrative.

Input shape

{
  "data": [
    { "label": "landing view",    "caption": "any /docs page",      "count": 14230000 },
    { "label": "search opened",   "caption": "\u2318K or / pressed", "count": 4610000 },
    { "label": "query submitted", "caption": "at least one keystroke", "count": 3980000 },
    { "label": "result clicked",  "caption": "first 10 hits",       "count": 2730000 },
    { "label": "page consumed",   "caption": "scrolled past fold",  "count": 1820000, "accent": true }
  ]
}

Visual rules

  • Counts auto-formatted with K / M / B suffix.
  • Accent only on the final bar unless explicitly overridden.
  • Drop-off percentage and absolute loss rendered to the right of each stage after the first.

CLI

paperchart funnel -i data.json -o funnel.png
paperchart funnel --defaults -o funnel.png

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.