Growth Strategies
No growth hacks here - just the acquisition surfaces Kit already ships and what to do with each.
Pre-Launch: The Waitlist
The marketing page captures emails from day zero (waitlist.join, see how it works). Two details worth knowing:
- The
sourcecolumn records which deployment captured the signup - useful once you run multiple landing pages userIdlinks a signup to the account it becomes, so you can measure waitlist → user conversion
Launch day, the waitlist is your distribution list - which is one more reason to wire an email provider.
Built-In Loop: Organization Invites
Kit's only viral mechanic ships in the members page (dashboard/[slug]/members): a user invites teammates, teammates become users, their personal orgs invite more teammates.
To make it work, two things:
- Set
RESEND_API_KEY-sendInvitationEmailis already wired in the better-auth org plugin, but without the key invite emails only log to the server console, so invitees never hear about them (see Production) - Instrument it - invites sent vs. accepted is your viral coefficient; the
invitationtable holds the state
SEO
The plumbing is done; you supply content:
src/app/sitemap.ts- homepage + every docs page, auto-maintainedsrc/app/robots.txt/route.ts- allows all crawlers, points at the sitemapsrc/app/layout.tsx- metadata template with OpenGraph and Twitter cards fromsite-config.ts- Docs pages emit per-page titles/descriptions from frontmatter
The docs site is your content-marketing engine - guides and comparison pages are .mdx files away, with search, SEO, and sitemap handled.
AI Discoverability
A growing share of traffic arrives via AI assistants. Kit treats them as a first-class channel:
/llms.txtindexes your docs for agents- Any docs page serves raw markdown to
Accept: text/markdownrequests robots.txtemitsContent-Signaldirectives (search / ai-input / ai-train permissions)/.well-known/api-catalogadvertises machine-readable entry points
When someone asks their assistant "how do I do X with [your product]", these are what get retrieved.
Distribution: Four Platforms
The monorepo itself is a growth lever - each app is a storefront:
- Chrome Web Store (
apps/extension) - browser extension marketplaces are an underrated discovery channel - App stores (
apps/mobile) - Expo/EAS builds for iOS and Android - Desktop (
apps/desktop) - direct downloads, or later Homebrew/winget
Same API, same auth, same data - shipping a second platform is packaging work, not product work.
Retention Before Acquisition
Pouring users into a leaky product wastes the channels above. Watch activation and retention first (analytics), talk to the users you have (feedback), then scale acquisition.
Next Steps
- Measure it - User analytics
- Production readiness - Before the traffic arrives