#!/usr/bin/env python3 """ Extract Claude Design "standalone" HTML exports. Claude Design packs the whole React app as base64+gzip blobs inside ', html, re.DOTALL, ) return m.group(1) if m else None def extract(html_path: pathlib.Path, out_dir: pathlib.Path) -> dict: html = html_path.read_text(encoding="utf-8") manifest_raw = grab_script(html, "manifest") if not manifest_raw: raise SystemExit(f"No