skills/sales-waitlistly/SKILL.md
Waitlistly platform help — hosted pre-launch waitlist landing pages for validating a startup idea and collecting emails before you build (waitlistly.live), with custom domains and on-signup webhooks that push real-time lead data to Zapier, Make, Slack, or your own endpoint. Use when launching a waitlist landing page to validate demand before building, picking Waitlistly vs Waitlister/GetWaitlist/LaunchList for a simple idea-validation waitlist, pointing a custom domain at your Waitlistly page, wiring new-signup webhooks into a CRM/ESP/Slack when Waitlistly has no public REST API, figuring out how to send launch emails when Waitlistly only collects signups, or confirming what's free vs paid. Do NOT use for general list-growth strategy across platforms (use /sales-audience-growth) or a richer documented waitlist API/broadcasts (use /sales-waitlister or /sales-getwaitlist).
npx skillsauth add sales-skills/sales sales-waitlistlyInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
If references/learnings.md exists, read it first for accumulated platform knowledge.
What are you trying to do?
Where will the page live? Hosted Waitlistly page on a Waitlistly subdomain vs your own custom domain — drives the DNS/custom-domain path.
Where do signups need to end up? Stay in Waitlistly / flow to an ESP (which?) / CRM / Slack — drives whether you wire the webhook to Zapier/Make or a custom endpoint.
Skip-ahead rule: if the user's prompt already contains enough context, skip to Step 2.
| If the question is about... | Route to... |
|---|---|
| General audience/list-growth strategy across platforms | /sales-audience-growth [question] |
| A waitlist with a documented REST API + built-in email broadcasts | /sales-waitlister [question] |
| A developer-friendly waitlist with an unauthenticated signup API + leaderboard | /sales-getwaitlist [question] |
| One-time-pricing waitlist, form POST + webhooks, no API | /sales-launchlist [question] |
| Waitlists + giveaways with REST API + fraud webhooks | /sales-kickofflabs [question] |
| Sending the actual launch/nurture emails once you have the list | /sales-email-marketing [question] |
When routing, give the exact command, e.g.: "This is a list-growth-strategy question — run: /sales-audience-growth [your question]."
If the question is Waitlistly-specific, continue to Step 3.
Read references/platform-guide.md for the full reference — what's verified vs unconfirmed, capabilities tagged by automation surface (custom domains, on-signup webhooks → Zapier/Make/Slack/custom endpoint), the idea-validation playbook, integration recipes (generic webhook→CRM handler), and a fit comparison vs Waitlister / GetWaitlist / LaunchList / KickoffLabs.
Read references/waitlistly-api-reference.md for the programmatic surface — there is no public REST API and no public docs/pricing page (the sitemap has only /, /growth, /help, /contact, /login, /signup, /privacy, /terms). What exists: on-signup webhooks ("real-time lead data to Zapier, Make, Slack, or your own API") and custom domains. The webhook payload schema is not publicly documented — inspect a live delivery before mapping fields.
Answer the user's question using only the relevant section. Don't dump the full reference.
Focus on the user's specific situation:
/sales-waitlister or /sales-getwaitlist.If you discover a gotcha, workaround, or tip not covered in references/learnings.md, append it there.
Best-effort from research (2026-06) — review these, especially plan-gated features and pricing that may shift. Waitlistly's marketing pages are JS-rendered and there are no third-party reviews, so several specifics below are unconfirmed.
/pricing; "free to start" is the only confirmed claim. Verify tiers and subscriber/limit caps inside the app before budgeting./growth page wouldn't render during research, so referral/viral mechanics couldn't be confirmed. If a user expects a leaderboard or position-jumping referrals, verify it exists before promising it — or use a tool where it's documented (/sales-waitlister, /sales-getwaitlist, /sales-kickofflabs)./sales-audience-growth — List-growth strategy (lead magnets, referrals, cross-promotion across all platforms)/sales-waitlister — Waitlister (built-in email broadcasts, REST API + HMAC-signed webhooks, points-based referrals)/sales-getwaitlist — GetWaitlist (developer-friendly widget, unauthenticated signup API, censored leaderboard)/sales-launchlist — LaunchList (one-time-pricing waitlists, form POST + webhooks, no API)/sales-kickofflabs — KickoffLabs (waitlists + giveaways with REST API + fraud webhooks)/sales-email-marketing — Email marketing strategy (what to send once you have the list)/sales-do — Not sure which skill to use? The router matches any sales objective to the right skill. Install: npx skills add sales-skills/sales --skill sales-do -a claude-codeUser says: "I want to test demand for a SaaS idea before I build it — a clean waitlist page on my own domain, free if possible. Is Waitlistly the right pick or should I use something else?"
Skill does: Confirms Waitlistly's sweet spot — a hosted waitlist landing page you can stand up in minutes for idea validation, with custom-domain support and "free to start" (tiers unconfirmed, verify in-app). Notes there's no public API and no confirmed referral leaderboard, so if they want viral referrals or a documented API they should compare /sales-waitlister or /sales-getwaitlist. Frames the validation goal: a signal threshold (e.g., signups/visitor) that tells them whether to build.
Result: User launches a custom-domain waitlist page and sets a demand threshold before writing code.
User says: "How do I get every new Waitlistly signup into HubSpot and ping our #launch Slack channel in real time?"
Skill does: Points to Help → Webhooks/Integrations: enable the on-signup webhook to Zapier/Make (no-code → HubSpot + Slack steps) or to your own endpoint. Walks the generic receiver recipe from references/platform-guide.md: accept the POST, log the first delivery to learn the payload shape (schema is undocumented), dedupe on whatever stable id the payload carries, then map email/created-at into a HubSpot contact and post a Slack message. Warns there's no signature documented, so use an unguessable URL and validate payload shape.
Result: User has signups flowing to HubSpot and Slack, with a handler built against the real (inspected) payload rather than guessed fields.
User says: "Launch day is here. How do I email everyone on my Waitlistly list?"
Skill does: Explains Waitlistly collects signups but isn't an ESP — the send goes through your email tool. Two paths: (a) if the on-signup webhook → Zapier/Make → ESP was set up from day one, the contacts are already in your ESP, so broadcast there; (b) otherwise, export/forward the list into your ESP first. Hands off the campaign itself to /sales-email-marketing.
Result: User sends the launch broadcast from their ESP, with Waitlistly as the capture layer.
Symptom: The Waitlistly dashboard shows signups; HubSpot/Slack/your ESP shows nothing. Cause: No automation is wired up — Waitlistly's only documented egress is the on-signup webhook (to Zapier, Make, Slack, or your own API). Nothing flows out by default, and there's no REST API to pull from. Solution: In Help → Webhooks/Integrations, enable the webhook and connect it to Zapier/Make (no-code) or your own endpoint. Inspect one real delivery to confirm the payload fields before mapping them, then dedupe on a stable id so retries don't double-create contacts.
Symptom: There's no pricing page; you can't tell what the free tier covers or where limits kick in.
Cause: Waitlistly has no public /pricing page — pricing and limits live behind sign-in. "Free to start" is the only confirmed public claim.
Solution: Sign in to see current tiers and caps, and treat any number you find elsewhere as best-effort, not quoted. If a hard free-forever guarantee or transparent published pricing matters, compare /sales-launchlist (one-time pricing) or /sales-waitlister (published tiers, free plan).
Symptom: You pointed a domain at Waitlistly but it doesn't load, or shows a certificate/404 error.
Cause: DNS records aren't pointed correctly yet, or propagation/SSL issuance hasn't completed.
Solution: Follow Help → Custom Domains to set the DNS record Waitlistly specifies, then allow time for propagation and certificate issuance (often up to 24–48h). Re-check in the dashboard's domain settings; if it persists, contact Waitlistly via the /contact page since there's no status API to query.
tools
Wizlogo (wizlogo.com) platform help — a budget online logo maker (template/style-variation, marketed as "AI") plus a hub of FREE branding tools (business-name, blog-name and slogan generators, business-card maker, invoice generator, color converter, domain search). The pricing traps: the FREE logo is PERSONAL-USE-ONLY; the two cheap paid tiers are RASTER PNG/JPG only — Single (~€39.99 one-time) and Unlimited (~€3.99 per WEEK, recurring) — and VECTOR (SVG/PDF/EPS) is gated to the ~€299.99 Enterprise tier, which also bundles human designer edits and a social kit. Transparent PNG is on all paid plans. Use when making a Wizlogo logo, understanding free-vs-paid or personal-vs-commercial use, which tier unlocks vector/SVG for print, the weekly-subscription billing trap, its free name/slogan generators, or whether it has an API (UI-only — no public API, webhooks, Zapier or MCP). Do NOT use to just generate the business name (use /sales-namelix) or to compare/validate branding tools (use /sales-idea-validation).
tools
VistaPrint platform help (vistaprint.com, a Cimpress company) — the small-business design + print + digital-marketing platform: a free AI Logomaker (4 generations, 60 more after free sign-up) exporting SVG/PNG/PDF at 4000x4000 with no watermark, a free Brand Kit, business cards/flyers/signage/apparel/promo print, and a website builder. THE RIGHTS TRAP: VistaPrint states NO intellectual-property rights transfer on an AI-generated logo — you get usage rights but CANNOT register it for trademark or copyright; only its human designer service transfers full IP. Use when making a VistaPrint logo, asking if you own or can trademark it, running out of AI logo credits, printed colors not matching the screen, bleed/DPI/font file-prep rejections, or asking whether VistaPrint has an API (the consumer site does not — automation runs through the parent Cimpress Open partner-fulfilment API). Do NOT use for Vista Social scheduling (use /sales-vistasocial) or comparing logo tools market-wide (use /sales-idea-validation).
tools
Turbologo (turbologo.com) platform help — a budget AI/DIY logo maker: enter a business name + industry, pick icons and colors, and it proposes logo concepts you refine in an in-browser editor, then pay a one-time fee to download (designing is free, previews are watermarked, downloading is the paywall). Vector SVG/PDF is gated to the mid tier and up; the top tier adds a brand kit (business cards, letterheads, email signatures, social assets). Use when generating a logo in Turbologo, choosing which download tier to buy, vector SVG vs raster PNG, removing the free watermark, the time-limited edit-after-purchase window, pay-to-download pricing questions, whether an AI logo is yours to trademark, or whether Turbologo has an API to bulk-generate logos (it is UI-only — no public API, webhooks, Zapier, or MCP). Do NOT use to generate the business name (use /sales-namelix), compare or validate branding tools across the market (use /sales-idea-validation), or build wider marketing creative (use /sales-canva).
tools
Online Logo Maker (onlinelogomaker.com) platform help — a long-standing free/freemium DIY logo maker: build the mark yourself from icons, shapes, text, and fonts — MANUAL/template-based, NOT enter-a-name-get-AI-concepts. The free pack downloads a LOW-RES 300px PNG with a background; vector SVG, transparent PNG, and 2000px high-res are gated to a one-time lifetime Premium pack (not a subscription). The free tier's commercial-use rights are disputed by reviewers — clean ownership effectively needs Premium, and a shared-icon mark can be non-distinctive. Use for building/editing a logo here, free download vs Premium, vector SVG or transparent PNG, one-time pricing, commercial-use/trademark terms, near-namesake confusion (NOT LogoMaker.com / LogoMakr / Logomakerr.ai), or whether it has an API (UI-only — no API, webhooks, Zapier, MCP). Do NOT use to generate the business name (use /sales-namelix), compare branding tools across the market (use /sales-idea-validation), or build wider creative (use /sales-canva).