HN user

mcrowe

52 karma
Posts13
Comments47
View on HN

For those of us who are implementing similar AI-products, it's an interesting opportunity to see what worked for someone else. While it may be vibe-coded, it also... works.

In this case, I was interested in how they thought about the design aesthetics, and the prompt led me to the specific "skill", which the agent was happy to spit out for me when asked...

The Claude Design tool exposes its system prompt via the API requests it makes. I'll give them the benefit of the doubt and assume that was intentional, and not because the app was blindly vibe coded ;-).

I've linked the prompt as of around release-time yesterday. You can verify in your own network requests.

Hi! I created an "Escape Site". It has a score of challenging puzzles designed to make you think outside the box, and think differently about the way websites work. The success rate is about 10%. How do you fare?

I'd love to hear your thoughts and feedback!

I always value critical feedback. Thank you.

I think you mean that you found a name that was suggested that was not actually available. Unfortunately, this does happen, but in my experience it is less than 1% of the time. The zone files for TLDs are missing some domains which are actually unavailable.

Sorry that you had a frustrating experience.

Wow! This is super helpful. Thank you so much for to ideas, genbit.

Loved your feature suggestions. Definitely some things to move to the top of my list there. I'm curious about what exactly you meant about "search domains based on an industry". Could you elaborate on that?

Great tips on improving the business model, too. This is super valuable for me. Thanks!

Thanks a lot for your thoughts!

You're right. I would recommend the same thing to others launching on PH from now on. I didn't have any system in place to engage with users after they try it out. My product was easy to get started with, but also easy to forget.

Glad my mistakes can be lessons for others ;-).

My short term goal for NameQL is to make a really great free offering: support more TLDs, smarter suggestions, and to check for related trademarks, etc. For profitability, I was hoping that affiliate links would be enough to generate a decent revenue. It doesn't seem to be very effective, though. I'm considering adding value-added features for a small price, but I haven't planned out what those will be.

Yes! You're absolutely right. Probably my biggest mistake was not thinking about retention before launching on Product Hunt. I suspect that your experience matches that of most visitors through Product Hunt. Your suggestion about query updates may be a good one to try, and I will brainstorm other ways to make the product give more long-term value.

And yes, it is .com only for now (plans to add other TLDs soon). Thanks for the feedback that this could be clearer.

Thanks! You can request access to zone files from the domain authorities. I take the raw zone file and load it into a series of Bloom filters backed by Redis. There are a lot of domains to check against, and a probabilistic data structure is the only way to store it in memory, which you need for performance. This has the small caveat that the tool will accidentally think a domain is not available about 0.1% of the time. However, it shouldn't ever report domains as available when they are not. So that works quite well for a tool like this.