For all those people who find it easier to bug you with a question than to just ask Claude themselves.
A passive-aggressive yet lovable link generator — in the spirit of letmegooglethat.com, but for Claude.
- You type a question into the homepage
- You get a shareable link
- The recipient sees an animated demo of the question being typed into Claude, then gets redirected to
claude.aiwith the question pre-filled
Everything is 100% static. No backend, no server, no database. Just two HTML files.
- Fork or clone this repo
- Go to Settings → Pages
- Set source to
mainbranch,/ (root)folder - Your site will be live at
https://<your-username>.github.io/<repo-name>/
That's it.
index.html ← Homepage: enter a question, generate a link
ask.html ← Animated page shown to the link recipient
Links look like:
https://yoursite.github.io/ask.html?q=What+is+the+meaning+of+life%3F
The q param contains the URL-encoded question. On load, ask.html reads it, plays the typewriter animation, then redirects to:
https://claude.ai/new?q=<encoded question>
- Change the domain/branding in
index.html(theeyebrowspan and footer) - Adjust typewriter speed in
ask.html(delayvariable intypeChar()) - The auto-redirect timeout is 1800ms — change it in
ask.htmlnear the bottom
MIT. Use it however you want.