Install
openclaw skills install static-site-clonerStatic site reproduction expert - Analyze target websites and manually code their structure, visual style, and basic interactions using pure HTML/CSS/JavaScript.
openclaw skills install static-site-clonerBased on a target website URL, accurately reproduce the site's structure, visuals, and interactions using pure HTML, CSS, and JavaScript. Output only front-end code, without involving backend functionality.
Use web_fetch to retrieve the HTML content of the target website:
web_fetch(url="target_url", extractMode="markdown")
Analyze and document:
Write semantic HTML:
Write CSS styles:
Use vanilla JavaScript:
Generate runnable code:
project_directory/
├── index.html
├── styles/
│ └── main.css
└── scripts/
└── main.js
Or a single-file version (inline CSS/JS).
<!-- HTML: Semantic + Comments -->
<header class="site-header">
<!-- Navigation bar -->
<nav class="navbar">...</nav>
</header>
/* CSS: BEM Naming + CSS Variables */
:root {
--primary-color: #3498db;
--spacing-unit: 8px;
}
.navbar__link--active {
color: var(--primary-color);
}
// JavaScript: Modern ES6+ Syntax
const toggleMenu = () => {
document.body.classList.toggle('menu-open');
};
For more detailed examples and patterns, refer to: