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.
npx skills add S3YED/appie-kit --skill saas-funnel-cloninggit clone --depth 1 https://github.com/S3YED/appie-kitWrote 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.
[](https://agentmods.dev/skills/s3yed/appie-kit/saas-funnel-cloning)<a href="https://agentmods.dev/skills/s3yed/appie-kit/saas-funnel-cloning"><img src="https://agentmods.dev/badge/skills/s3yed/appie-kit/saas-funnel-cloning/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.
<a href="https://agentmods.dev/skills/s3yed/appie-kit/saas-funnel-cloning"><img src="https://agentmods.dev/badge/skills/s3yed/appie-kit/saas-funnel-cloning.svg" alt="Reviewed on agentmods" width="80" height="20"></a>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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00049 | $0.02056 |
| Opus 5 | $0.00024 | $0.01028 |
| Sonnet 5 | $0.00010 | $0.00411 |
| Haiku 4.5 | $0.00005 | $0.00206 |
Grade A, and why
saas-funnel-cloning 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 6d 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.
Also extract the raw HTML source with curl for design token extraction: How it starts
The opening of the file, as written. The whole thing — 173 lines — stays where its author put it; the contents beside it link to each section on GitHub.
SaaS Funnel Cloning
Clone a landing page or funnel from a SaaS builder (GoHighLevel, ClickFunnels, etc.) into a standalone HTML/CSS site and deploy it on GitHub + Vercel.
When to use
- User gives you a URL to a GoHighLevel, ClickFunnels, or similar SaaS funnel preview
- User wants a "one-to-one clone" as static HTML on their own domain
- User wants to move away from the SaaS builder and iterate faster with voice/chat
Workflow
Step 1: Extract the page structure
Use the browser tool to visit the preview URL:
browser_navigate(url)
From the snapshot, identify:
- Layout structure (hero, sections, CTA, footer)
- All headings, text content, and button labels
- Image URLs from browser_get_images()
- Fonts from Google Fonts links in the page
- CSS custom properties / design tokens (colours, font families)
Also extract the raw HTML source with curl for design token extraction:
curl -sL '<URL>' -o source.html
grep -E '"\-\-(color|primary|secondary|headline|content|text-color|link-color)"' source.html
Step 2: Download key assets
Use curl to download images from the CDN. Target the highest resolution available (r_1200 or higher). Save into assets/ directory.
curl -sL '<CDN_URL>' -o assets/<name>.<ext>
Expected assets:
- logo.png (brand logo)
- hero-bg.png (hero background)
- ibrahim-hero.jpg (coach/trainer photo)
- favicon.jpg
- testimonial-bg.webp (testimonial backgrounds)
- feature-icon-*.png (feature section icons)
- result-*.jpg (before/after transformation photos)
Step 3: Research conversion principles (coaching/fitness funnels)
If the funnel is for a coaching, fitness, or info-product vertical, research Russell Brunson's conversion frameworks before building:
- DotCom Secrets: Value Ladder (5 rungs), Hook-Story-Offer, The Secret Formula
- Expert Secrets: Attractive Character, Soap Opera Sequence, Application/Quiz Funnel
- Traffic Secrets: Traffic temperature determines the funnel entry page
Key principles to apply:
- One CTA per page -- eliminate navigation links that distract
- Hook-Story-Offer -- every section leads with emotion, proves with logic, closes with a CTA
- Price anchoring -- show the value wall (e.g. 2,497 value) before the price (e.g. 497)
- Real scarcity -- "I only take 10 new clients per month" not "limited time offer"
- Keep the loop open -- thank you pages say "being reviewed / being customised" not "confirmed"
- Qualify with questions -- 4-7 questions that both engage AND segment
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.
- 6d ago First seen · 173 lines · 49 tokens per session scan A 10f2759f6b72
saas-funnel-cloning is a skill published in the GitHub repository S3YED/appie-kit (9 stars, last pushed 14d ago), licensed MIT. It adds 49 tokens to every session and 2,056 once invoked, about $0.0002 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-09-03.
Other skills, from other repositories
scaffold
Create a new Next.js or Astro project on the bundled Cloudflare Workers stack with pnpm, Biome and Tailwind. Use for an empty target directory; skip existing applications and requests for a different stack.
clone-website
Reverse-engineer and clone a website in one shot — extracts assets, CSS, and content section-by-section and proactively dispatches parallel builder agents in worktrees as it goes. Use this whenever the user wants to clone, replicate, rebuild, reverse-engineer, or copy any website. Also triggers on phrases like "make a…
animation-patterns
Framer Motion patterns, page transitions, skeleton loading, scroll-linked animations, and gesture-based interactions for React.
component-library-patterns
Design system token management, component API design, Storybook, and visual regression testing patterns.
design-loop
Autonomous multi-page site builder using a baton-passing loop. Each iteration reads a task from .design/next-prompt.md, generates a page in HTML/Tailwind, integrates it into the site, verifies visually, then writes the next task to keep the loop alive. Use whenever the user asks to build an entire site autonomously…
color-palette
Generate complete, accessible colour palettes from a single brand hex. Produces 11-shade scale (50-950), semantic tokens, dark mode variants, Tailwind v4 CSS output, WCAG contrast checks. Use whenever the user supplies a brand hex and asks for a palette, mentions setting up a design system, wants Tailwind theme…