from textwrap import dedent html = dedent(r''' Single HTML Prompt Generator Studio
Single HTML Prompt Generator

Build Prompt Systems

A self-contained studio for designing advanced prompt packs that tell another LLM how to create a polished single HTML file. Users can tune up to 20 fields, rank 10 of them in dropdowns, and instantly generate structured JSON, a detailed creative brief, and a downloadable package.

Range Technical to Aesthetic Move from code architecture, data, and UI systems to mood, narrative, brand feel, and styling language.
Depth 20 Adjustable Fields Each field has a type, category, label, value, and priority so your prompt stays structured instead of messy.
Focus 10 Priority Dropdowns Choose which fields matter most so the final JSON tells the next model what to emphasize first.
Output Copy + Download Export a prompt package JSON, a natural-language instruction set, and a reusable HTML-based handoff package.

Prompt Configuration Studio

Set the project, tune the behavior, and fill the 20 field system.

Mix technical, product, design, storytelling, brand, and system thinking. Active chips feed the final prompt package.

20 Adjustable Prompt Fields

Each field can be renamed, retyped, and reprioritized.

10 Priority Dropdowns

Use these to tell the next LLM which field clusters should dominate the result.

Generated Output

Copy this into another LLM or save the package for reuse.

Active fields20
Priority count10
Style tags0
Prompt words0

        

        
''') path = "/mnt/data/single-html-prompt-generator.html" with open(path, "w", encoding="utf-8") as f: f.write(html) print(f"Created {path}")