落地页生成器:自动化高转化网页设计 - Openclaw Skills
作者:互联网
2026-04-18
什么是 落地页生成器?
落地页生成器是 Openclaw Skills 生态系统中的专用工具,旨在加速从概念到部署的过渡。它生成简洁、语义化且移动端优先的 HTML 文件,可立即进行托管。通过专注于转化优化的设计原则,该技能确保每个输出都具有清晰的层级结构、有力的排版和单一的主要行动呼吁(CTA)。
与通用生成器不同,Openclaw Skills 的这一组件还可以读取现有的 HTML 模板,在保留复杂 CSS 和 JavaScript 的同时,根据新品牌进行适配。这使其成为需要快速迭代营销页面、销售漏斗或初创公司原型而无需承受沉重 Web 框架开销的开发者的理想选择。
下载入口:https://github.com/openclaw/skills/tree/main/skills/valenciajenkins97-create/landing-page-builder
安装与下载
1. ClawHub CLI
从源直接安装技能的最快方式。
npx clawhub@latest install landing-page-builder
2. 手动安装
将技能文件夹复制到以下位置之一
全局模式~/.openclaw/skills/
工作区
/skills/
优先级:工作区 > 本地 > 内置
3. 提示词安装
将此提示词复制到 OpenClaw 即可自动安装。
请帮我使用 Clawhub 安装 landing-page-builder。如果尚未安装 Clawhub,请先安装(npm i -g clawhub)。
落地页生成器 应用场景
- 从简单的公司名称和使命宣言创建一个可部署的初创公司网站。
- 适配现有 HTML 设计模板,以匹配新品牌的颜色和信息传递。
- 为产品发布或潜在客户获取快速原型化单页营销网站。
- 生成高性能、零依赖的销售页面,以便在静态主机上快速部署。
- 用户提供包含产品名称、受众和所需品牌基调的简报。
- 如果提供了参考模板,该技能会分析结构并就地修改文本和品牌。
- 如果从头开始,系统将利用专为 Openclaw Skills 优化的高质量基础模板。
- 标题、特性、定价和证言的占位符将被替换为特定语境下、以利益为导向的文案。
- 最终输出被打包为单个独立的 .html 文件,并针对 SEO 和无障碍环境进行了优化。
落地页生成器 配置指南
要在 Openclaw Skills 中使用此功能,请确保您的工作区已初始化,并提供详细说明项目要求的提示词。
# 通过 AI 代理使用的示例
"使用 Openclaw Skills 生成一个 SaaS 平台的落地页,专注于极简设计和深色模式。"
落地页生成器 数据架构与分类体系
该技能通过结构化映射系统组织生成的内容,以确保整个页面的一致性。关键数据点包括:
| 属性 | 映射逻辑 |
|---|---|
| 品牌推广 | 集成到 BRAND 和 TITLE 占位符中 |
| 视觉识别 | 通过 PRIMARY_COLOR、BG_COLOR 和 ACCENT_COLOR 十六进制值控制 |
| 英雄区 | 使用专注于转化的文案填充 HEADLINE 和 SUBHEADLINE |
| 布局组件 | 为 FEATURES 和 PRICING_CARDS 动态注入 HTML 卡片 |
name: landing-page-builder
description: |
Build a single-page landing page from a text prompt or design brief.
USE WHEN:
- User asks for a landing page, marketing page, product page, sales page, or startup website
- User provides a business name/idea and wants a deployable web page
- User sends an HTML template and wants it adapted with new content/branding
- User asks for a "one-pager" or "single-page site"
DON'T USE WHEN:
- User wants a multi-page website (use a web framework instead)
- User wants an email template or newsletter (different format/constraints)
- User wants a blog, documentation site, or wiki
- User wants to edit an existing live site (this builds new pages, not patches)
- User wants a web app with backend logic, auth, or databases
OUTPUTS: Single self-contained .html file (no external dependencies except Google Fonts). Ready to open in browser, deploy to any static host, or deliver to a client.
INPUTS: Business name, what it does, target audience, desired tone. Optionally: a reference HTML template to adapt.
Landing Page Builder
Generate polished, conversion-optimized landing pages from natural language descriptions.
Workflow
If user provides a reference HTML template:
- Read the provided template
- Identify all text content, branding, and copy
- Modify the existing template — do NOT rewrite from scratch
- Replace copy, brand name, colors, and content to match the user's brief
- Preserve ALL CSS, animations, layout structure, SVG filters, and JavaScript exactly
- Output the adapted
.htmlfile
If no template provided:
- Ask the user (if not provided): product/service name, what it does, target audience, desired tone
- Read the base template at
assets/template.html - Replace all
{{PLACEHOLDER}}tokens with content tailored to the user's request - Customize colors, copy, sections — add or remove sections as needed
- Output a single self-contained
.htmlfile
Template Placeholders (base template only)
| Placeholder | Description |
|---|---|
{{TITLE}} |
Page |
{{BRAND}} |
Brand/company name |
{{PRIMARY_COLOR}} |
Hex color (e.g., #6366f1) |
{{BG_COLOR}} |
Background color |
{{TEXT_COLOR}} |
Body text color |
{{ACCENT_COLOR}} |
Accent color |
{{HEADLINE}} |
Hero headline — punchy, benefit-driven |
{{SUBHEADLINE}} |
1-2 sentence supporting text |
{{CTA_TEXT}} |
Button text (e.g., "Start Free Trial") |
{{CTA_URL}} |
Button link |
{{FEATURES_HEADING}} |
Section heading |
{{FEATURES}} |
HTML feature cards (use .feature-card divs) |
{{PRICING_HEADING}} |
Section heading |
{{PRICING_CARDS}} |
HTML pricing cards (use .price-card divs) |
{{TESTIMONIALS_HEADING}} |
Section heading |
{{TESTIMONIALS}} |
HTML testimonial cards (use .testimonial divs) |
{{FINAL_CTA_HEADING}} |
Bottom CTA heading |
{{FINAL_CTA_TEXT}} |
Bottom CTA description |
{{YEAR}} |
Current year |
Design Principles
- Mobile-first responsive design
- Clean typography with Inter font
- Subtle shadows, rounded corners, generous whitespace
- Conversion-focused: clear hierarchy, single primary CTA repeated
- Fast: no JS frameworks, no external dependencies beyond Google Fonts
- Accessible: semantic HTML, good contrast ratios
Common Mistakes to Avoid
- Don't rewrite templates from scratch — when adapting a reference, modify in place. Rewriting loses the design quality.
- Don't use generic stock copy — every line should feel specific to the business, not "lorem ipsum with nouns swapped in"
- Don't add sections the user didn't ask for — less is more. A tight 3-section page beats a bloated 8-section page.
- Don't break responsive behavior — test mentally that your changes work at mobile widths
Customization
Feel free to:
- Add/remove entire sections (not all pages need pricing or testimonials)
- Change the grid layouts, add animations with CSS
- Swap the font via the Google Fonts link
- Add custom CSS variables for additional theming
- Embed forms, videos, or other interactive elements as needed
Output
Save the final HTML file to the user's workspace or specified path. Suggest deployment options:
- Quick: Open locally or share the file
- Free hosting: GitHub Pages, Netlify, Vercel, Cloudflare Pages
- Custom domain: Pair with any of the above
相关推荐
专题
+ 收藏
+ 收藏
+ 收藏
+ 收藏
+ 收藏
+ 收藏
最新数据
相关文章
Minecraft 3D 建造计划生成器:AI 场景架构师 - Openclaw Skills
Scholar Search:自动化文献搜索与研究简报 - Openclaw Skills
issue-to-pr: 自动化 GitHub Issue 修复与 PR 生成 - Openclaw Skills
接班交班总结器:临床 EHR 自动化 - Openclaw Skills
Teacher AI 备课专家:K-12 自动化教案设计 - Openclaw Skills
专利权利要求映射器:生物技术与制药 IP 分析 - Openclaw Skills
生成 Tesla 车身改色膜:用于 3D 显示的 AI 图像生成 - Openclaw Skills
Taiwan MD:面向台湾的 AI 原生开放知识库 - Openclaw Skills
自学习与迭代演进:AI Agent 成长框架 - Openclaw Skills
HIPC Config Manager: 安全的 API 凭据处理器 - Openclaw Skills
AI精选
