Install
openclaw skills install webBuild, debug, and deploy websites with HTML, CSS, JavaScript, modern frameworks, and production best practices.
openclaw skills install web| Need | See |
|---|---|
| HTML/CSS issues | html-css.md |
| JavaScript patterns | javascript.md |
| React/Next.js/frameworks | frameworks.md |
| Deploy to production | deploy.md |
| Performance/SEO/a11y | performance.md |
<!DOCTYPE html> triggers quirks mode; layouts break unpredictably.class overrides element selectors regardless of order=== not == — Type coercion causes "0" == false to be trueforEach doesn't await; use for...of or Promise.allAccess-Control-Allow-Origin on the server<meta name="viewport">, mobile renders desktop-widthpreventDefault — Page reloads; call e.preventDefault() in submit handlerwidth/height causes layout shift (CLS penalty)NEXT_PUBLIC_* exposes to client; never prefix secrets"Make it responsive" → Mobile-first CSS with media queries; test at 320px, 768px, 1024px
"Deploy to production" → See deploy.md for Vercel/Netlify/VPS patterns
"Fix CORS error" → Server must send headers; proxy through same-origin if you can't control server
"Improve performance" → Lighthouse audit; focus on LCP, CLS, FID; lazy-load below-fold images
"Add SEO" → Title/description per page, semantic HTML, OG tags, sitemap.xml