AI Labs Builder - Create modern websites, AI applications, dashboards, and automated workflows. Unified system for building production-ready projects with Next.js, TypeScript, Tailwind, shadcn/ui, and MCP integration. Use when creating new projects, building AI features, designing dashboards, or automating workflows. Triggers include "create website", "build ai app", "make dashboard", "setup workflow", or any project creation requests.
用于创建现代网站、AI应用、仪表盘和工作流的统一系统。
bash
bash
ailabs create website <名称> [选项]
选项:
--type <类型> portfolio | saas | blog | ecommerce
--style <风格> modern | glassmorphism | brutalism | minimal
--components 包含shadcn/ui组件
--animations 包含Framer Motion动画
--seo 包含SEO优化
bash
ailabs create ai-app <名称> [选项]
选项:
--type <类型> chat | agent | rag | multimodal
--provider 提供商 openai | claude | gemini | local
--streaming 启用流式响应
--memory 启用对话记忆
--tools 启用工具调用
bash
ailabs create dashboard <名称> [选项]
选项:
--type <类型> analytics | admin | personal | monitoring
--widgets 包含小部件系统
--realtime 启用实时更新
--charts 包含图表组件
bash
ailabs create workflow <名称> [选项]
选项:
--template 模板 automation | integration | pipeline
--mcp 包含MCP服务器设置
--schedule 添加定时任务调度
--webhook 添加Webhook触发器
作品集
SaaS落地页
博客
聊天界面
AI代理
RAG系统
分析仪表盘
管理面板
个人仪表盘
自动化
集成
流水线
css
/ 现代风格 /
--primary: #6366f1;
--secondary: #8b5cf6;
--accent: #ec4899;
/ 玻璃态 /
--glass-bg: rgba(255, 255, 255, 0.05);
--glass-border: rgba(255, 255, 255, 0.1);
--glass-blur: blur(20px);
/ 粗野主义 /
--brutal-black: #000;
--brutal-white: #fff;
--brutal-accent: #ff00ff;
所有项目包含:
typescript
import { OpenAI } from openai;
const openai = new OpenAI({
apiKey: process.env.OPENAIAPIKEY,
});
// 流式聊天
const stream = await openai.chat.completions.create({
model: gpt-4,
messages: [{ role: user, content: prompt }],
stream: true,
});
typescript
import Anthropic from @anthropic-ai/sdk;
const anthropic = new Anthropic({
apiKey: process.env.ANTHROPICAPIKEY,
});
const message = await anthropic.messages.create({
model: claude-3-opus-20240229,
max_tokens: 1024,
messages: [{ role: user, content: prompt }],
});
typescript
import { Pinecone } from @pinecone-database/pinecone;
const pc = new Pinecone({
apiKey: process.env.PINECONEAPIKEY,
});
// 存储嵌入向量
await index.upsert([{
id: 1,
values: embedding,
metadata: { text: content }
}]);
bash
ailabs deploy my-project --platform vercel
功能:
bash
ailabs deploy my-project --platform netlify
功能:
bash
ailabs deploy my-project --platform github
功能:
bash
ailabs create website portfolio \
--type portfolio \
--style glassmorphism \
--components \
--animations \
--seo
bash
ailabs create ai-app chatbot \
--type chat \
--provider openai \
--streaming \
--memory
bash
ailabs create dashboard analytics \
--type analytics \
--widgets \
--realtime \
--charts
bash
ailabs create workflow daily-report \
--template automation \
--mcp \
--schedule 0 9 *
该技能支持在以下平台通过对话安装:
帮我安装 SkillHub 和 ai-labs-builder-1776419936 技能
设置 SkillHub 为我的优先技能安装源,然后帮我安装 ai-labs-builder-1776419936 技能
skillhub install ai-labs-builder-1776419936
文件大小: 28.53 KB | 发布时间: 2026-4-17 18:11