The honest history of this site. No marketing recap — just what changed, when, and why. If you want the raw commit log, it’s public on GitHub.
Roadmap
What’s coming next
Soft commitments, not promises. Dates are deliberately rough — we’d rather ship and adjust than miss a hard deadline you saw on a page.
Next 30 days
Run the tool_usage migration in prod + watch the gate live
Apply db/migrations/004_tool_usage.sql, confirm the freemium quota gate behaves under real traffic, fix anything that breaks. This is the unlock for the entire pivot — until the table exists, anon users hit a fallback path.
Next 60 days
Per-tool example outputs from real user briefs (with consent)
Right now /tools/[id] shows a hand-written example output. As paying users opt in, we'll swap those for real anonymized outputs from actual paid runs — better proof, still no fabrication.
Next 90 days
Export pipeline — Markdown + PDF on the paid tier
Paid users should be able to one-click export any generation as Markdown or PDF. Currently it's copy-paste from the UI. Pairs with stored generation history per account.
Later
More tools, only if there's signal
The 17 tools cover the launch-day artifacts of a typical SaaS founder. We'll add more (positioning canvas, investor update template, churn diagnostic) only when usage on the existing tools shows founders asking for them — not before.
Later
Free public APIs for the most-used tools
If a tool gets enough traffic to make it worth the surface area, expose a thin public API so founders can integrate the generator into their own onboarding / setup flows.
History
Pivot
Pivot from agency to freemium AI toolkit
Dropped the 'done-for-you digital agency' positioning. The product is now 17 freemium AI tools at /tools — naming, landing copy, cold email, ad copy, pitch deck, SEO and competitor audits. Free preview, no credit card. $19–$99 one-time per tool for unlimited; $19/mo for all 17. Removed every fabricated stat, fake testimonial, and invented case study from the site. Reason: agency framing produced zero qualified traffic over seven weeks. The toolkit is what people actually want.
Honesty
Removed all fake reviews and fabricated metrics
Stripped the site of every fake testimonial (Sarah Chen, Marcus Reeves, Priya Sharma — none are real), every invented stat ('850+ projects shipped', '98% retention', '4.9★ rating'), every fake aggregateRating JSON-LD, and every fabricated case study. Pre-pivot agency content was producing structured-data policy risk and audience-trust risk. Now: if a number appears on the site, it is verifiable.
Release
Freemium gate live — anon / email / paid tiers
Built /api/free-generate with a real quota gate at /lib/freemium.ts. Anonymous: 1 truncated preview per tool per day. Email-gated: 3 full-length runs per tool per month. Paid one-time or subscribed: unlimited. Uses Claude Haiku for free tier and Claude Sonnet for paid. Rate limiting + honeypot + bot detection on top of the gate. New db migration /db/migrations/004_tool_usage.sql tracks the quota in Postgres.
Fix
Hardened payment → delivery flow
Closed three silent-failure holes in the paid-order pipeline: (1) /api/generate no longer throws before its alert net when CRON_SECRET is missing, so paid customers don't silently lose their order; (2) added idempotency guard on Stripe webhook so retries don't create duplicate orders or double-count affiliate commissions; (3) generated-but-undeliverable orders now email a failure alert instead of marking themselves delivered with no email sent. Verified every Stripe price ID in /data/instant-services.ts maps to a real live price.
Fix
SEO recovery — canonical footgun + noindex thin pages
Removed the sitewide canonical that was forcing every page to canonicalize to '/' — Google was treating 763 pages as duplicates of the homepage and dropping them from the index. Added explicit per-page self-canonicals via the metadata helpers. Noindex'd the thin programmatic geo/location/solution pages and cleaned the sitemap to only include pages with unique content.
Release
Live AI demo + exit-intent popup
Embedded a real Claude-API-powered demo on the homepage so visitors can try a tool without leaving the page. Pattern: anonymous preview → soft email gate → unlock. This is the seed of the freemium flow that's now the entire product.
Release
17 AI tools shipped with auto-delivery + Stripe
All 17 instant tools live with Stripe checkout and Claude API auto-delivery. Each tool: takes a brief, calls Claude, emails the output via SES, marks the order delivered. The toolkit catalog became the foundation for the freemium pivot.
Release
Wired Stripe products with real live price IDs
Created the 17 one-time SKUs + 4 monthly subscription products in Stripe Live. Each tool in /data/instant-services.ts maps to its real Stripe price ID. Webhook handler in /api/webhook/stripe persists orders, attributes referrals, triggers auto-delivery.