self-hosted-funnel-launch

self-hosted-funnel-launch is a skill for Claude Code from autonnel/autonnel-skills. It costs 123 tokens per session (5,745 once invoked), scanned A, original, Apache-2.0.

A guide for launching a self-hosted sales funnel: a set of web pages that can include a landing page, checkout, upsell, and thank-you page.

In plain words
What is it for?
Use it to deploy and publish funnels with Cloudflare Workers, Docker, or a Node setup.
Why use it?
It explains how to run the funnel on infrastructure you control and connect payments, products, and conversion tracking.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin. Also seen: positional $N argument; mentions Claude Code.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is docker compose exec app node dist/cli/index.js admin:create [email protected] 'a-strong-password'.

Part of the autonnel plugin — 6 skills shipped together

Good fit Use it to deploy and publish funnels with Cloudflare Workers, Docker, or a Node setup.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/autonnel/autonnel-skills
agentmods
npx agentmods add skills/autonnel/autonnel-skills/self-hosted-funnel-launch

Made for: Claude Code.

Or install autonnel, the plugin that ships this one along with the rest of its 6 skills.

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 self-hosted-funnel-launch

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

Your own site · 80×15
<a href="https://agentmods.dev/skills/autonnel/autonnel-skills/self-hosted-funnel-launch"><img src="https://agentmods.dev/badge/skills/autonnel/autonnel-skills/self-hosted-funnel-launch.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 123 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 5,745 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • Socket pass 20 Aug 2026
  • Snyk warn 20 Aug 2026
How audits are shown
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.00123 $0.05745
Opus 5 $0.00062 $0.02873
Sonnet 5 $0.00025 $0.01149
Haiku 4.5 $0.00012 $0.00575

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

Security

Grade A, and why

self-hosted-funnel-launch scanned grade A with 1 finding 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 12d 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.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

One more trap in front of the app entirely: an instance behind Cloudflare with the default managed bot rules **rejects the Python standard library's user agent**. A `urllib` client sends `Python-urllib/3.x` and gets `403
self-hosted-funnel-launch/SKILL.md · 301 lines

How it starts

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

Self-Hosted Funnel Launch

Take a funnel from nothing to published on infrastructure the operator controls, using Autonnel (Apache-2.0). This skill is the build step; design the funnel first with sales-funnel-blueprint, and confirm self-hosting is the right call with funnel-platform-picker if that is still open.

Step 1: choose how it runs

Path Cost at low volume Ops burden Use it for
Cloudflare Workers Effectively $0 plus a Postgres No servers, no patching Default for production. Funnel pages are mostly static assets, which Workers serves free and unmetered
Docker Cost of one VPS or container host Yours: upgrades, backups, uptime Local evaluation in two minutes, or a server you already run and want the data on
Source checkout (Node) Cost of one VPS or container host Yours Modifying Autonnel itself, or running the Node build directly

Recommend Workers unless the operator has a specific reason not to: the pricing model fits funnels almost exactly, and it removes the entire class of work that makes people avoid self-hosting.

Use Docker for the first look regardless. It is the fastest way to see the product, and nothing you build locally is wasted: the same schema and the same admin UI back both paths.

Step 2a: Cloudflare Workers (the near-free production path)

Why the cost is close to zero

Funnel traffic is overwhelmingly requests for pages, images and scripts. On Workers those are static asset requests, which are free and unlimited, with no storage cost - only requests that invoke the Worker (server-rendered pages, checkout, API) are billed. A funnel's dynamic surface is small: the order form, the upsell accept, the postback queue.

Verified Cloudflare free-plan limits (checked 2026-08; confirm current numbers before you rely on them):

Resource Workers Free plan
Static asset requests Free and unlimited, no storage charge
Worker invocations 100,000 requests/day
Hyperdrive (Postgres pooling) Available on Free, 100,000 database queries/day
Workers KV (page cache) 100,000 reads/day, 1,000 writes/day, 1 GB storage
Cron Triggers Supported (the repo ships a scheduled handler)

Read the full file on GitHub · 301 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. 12d ago First seen · 301 lines · 123 tokens per session scan A f327d217fb0f

Subscribe to this mod's changes

self-hosted-funnel-launch is a skill published in the GitHub repository autonnel/autonnel-skills (2 stars, last pushed 23d ago), licensed Apache-2.0. It adds 123 tokens to every session and 5,745 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

sumup

Implement SumUp checkout flows end-to-end. Use when writing or reviewing SumUp Checkouts API calls, Card Widget mounts, Hosted Checkout setup, recurring tokenization, Terminal SDK / Cloud API reader checkouts, or 3DS / webhook handling.

sumup/sumup-skills · 53 tokens

sumup-best-practices

Pick the right SumUp integration path and apply security best practices. Use when deciding between Hosted Checkout, Card Widget, Checkouts API, mobile SDKs, terminal SDKs, or Cloud API; choosing API key vs OAuth vs restricted keys; or reviewing SumUp integration security.

sumup/sumup-skills · 62 tokens

bestprice-shopping

Guide for using BestPrice Shopping MCP tools effectively.

TheBestCo/bestprice-mcp · 13 tokens

manage-ecommerce

Connect WooCommerce, Shopify, OpenCart, Magento, PrestaShop, Megasoft, or a custom shop API and configure the shop / eshopintegration agent tool. Use when the user wants product lookup, stock, or order data on a voice agent.

voicelogica/voice-logica-plugin · 58 tokens

manage-integrations

Connect Voice Logica integrations, enable the matching agent tool, and test with a Call ID. Use when the user wants HubSpot, Shopify, Soft1, Google, SMS, helpdesk, OAuth reconnect, private ERP tunnels, or a private PBX edge device.

voicelogica/voice-logica-plugin · 58 tokens

customer-billing-ops

Operate customer billing workflows such as subscriptions, refunds, churn triage, billing-portal recovery, and plan analysis using connected billing tools like Stripe. Use when the user needs to help a customer, inspect subscription state, or manage revenue-impacting billing operations.

Jamkris/everything-gemini-code · 57 tokens