skills/sales-tuemilio/SKILL.md
Tuemilio platform help — early-access waitlist and pre-launch validation tool with a built-in viral referral loop, leaderboards, white-labeled subscriber dashboards, and email marketing (tuemilio.com). Use when embedding the Tuemilio waitlist with referral position tracking on a landing page or React/Next.js app via the JavaScript SDK, hitting the 'never use the REST API on your frontend' warning, building a server-side REST integration (base tuemilio.com/api/v1, ?api_token= query auth) to create/list/update/delete subscriber emails or add referral points, handling the new-subscriber / grant-access / confirmed-subscriber webhooks into a CRM or Slack, syncing subscribers to Mailchimp or Zapier, granting early access in batches at launch, fighting referral fraud (anti_points, blocked, fraud_id), or choosing between the Founder, Startup, and Enterprise plans. Do NOT use for list-growth strategy across platforms (use /sales-audience-growth) or the launch email campaign itself (use /sales-email-marketing).
npx skillsauth add sales-skills/sales sales-tuemilioInstall 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?
new-subscriber / grant-access / confirmed-subscriber into a CRM, Slack, or warehousepoints vs anti_points, blocked, fraud_idWhere will the form live? Hosted page / a no-code builder / a React/Next.js app — drives the JS SDK install path.
Where do subscribers need to end up? Stay in Tuemilio / Mailchimp / a CRM / your warehouse — drives webhook vs REST API vs Zapier.
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 built-in email broadcasts + HMAC-signed webhooks | /sales-waitlister [question] |
| A developer waitlist with an unauthenticated signup API + censored leaderboard | /sales-getwaitlist [question] |
| A cheap no-code referral waitlist with an npm SDK | /sales-referlist [question] |
| Waitlists + giveaways/contests with fraud webhooks | /sales-kickofflabs [question] |
| The launch/nurture email campaign strategy itself | /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 Tuemilio-specific, continue to Step 3.
Read references/platform-guide.md for the full reference — capabilities tagged by automation surface, pricing and plan gates, the Wait List / Email / Dashboard data model, quick-start recipes (Next.js JS SDK with referral attribution; webhook→CRM handler; server-side REST sync + batch access grant), integration patterns, and a fit comparison vs Waitlister / GetWaitlist / Referlist / LaunchList.
Read references/tuemilio-api-reference.md for the verbatim API — REST base https://tuemilio.com/api/v1 with ?api_token= query auth (Emails: list/get/create/update/delete/add-points; Wait Lists: list/get), the JavaScript SDK (Tuemilio('init'|'createSubscriber'|'getDashboard'|…), config object, event listeners), and the three webhook events with their X-Tuemilio-Event header and payload schema.
Answer the user's question using only the relevant section. Don't dump the full reference.
Focus on the user's specific situation:
api_token is a secret. Use the JS SDK (createSubscriber, getDashboard, event listeners) client-side; reserve REST for your server.api_token rides in the query string, not a header — keep it out of client code, logs, analytics, and Referer headers; rotate it if it leaks.referralId to createSubscriber (JS) or referral_id/referrer_id to POST /emails (REST) — capture it from the inbound ?r= link. Omit it and the referrer earns no points and doesn't move up.add-points is additive; PUT /emails sets points absolutely. Pick the right one for rewards vs corrections.X-Tuemilio-Event, validate User-Agent: Tuemilio-Hookshot/1.0, and dedupe on subscriber id.grant-access. Grant early access in batches (configurable frequency/size); the grant-access webhook is your hook for provisioning + a "you're in" email.anti_points, blocked, and fraud_id are how Tuemilio flags gaming — gate rewards on clean records.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.
api_token query param is a secret. Client-side work goes through the JS SDK; REST is server-only.api_token is a query parameter, not a header — it can leak via logs, browser history, and Referer. Treat the URL as sensitive and rotate on exposure.X-Tuemilio-Event, validate the Tuemilio-Hookshot/1.0 user-agent, use a secret URL, and make handlers idempotent on id.window — initialize inside a useEffect with a typeof window !== 'undefined' guard, and use the Widget List UUID (not the numeric list ID) in the snippet.add-points vs PUT differ: add-points increments (5 + 2 = 7); PUT /emails with points overwrites. Using the wrong one silently corrupts leaderboard standings.referralId (JS) / referral_id or referrer_id (REST), parsed from ?r=. Missing it = no referral credit.confirmed-subscriber only fires if confirmation emails are enabled — if you gate access on it without that automation on, the event never arrives./sales-audience-growth — List-growth strategy (lead magnets, referral design, cross-promotion across all platforms)/sales-waitlister — Waitlister (built-in email broadcasts, HMAC-signed webhooks, points-based referrals)/sales-getwaitlist — GetWaitlist (developer widget, unauthenticated signup API, censored public leaderboard)/sales-referlist — Referlist (cheap no-code referral waitlist with an npm SDK)/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'm adding Tuemilio to my Next.js landing page. How do I show the signup + referral position, and make sure referrals actually credit the referrer?"
Skill does: Walks through the JS SDK loader inside a useEffect with a typeof window guard (Recipe 1), using the Widget List UUID and the t-signup div. For attribution, captures the inbound ?r= value and passes it to Tuemilio('createSubscriber', { address, referralId }), and uses onSubscriberCreated / onDashboardData to render position + leaderboard. Stresses not to call the REST API from the browser.
Result: Working client-side widget with referral attribution and a live position dashboard.
User says: "Every new Tuemilio subscriber should create a contact in HubSpot and ping Slack. What's the cleanest way?"
Skill does: Recommends the new-subscriber webhook (no-code path: Zapier New Subscriber trigger; coded path: your endpoint). Shows the handler from references/platform-guide.md Recipe 2 — switch on X-Tuemilio-Event, validate User-Agent: Tuemilio-Hookshot/1.0 and a secret URL (no HMAC exists), dedupe on id, map address/position/referral_id into HubSpot, then post to Slack. Notes the grant-access event for launch day.
Result: New signups flow to HubSpot + Slack idempotently, with a launch-day path ready.
User says: "Which Tuemilio plan do I need, and how do I keep Mailchimp in sync with my waitlist?"
Skill does: Notes API, webhooks, custom domains, and unbranded forms are on all tiers, so Founder ($29) covers most solo launches; Startup ($49) adds teams + priority support. For Mailchimp, points to the native auto-sync integration, or a new-subscriber webhook / REST GET /lists/{id}/emails pull for custom field mapping. Hands the launch campaign itself to /sales-email-marketing.
Result: User picks Founder and has Tuemilio→Mailchimp sync running.
Symptom: Friends sign up through a referral link but the referrer's points and position don't change.
Cause: The referral code isn't being forwarded — the JS createSubscriber call omits referralId, or the REST POST /emails omits referral_id/referrer_id, so there's nothing to attribute.
Solution: Capture the inbound ?r= value from the visitor's URL and pass it (referralId in the SDK, referral_id or referrer_id in REST). Confirm in the dashboard that the referrer's points increment; use add-points only for manual bonuses (it's additive).
Symptom: You're tempted to call tuemilio.com/api/v1/...?api_token=... from frontend JavaScript.
Cause: The REST API authenticates with a secret api_token query param and is not meant for the browser.
Solution: Use the JavaScript SDK client-side (createSubscriber, getDashboard, events). Keep the REST API and token strictly server-side, out of logs and Referer headers; rotate the token at /profile#api-token if it was ever exposed.
Symptom: Your endpoint gets nothing, or you can't tell which event arrived / whether it's authentic.
Cause: Either the event isn't subscribed (confirmed-subscriber needs confirmation emails enabled), or you're looking for a signature that doesn't exist.
Solution: Subscribe to the right event (new-subscriber / grant-access / confirmed-subscriber), read the X-Tuemilio-Event header to branch, and since there's no HMAC, authenticate with a secret URL + the Tuemilio-Hookshot/1.0 user-agent and dedupe on id. Test with a real signup and reconcile against GET /lists/{id}/emails.
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).