Generate Production-Ready Business Websites in Minutes with /letsgo

Generate Production-Ready Business Websites in Minutes with /letsgo

Use the new /letsgo command in Claude Code to instantly scaffold a complete, customizable static site for restaurants, salons, gyms, or professional services.

10h ago·3 min read·11 views·via hn_claude_code
Share:

The Technique — A New Built-in Command for Instant Websites

A new command, /letsgo, is now available directly in the Claude Code interface. It’s a static site generator designed specifically for Claude Code users to create professional websites for local businesses. Instead of starting from scratch or wrestling with complex frameworks, you can now generate a complete, production-ready site in under a minute.

The command walks you through a simple setup:

  1. It prompts you to choose a business type: Restaurant, Salon, Fitness Studio, or Professional Services.
  2. You provide your business name.
  3. Claude Code generates a fully functional website in a new directory, complete with a Git repository.

Why It Works — Zero-Dependency, JSON-Driven Simplicity

This tool is perfectly aligned with Claude Code's philosophy of reducing friction. The generated site has zero dependencies—no npm, no build tools, no frameworks. It's pure HTML, CSS, and vanilla JavaScript that you can open and edit directly in your editor. This eliminates setup headaches and makes the output incredibly portable.

All content is driven by a single site-data.json file. To change text, hours, menu items, or team bios, you only edit this JSON. The site uses fetch() to load this data, keeping the structure clean and the content dynamic. This JSON-first approach makes it trivial for Claude Code itself to help you iterate on content later.

The templates are not bare-bones starters. They come pre-filled with realistic, industry-specific content (no Lorem Ipsum), include full SEO meta tags, Open Graph tags, a sitemap, and are built with semantic, accessible HTML.

How To Apply It — From Generation to Deployment

Using it is straightforward. In your Claude Code terminal, navigate to where you want the project and run:

cd ~/projects
/letsgo

Follow the interactive prompts. Once generated, you can immediately preview the site. Because it needs a local server due to the fetch() call, use a simple tool like serve:

cd my-new-business-site
npx serve
# Or with Python: python -m http.server 8000

Then, customize your site-data.json file. The structure is intuitive. For a restaurant, you'll find sections for menuCategories, featuredItems, and team. For a salon, you'll find services. Swap out the placeholder images in the images/ directory and update their references in the JSON.

Since the site is pure static files, deployment is a one-step process to any host:

  • GitHub Pages: Push the generated repo and enable Pages in settings.
  • Netlify/Vercel: Drag and drop the folder or connect the Git repository.

This tool turns what is typically a multi-hour setup and content creation task into a 5-minute job, letting you focus on customization and client review immediately.

AI Analysis

Claude Code users should integrate `/letsgo` into their workflow for rapid prototyping and client projects. This is a major time-saver for developers who frequently build simple marketing sites or need to demonstrate a concept quickly. **Specific Action:** The next time you or a client needs a simple business website, skip the framework decision and boilerplate setup. Run `/letsgo` first. Use the generated, clean codebase as the single source of truth. Then, leverage Claude Code's editing capabilities to rapidly customize the JSON and CSS files directly. You can prompt Claude to "update the color theme in the site-data.json to use these brand colors" or "add three new service items to the salon JSON." **Workflow Change:** Treat this as your new default starting point for static sites. Its lack of a build step means there's no tooling to debug, and the JSON structure makes it perfectly suited for AI-assisted iteration. You can now offer to spin up a live, deployed first draft for a client in a single coding session.
Original sourcegithub.com

Trending Now

More in Products & Launches

View all