Install
openclaw skills install awesome-demo-web-buildAI-native web demo project generator using Project Blueprint system. Use when user wants to "build a demo", "create a web project", "generate a landing page"...
openclaw skills install awesome-demo-web-buildMust use selection + free-input for all questions.
Please select a project type:
| # | Type | Description |
|---|---|---|
| 1 | AI Tool | ChatGPT, Claude, AI assistant |
| 2 | Dashboard | Analytics, admin panel |
| 3 | Landing Page | Product homepage, landing page |
| 4 | SaaS App | Notion, Linear multi-module app |
| 5 | Content Site | Blog, documentation site |
| 6 | Tool | JSON formatter, image processor |
| 7 | E-commerce | Online shop, shopping cart |
| 8 | Community | Forum, social community |
| 9 | Marketplace | Two-sided marketplace |
Enter a number or describe your requirements:
Please select pages (multiple choice, comma-separated):
Display corresponding pages list based on type:
AI Tool: /chat, /history, /settings, /new
Dashboard: /dashboard, /analytics, /reports, /[table]
SaaS App: /dashboard, /[module], /settings, /profile
Landing Page: / (single page)
Content Site: /, /blog, /blog/[slug], /docs, /search
Enter numbers, multiple selections, or describe:
Please select core components (multiple choice):
Display corresponding components list based on type:
Example - AI Tool:
| # | Component | Description |
|---|---|---|
| 1 | ChatInput | AI input box |
| 2 | ChatMessage | Message bubble |
| 3 | ChatStream | Streaming output |
| 4 | ConversationList | History list |
| 5 | ModelSelector | Model selector |
Enter a number or describe the components you need:
Please select a UI component library:
| # | UI Library | Description |
|---|---|---|
| 0 | Use recommended | shadcn/ui + Tailwind (default) |
| 1 | shadcn/ui | Highly customizable, Radix-based |
| 2 | Chakra UI | Fast prototyping, theme system |
| 3 | Mantine | Full-featured, modern feel |
| 4 | Ant Design | Enterprise admin, strict规范 |
Enter a number or specify another:
Please select a design style:
Method 1: Choose from 57 presets
| # | Design | Description |
|---|---|---|
| 1 | claude | Claude AI style |
| 2 | linear | Linear dark & minimal |
| 3 | stripe | Stripe light & business |
| 4 | openai | OpenAI style |
| 5 | vercel | Vercel minimalist |
| ... | Others 52 | Full list |
Method 2: Provide a reference URL/screenshot
Paste a URL or upload a screenshot, I will analyze and match the closest design style.
Method 3: Custom description
Describe the visual style you want, I will generate a DESIGN.md based on your description.
Enter a number, URL, or describe:
Please select an icon library (optional):
| # | Icon Library | Description |
|---|---|---|
| 0 | Use recommended | Lucide React (default) |
| 1 | Lucide React | Modern & minimal, default option |
| 2 | Iconfont | Alibaba icon set, custom icons |
| 3 | Heroicons | Tailwind official icons |
| 4 | Phosphor Icons | Rich & diverse |
| 5 | No icons needed | - |
Enter a number or specify another:
Project Type: [type]
Pages: [pages]
Components: [components]
UI Library: [ui-library]
Design Style: [design]
Icon Library: [icon-library]
Scaffolding Command:
[command]
Is this correct? Enter "confirm" to start generating, or tell me what needs to be modified.
After confirmation, execute:
Step 1: Scaffolding
npx create-next-app@latest my-project --typescript --tailwind --app --src-dir
cd my-project
npx shadcn@latest init
npx shadcn@latest add [components]
npm install [dependencies]
Step 2: Inject DESIGN.md
Step 3: Generate Code
/project-name
├── app/ # Next.js pages
├── components/
│ └── ui/ # shadcn components
├── lib/ # utils
├── DESIGN.md # ← Injected design spec
├── tailwind.config.ts # ← Applied design tokens
└── package.json
| File | Purpose |
|---|---|
references/templates.md | Blueprint definition (pages, components, scaffolding) |
references/design-catalog.md | 57 design style URL mappings |
references/best-practices.md | Tech stack best practices |
references/tech-catalog.md | Tech documentation URL mappings |