The Agent Skills Directory
npx skills add https://smithery.ai/skills/openclaw/evowebai-website-builder通过 AI 驱动的生成功能,从文本描述创建完整的网站。
EvoWeb 能根据自然语言提示自动生成现代化、响应式的网站。只需描述您想要的内容,AI 便会创建 HTML、CSS、JavaScript 和内容——在大约 4 分钟内交付一个完整的、可实时访问的网站。
完美适用于: 落地页、作品集、在线商店、博客、商业网站
API 基础 URL: https://api.web.oto.dev/openapi/api/v1
从以下地址获取您的 API 密钥:https://evoweb.ai/
在所有请求中包含此请求头:
Access-Token: your-api-key-here
工作流程很简单:
典型生成时间:2-5 分钟
POST /sites
根据文本描述创建一个新的网站生成任务。
请求体:
{
"prompt": "Create a modern landing page for a coffee shop with menu section, gallery of drinks, contact form, and location map. Use warm brown tones and inviting imagery."
}
响应 (200 OK):
{
"site_id": "abc123xyz",
"status": "queued"
}
状态值:
queued - 任务在队列中,等待开始building - 网站正在生成中错误响应:
401 Unauthorized - API 密钥无效或缺失402 Payment Required - 账户积分不足GET /sites/{site_id}
检查网站生成的当前状态。
示例: GET /sites/abc123xyz
生成中的响应:
{
"status": "building"
}
准备就绪时的响应:
{
"status": "ready",
"url": "https://my-site.evoweb.ai",
"editor_url": "https://editor.evoweb.ai/sites/abc123xyz"
}
失败时的响应:
{
"status": "failed",
"error": "Generation failed: Invalid prompt structure"
}
状态值:
queued - 在队列中等待building - 正在生成(请耐心等待!)ready - 完成!URL 可用failed - 生成过程中遇到错误错误响应:
404 Not Found - Site ID 不存在POST /sites/{site_id}/remake
为失败的网站重新启动生成。仅适用于状态为 failed 的网站。
示例: POST /sites/abc123xyz/remake
响应 (200 OK):
{
"status": "queued",
"editor_url": "https://editor.evoweb.ai/sites/abc123xyz"
}
错误响应:
400 Bad Request - 只能重试状态为 'failed' 的网站404 Not Found - Site ID 不存在当用户请求创建网站时,请遵循以下工作流程:
将用户的请求转换为详细、结构化的提示,包括:
示例转换:
使用增强后的提示调用 POST /sites。
存储返回的 site_id - 您将需要它来检查状态。
告诉他们:
示例:"✨ 正在为您创建网站!生成通常需要 3-5 分钟。我会检查状态,并在准备好时通知您。"
调用 GET /sites/{site_id} 来检查进度:
继续轮询直到:
ready → 进入步骤 5failed → 进入步骤 6当状态为 ready 时:
* `url` - 实时网站
* `editor_url` - 用于自定义网站的链接
2. 建议改进: 提供 3 种具体的网站增强方式:
* "添加在线预订系统"
* "自定义颜色以匹配您的品牌"
* "添加客户评价部分"
3. 保持简洁和可操作性
示例响应:
🎉 您的网站已准备就绪!
🌐 在此查看:https://yoga-studio-23f4.evoweb.ai
✏️ 自定义它:https://editor.evoweb.ai/sites/abc123xyz
您可能想要的快速改进:
1. 添加在线课程预订系统
2. 集成您的 Instagram 动态
3. 添加一个用于健康提示的博客部分
您需要其中任何一项的帮助吗?
当状态为 failed 时:
POST /sites/{site_id}/remake 并重新开始轮询示例响应:
❌ 网站生成失败:[错误信息]
您希望我再试一次吗?我可以重新启动生成过程。
如果用户同意,调用 remake 端点并从步骤 4 恢复轮询。
User request: "Create a website for my coffee shop"
Enhanced prompt:
"Create a modern landing page for 'Bean & Brew Cafe' with:
- Hero section featuring coffee and cozy atmosphere
- Menu section with drinks and pastries (with prices)
- About section highlighting locally sourced beans
- Hours and location with map
- Contact form for catering inquiries
- Instagram feed integration
Use warm brown and cream colors with inviting photography style"
User request: "I need a portfolio site"
Enhanced prompt:
"Create a professional portfolio website for a wedding photographer with:
- Stunning hero image showcasing best work
- Project gallery organized by wedding collections
- About page with photographer bio and experience
- Services and pricing packages
- Contact form for booking inquiries
- Testimonials from happy couples
Use clean, elegant design with white space, black and white aesthetic, and large image displays"
User request: "Build an e-commerce site for my jewelry"
Enhanced prompt:
"Create an online store for handmade jewelry with:
- Product catalog with filtering by category (necklaces, earrings, rings, bracelets)
- Individual product pages with multiple photos and descriptions
- Shopping cart functionality
- Checkout form with shipping options
- About the artisan section
- Custom order inquiry form
Use elegant design with soft rose gold accents and luxury feel"
User request: "Landing page for my app"
Enhanced prompt:
"Create a SaaS landing page for a project management tool with:
- Value proposition above the fold with app screenshot
- Feature showcase with icons (task tracking, team collaboration, reporting)
- Pricing table with 3 tiers (Free, Pro, Enterprise)
- Customer testimonials with logos
- Free trial CTA buttons throughout
- FAQ section
Use modern, professional design with blue primary color and clean interface"
User request: "Website for our Italian restaurant"
Enhanced prompt:
"Create a restaurant website for an authentic Italian trattoria with:
- Rotating hero images of signature dishes
- Full menu with appetizers, pasta, entrees, desserts, wine list
- Online reservation system
- About section telling family story and traditions
- Location with map and parking info
- Photo gallery of dining room and dishes
- Catering services page
Use warm, inviting design with red and green accents, rustic Italian aesthetic"
✅ 应该:
❌ 不要:
准备好仅用文本描述就能创建令人惊叹的网站了! 🚀
每周安装数
–
来源
首次出现
–
Create complete websites from text descriptions using AI-powered generation.
EvoWeb automatically generates modern, responsive websites from natural language prompts. Simply describe what you want, and the AI creates HTML, CSS, JavaScript, and content - delivering a complete, live website in ~4 minutes.
Perfect for: Landing pages, portfolios, online stores, blogs, business websites
API Base URL: https://api.web.oto.dev/openapi/api/v1
Get your API key from: https://evoweb.ai/
Include this header in all requests:
Access-Token: your-api-key-here
The workflow is simple:
Typical generation time: 2-5 minutes
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
/sitesCreates a new website generation task from a text description.
Request Body:
{
"prompt": "Create a modern landing page for a coffee shop with menu section, gallery of drinks, contact form, and location map. Use warm brown tones and inviting imagery."
}
Response (200 OK):
{
"site_id": "abc123xyz",
"status": "queued"
}
Status values:
queued - Task is in queue, waiting to startbuilding - Website is being generatedError Responses:
401 Unauthorized - Invalid or missing API key402 Payment Required - Insufficient credits on accountGET /sites/{site_id}
Check the current status of website generation.
Example: GET /sites/abc123xyz
Response when building:
{
"status": "building"
}
Response when ready:
{
"status": "ready",
"url": "https://my-site.evoweb.ai",
"editor_url": "https://editor.evoweb.ai/sites/abc123xyz"
}
Response when failed:
{
"status": "failed",
"error": "Generation failed: Invalid prompt structure"
}
Status values:
queued - Waiting in queuebuilding - Currently generating (be patient!)ready - Complete! URLs are availablefailed - Generation encountered an errorError Responses:
404 Not Found - Site ID doesn't existPOST /sites/{site_id}/remake
Restart generation for a failed website. Only works for sites with failed status.
Example: POST /sites/abc123xyz/remake
Response (200 OK):
{
"status": "queued",
"editor_url": "https://editor.evoweb.ai/sites/abc123xyz"
}
Error Responses:
400 Bad Request - Can only remake sites with 'failed' status404 Not Found - Site ID doesn't existWhen a user requests a website, follow this workflow:
Convert the user's request into a detailed, structured prompt that includes:
Example transformation:
Call POST /sites with the enhanced prompt.
Store the returned site_id - you'll need it for status checks.
Tell them:
Example: "✨ Creating your website now! Generation typically takes 3-5 minutes. I'll check the status and let you know when it's ready."
Call GET /sites/{site_id} to check progress:
Continue polling until:
ready → Proceed to Step 5failed → Proceed to Step 6When status is ready:
Provide URLs:
url - The live websiteeditor_url - Link to customize the siteSuggest improvements: Offer 3 specific ways to enhance the site:
Be concise and actionable
Example response:
🎉 Your website is ready!
🌐 View it here: https://yoga-studio-23f4.evoweb.ai
✏️ Customize it: https://editor.evoweb.ai/sites/abc123xyz
Quick improvements you might want:
1. Add online class booking system
2. Integrate your Instagram feed
3. Add a blog section for wellness tips
Would you like help with any of these?
When status is failed:
POST /sites/{site_id}/remake and restart pollingExample response:
❌ Website generation failed: [error message]
Would you like me to try again? I can restart the generation process.
If user agrees, call remake endpoint and resume polling from Step 4.
User request: "Create a website for my coffee shop"
Enhanced prompt:
"Create a modern landing page for 'Bean & Brew Cafe' with:
- Hero section featuring coffee and cozy atmosphere
- Menu section with drinks and pastries (with prices)
- About section highlighting locally sourced beans
- Hours and location with map
- Contact form for catering inquiries
- Instagram feed integration
Use warm brown and cream colors with inviting photography style"
User request: "I need a portfolio site"
Enhanced prompt:
"Create a professional portfolio website for a wedding photographer with:
- Stunning hero image showcasing best work
- Project gallery organized by wedding collections
- About page with photographer bio and experience
- Services and pricing packages
- Contact form for booking inquiries
- Testimonials from happy couples
Use clean, elegant design with white space, black and white aesthetic, and large image displays"
User request: "Build an e-commerce site for my jewelry"
Enhanced prompt:
"Create an online store for handmade jewelry with:
- Product catalog with filtering by category (necklaces, earrings, rings, bracelets)
- Individual product pages with multiple photos and descriptions
- Shopping cart functionality
- Checkout form with shipping options
- About the artisan section
- Custom order inquiry form
Use elegant design with soft rose gold accents and luxury feel"
User request: "Landing page for my app"
Enhanced prompt:
"Create a SaaS landing page for a project management tool with:
- Value proposition above the fold with app screenshot
- Feature showcase with icons (task tracking, team collaboration, reporting)
- Pricing table with 3 tiers (Free, Pro, Enterprise)
- Customer testimonials with logos
- Free trial CTA buttons throughout
- FAQ section
Use modern, professional design with blue primary color and clean interface"
User request: "Website for our Italian restaurant"
Enhanced prompt:
"Create a restaurant website for an authentic Italian trattoria with:
- Rotating hero images of signature dishes
- Full menu with appetizers, pasta, entrees, desserts, wine list
- Online reservation system
- About section telling family story and traditions
- Location with map and parking info
- Photo gallery of dining room and dishes
- Catering services page
Use warm, inviting design with red and green accents, rustic Italian aesthetic"
✅ Do:
❌ Don't:
Ready to create amazing websites with just a text description! 🚀
Weekly Installs
–
Source
First Seen
–
AI Elements:基于shadcn/ui的AI原生应用组件库,快速构建对话界面
58,500 周安装
Cloudflare Workflows 完整指南:生产就绪的服务器端工作流解决方案
341 周安装
Cloudflare Browser Rendering 浏览器自动化指南:Puppeteer与Playwright API完整参考
341 周安装
合同审阅助手:AI驱动合同分析,基于谈判手册识别风险与生成修改建议
341 周安装
Solana 命令行工具:支付、钱包与交易一站式管理 | Solana CLI 指南
344 周安装
邮件网关集成指南:Resend、SendGrid、Mailgun、SMTP2Go 多提供商API代码示例
342 周安装
react-grab:AI 开发助手,一键复制 React 组件上下文到剪贴板
343 周安装