HTML Workbench Turns AI-Generated Pages Into a Visual Editor With Real-Time Human-AI Co-Editing
AI-generated HTML pages are increasingly used for landing pages, reports, and event sites, but iterating on them through chat alone is slow. A visual editor that shares the raw source file with an agent cuts the back-and-forth and keeps the output as a plain file any tool can consume.
HTML Workbench takes an existing HTML document and turns it into a live visual editor with a preview sidebar. It does not generate HTML itself; any AI, design tool, or hand-written code can produce the page, and Workbench handles the rest. Click any element to change text, swap images, or adjust styles, and every edit writes directly back to the local source file.
Human and AI edits happen concurrently on the same file. Tell an agent to change a button color while you manually tweak a layout, and both changes land in the source without overwriting each other. A revision check pauses the editor when its state is stale, so the AI's latest changes are never lost.
The tool runs as a local Python service bound to 127.0.0.1, keeping files off the network. It ships as a first-class plugin for DeepSeek Harness, embedding the editor in the web UI sidebar, and as a skill mountable onto any agent client like Claude Code or Codex via a single npx command.
Treating the raw HTML file as the single source of truth avoids proprietary intermediate formats and keeps the output portable across any toolchain.
Concurrent human-AI editing on the same file, with a stale-state guard, is a practical alternative to the chat-only iteration loop that dominates most AI coding workflows today.
Packaging the tool as both a DeepSeek Harness plugin and a generic agent skill suggests a deliberate strategy to reach two distinct audiences: the DSH ecosystem and the broader agent-client user base.