Token导航 LogoToken导航TokenDH.com
研究检索敏感数据clawhub未标认证来源可访问clear审计提醒

ai-labs-builderAI 实验室建设者

Agent Skill

ai-labs-builder 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

27,181

周安装

1,144

GitHub Stars

公开资料未说明

下载量

9,518
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:ai-labs-builder(AI 实验室建设者)
来源仓库:https://github.com/slemo54/ai-labs-builder
安装命令:
openclaw skills install ai-labs-builder
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install ai-labs-builder

简介

AI Labs Builder - 创建现代网站、AI 应用程序、仪表板和自动化工作流程。用于使用 Ne 构建生产就绪项目的统一系统

SKILL.md

name
ai-labs-builder
description
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.
version
1.0.0
user-invocable
true
triggers
allowed-tools
metadata
clawdbot
emoji
🚀
config
stateDirs
[".ailabs"]

AI Labs Builder

Unified system for creating modern websites, AI applications, dashboards, and workflows.

Quick Start

# Create a website
ailabs create website my-portfolio --type portfolio

# Create an AI app
ailabs create ai-app my-chatbot --type chat

# Create a dashboard
ailabs create dashboard my-analytics --type analytics

# Create a workflow
ailabs create workflow my-automation --template automation

# Deploy
ailabs deploy my-project --platform vercel

Commands

Website Creation

ailabs create website <name> [options]

Options:
  --type <type>      portfolio | saas | blog | ecommerce
  --style <style>    modern | glassmorphism | brutalism | minimal
  --components       Include shadcn/ui components
  --animations       Include Framer Motion animations
  --seo              Include SEO optimization

AI Application

ailabs create ai-app <name> [options]

Options:
  --type <type>      chat | agent | rag | multimodal
  --provider         openai | claude | gemini | local
  --streaming        Enable streaming responses
  --memory           Enable conversation memory
  --tools            Enable tool calling

Dashboard

ailabs create dashboard <name> [options]

Options:
  --type <type>      analytics | admin | personal | monitoring
  --widgets          Include widget system
  --realtime         Enable real-time updates
  --charts           Include chart components

Workflow

ailabs create workflow <name> [options]

Options:
  --template         automation | integration | pipeline
  --mcp              Include MCP server setup
  --schedule         Add cron scheduling
  --webhook          Add webhook triggers

Project Types

1. Websites

Portfolio

  • Hero section with animations
  • Projects showcase
  • Skills/Experience timeline
  • Contact form
  • Blog integration

SaaS Landing

  • Feature highlights
  • Pricing tables
  • Testimonials
  • CTA sections
  • FAQ accordion

Blog

  • MDX support
  • Tag/categories
  • Search functionality
  • RSS feed
  • Newsletter signup

2. AI Applications

Chat Interface

  • Message history
  • Streaming responses
  • Code syntax highlighting
  • File attachments
  • Voice input/output

AI Agent

  • Autonomous task execution
  • Tool calling
  • Memory management
  • Multi-step reasoning
  • Human-in-the-loop

RAG System

  • Document ingestion
  • Vector database
  • Semantic search
  • Source citations
  • Context management

3. Dashboards

Analytics

  • KPI cards
  • Charts (line, bar, pie)
  • Date range picker
  • Export functionality
  • Real-time updates

Admin Panel

  • User management
  • Role-based access
  • CRUD operations
  • Audit logs
  • Settings panel

Personal Dashboard

  • Weather widget
  • Calendar integration
  • Task management
  • Notes/quick capture
  • Bookmarks

4. Workflows

Automation

  • Scheduled tasks
  • Email notifications
  • Data processing
  • Report generation

Integration

  • API connections
  • Webhook handling
  • Data sync
  • Event triggers

Pipeline

  • CI/CD automation
  • Testing workflows
  • Deployment pipelines
  • Quality checks

Design System

Colors

/* Modern */
--primary: #6366f1;
--secondary: #8b5cf6;
--accent: #ec4899;

/* Glassmorphism */
--glass-bg: rgba(255, 255, 255, 0.05);
--glass-border: rgba(255, 255, 255, 0.1);
--glass-blur: blur(20px);

/* Brutalism */
--brutal-black: #000;
--brutal-white: #fff;
--brutal-accent: #ff00ff;

Typography

  • Headings: Inter, Geist, or JetBrains Mono
  • Body: Inter or system-ui
  • Code: JetBrains Mono or Fira Code

Components

All projects include:

  • Button variants (primary, secondary, ghost, outline)
  • Cards (default, hover, glass)
  • Forms (input, textarea, select, checkbox, radio)
  • Navigation (header, sidebar, breadcrumbs)
  • Feedback (toast, alert, modal, tooltip)
  • Data (table, pagination, tabs)

AI Integration

OpenAI

import { OpenAI } from 'openai';

const openai = new OpenAI({
  apiKey: process.env.OPENAI_API_KEY,
});

// Streaming chat
const stream = await openai.chat.completions.create({
  model: 'gpt-4',
  messages: [{ role: 'user', content: prompt }],
  stream: true,
});

Claude

import Anthropic from '@anthropic-ai/sdk';

const anthropic = new Anthropic({
  apiKey: process.env.ANTHROPIC_API_KEY,
});

const message = await anthropic.messages.create({
  model: 'claude-3-opus-20240229',
  max_tokens: 1024,
  messages: [{ role: 'user', content: prompt }],
});

Vector Database (Pinecone/Memory)

import { Pinecone } from '@pinecone-database/pinecone';

const pc = new Pinecone({
  apiKey: process.env.PINECONE_API_KEY,
});

// Store embeddings
await index.upsert([{
  id: '1',
  values: embedding,
  metadata: { text: content }
}]);

Deployment

Vercel (Recommended)

ailabs deploy my-project --platform vercel

Features:

  • Automatic Git integration
  • Preview deployments
  • Edge functions
  • Analytics

Netlify

ailabs deploy my-project --platform netlify

Features:

  • Git-based deployment
  • Branch previews
  • Form handling
  • Edge functions

GitHub Pages

ailabs deploy my-project --platform github

Features:

  • Free hosting
  • Custom domains
  • Jekyll support
  • Actions integration

Best Practices

Performance

  • Use Next.js Image component
  • Implement lazy loading
  • Optimize fonts with next/font
  • Use React Server Components

SEO

  • Meta tags with next/head
  • Sitemap generation
  • robots.txt
  • Structured data

Security

  • Environment variables
  • Input validation
  • CSRF protection
  • Content Security Policy

Accessibility

  • ARIA labels
  • Keyboard navigation
  • Color contrast
  • Screen reader support

Examples

Create a Portfolio

ailabs create website portfolio \
  --type portfolio \
  --style glassmorphism \
  --components \
  --animations \
  --seo

Create an AI Chatbot

ailabs create ai-app chatbot \
  --type chat \
  --provider openai \
  --streaming \
  --memory

Create an Analytics Dashboard

ailabs create dashboard analytics \
  --type analytics \
  --widgets \
  --realtime \
  --charts

Create an Automation Workflow

ailabs create workflow daily-report \
  --template automation \
  --mcp \
  --schedule "0 9 * * *"

Integration with Other Skills

  • mcp-workflow: For advanced workflow automation
  • gcc-context: For version controlling project context
  • agent-reflect: For continuous improvement

Resources

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

91.9%
按下载量换算8,747

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

未展示

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills