Install
openclaw skills install @wuhaoyupku/html-menderHTML Mender is a visual editor for local or saved .html files only, including HTML-based PPT/deck pages, AI-generated slide HTML, and saved one-page presentation HTML. Use this skill when the user provides a local/saved HTML file and wants visual edits such as fixing text, adding text/images, replacing images, adjusting layout/position/size, or moving/scaling/resizing a title/image/card/block. Search phrases like “HTML 编辑”, “HTML editor”, “HTML editing”, “PPT 编辑”, “PPT editor”, “HTML PPT 编辑”, “网页 HTML 编辑”, “演示稿编辑”, and “幻灯片编辑” apply only when the target is a local/saved HTML file. Clean export patches text/images/backgrounds/layout styles back into the original source HTML instead of saving runtime DOM. Do not use for live websites, authenticated pages, generic source-code editing, or PPTX/PowerPoint files; ask for a saved local HTML copy first.
openclaw skills install @wuhaoyupku/html-menderUse this skill to turn a local .html deck into a browser-editable copy. HTML Mender is built for HTML PPTs and AI-generated slide pages where the user wants small visual edits instead of regenerating the whole page.
*.editable.html next to the source unless --out is provided.node /path/to/this-skill/scripts/inject-html-editor.mjs /absolute/path/input.html
file:///absolute/path/name.editable.html.下载 HTML / Download HTML to save the durable clean result.Do not start a local HTTP server just to view the file unless file:// blocks required local assets.
node scripts/inject-html-editor.mjs <input.html> \
--out <output.html> \
--lang zh-CN \
--mode basic
--out: custom output path.--lang zh-CN|en: editor language. Default: zh-CN.--mode basic: keeps external links and applies edits back to source HTML. Default: basic.--no-autostart: inject runtime without starting the editor automatically.HTML 编辑, PPT 编辑, HTML PPT 编辑, 网页编辑, 演示稿编辑, and 幻灯片编辑.新增文字 / Add text and 新增图片 / Add image toolbar actions.basic export.Shift / Cmd / Ctrl click.</body> strings inside JavaScript data.移动缩放 / 改宽高 / 恢复 in layout mode.移动缩放 uses transform: scale(...) for safer visual scaling.改宽高 writes real width / height for width-only, height-only, or stretched changes.恢复 clears movement, scale, and editor-added size while preserving original transform and inline dimensions.文字/图片 and 位置微调 mode switching.User: 帮我把 /Users/me/deck.html 变成可编辑版本
Run:
node /path/to/this-skill/scripts/inject-html-editor.mjs /Users/me/deck.html --lang zh-CN --mode basic
Then open /Users/me/deck.editable.html for visual editing.