Install
openclaw skills install gui-newCreate shareable HTML canvases via the gui.new API. Use when: (1) generating visual output (dashboards, charts, forms, tables, diagrams, landing pages, inter...
openclaw skills install gui-newHTML in, URL out. One API call turns HTML into a shareable link.
curl -X POST https://gui.new/api/canvas \
-H "Content-Type: application/json" \
-d '{"html": "<h1>Hello</h1>", "title": "My Canvas"}'
Response: {"id": "abc123", "url": "https://gui.new/abc123", "edit_token": "...", "expires_at": "..."}
Always share the url with the user after creating.
curl -X PUT https://gui.new/api/canvas/CANVAS_ID \
-H "Authorization: Bearer EDIT_TOKEN" \
-H "Content-Type: application/json" \
-d '{"html": "<h1>Updated</h1>"}'
curl -X POST https://gui.new/api/canvas/CANVAS_ID/extend \
-H "Authorization: Bearer EDIT_TOKEN"
curl -X POST https://gui.new/api/flow \
-H "Content-Type: application/json" \
-d '{"mermaid": "graph TD\n A[Start] --> B[End]"}'
For extended expiry and higher limits, pass x-api-key header + "expires": "7d" body field (1h, 24h, 7d, 30d). No API key is needed for free tier usage.
This skill sends HTML content to https://gui.new, a third-party hosted service. Do not send sensitive, private, or confidential data. Canvases are publicly accessible via their URL. Links expire (24h free, up to 30d Pro).
Use these tags directly — no script imports needed:
<gui-chart type="bar" data='[{"label":"Q1","value":42}]'><gui-table data='[{"name":"Alice","role":"Eng"}]'><gui-card title="Metric" value="1,247" change="+12%"><gui-code language="javascript">code</gui-code><gui-timeline data='[{"date":"Mar 1","title":"Launch"}]'><gui-kanban columns='[{"title":"Todo","items":["Task 1"]}]'><gui-form fields='[{"name":"email","type":"email","label":"Email"}]'><gui-grid columns="3">content</gui-grid>All form inputs (text, range, select, checkbox) sync across viewers automatically. No setup needed.
Dark background (#09090b), light text (#fafafa), system-ui font. Self-contained HTML with inline styles/scripts. Responsive.
Free: 2MB max, 24h expiry, 3 edits, 5 creates/hour. Pro: 10MB max, up to 30d expiry, unlimited edits, 100 creates/hour.
npm install gui-newpip install gui-new