OpenClaw AI工作流平台 是 AI Skill Hub 本期精选Agent工作流之一。综合评分 7.5 分,整体质量较高。我们推荐使用将其纳入你的 AI 工具库,帮助提升工作效率。
OpenClaw AI工作流平台 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
OpenClaw AI工作流平台 是一套完整的 AI Agent 自动化工作流方案。通过可视化的节点编排,将复杂的多步骤任务拆解为清晰的自动化流程,实现全程无人值守的智能处理。支持与数百种外部服务和 API 无缝集成,适合构建数据处理管线、业务自动化和 AI 辅助决策系统。
# 方式一:npm 全局安装 npm install -g butlr-openclaw-platform # 方式二:npx 直接运行(无需安装) npx butlr-openclaw-platform --help # 方式三:项目依赖安装 npm install butlr-openclaw-platform # 方式四:从源码运行 git clone https://github.com/lennystepn-hue/butlr-openclaw-platform cd butlr-openclaw-platform npm install npm start
# 命令行使用
butlr-openclaw-platform --help
# 基本用法
butlr-openclaw-platform [options] <input>
# Node.js 代码中使用
const butlr_openclaw_platform = require('butlr-openclaw-platform');
const result = await butlr_openclaw_platform.run(options);
console.log(result);
# butlr-openclaw-platform 配置说明 # 查看配置选项 butlr-openclaw-platform --config-example > config.yml # 常见配置项 # output_dir: ./output # log_level: info # workers: 4 # 环境变量(覆盖配置文件) export BUTLR_OPENCLAW_PLATFORM_CONFIG="/path/to/config.yml"
<p align="center"> <img src="https://butlr.cloud/favicon.svg" width="80" alt="Butlr Logo" /> </p>
<p align="center"> <strong>OpenClaw as a Service.</strong><br/> The complete managed platform that turns <a href="https://github.com/openclaw-ai/openclaw">OpenClaw</a> into a production SaaS — dedicated VMs, Telegram bots, Stripe billing, and a full customer portal out of the box. </p>
<p align="center"> <a href="https://butlr.cloud">Live Demo</a> • <a href="#-feature-showcase">Features</a> • <a href="#architecture">Architecture</a> • <a href="#getting-started">Getting Started</a> • <a href="#deployment">Deployment</a> • <a href="CONTRIBUTING.md">Contributing</a> • <a href="https://x.com/lenny_enderle">@lenny_enderle</a> </p>
<p align="center"> <img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="License" /> <img src="https://img.shields.io/badge/python-3.12-blue.svg" alt="Python" /> <img src="https://img.shields.io/badge/next.js-16-black.svg" alt="Next.js" /> <img src="https://img.shields.io/badge/react-19-61dafb.svg" alt="React" /> <img src="https://img.shields.io/badge/fastapi-0.109-009688.svg" alt="FastAPI" /> <img src="https://img.shields.io/badge/powered%20by-OpenClaw-orange.svg" alt="OpenClaw" /> </p>
<p align="center"> <a href="https://butlr.cloud"> <img src="docs/screenshots/hero.png" width="700" alt="Butlr — Your AI. Its own computer." /> </a> </p>
---
pip install -r requirements.txt
npm install
```bash cd backend
```bash cd frontend
Butlr is designed to run on a management server that orchestrates customer VMs:
Management Server (your server)
├── Caddy (reverse proxy + HTTPS)
├── PM2 (process manager)
│ ├── Butlr API (FastAPI on port 8000)
│ └── Butlr Frontend (Next.js on port 3000)
├── PostgreSQL
└── Cron Jobs
├── collect-usage.py (hourly)
└── expire-addons.py (hourly)
Customer VMs (Hetzner Cloud)
├── OpenClaw agent runtime
├── Telegram bot connector
└── ClawShield security
<p align="center"> <img src="docs/screenshots/usage-stats.png" width="800" alt="Usage Statistics" /> </p>
Complete visibility into how the butler is being used — no surprises on the bill:
Usage data is collected by the scripts/collect-usage.py cron job that SSH-es into every customer VM hourly, parses OpenClaw's JSONL session logs, and writes aggregated metrics to the usage_tracking table. The frontend fetches via /api/usage/stats with date range filters.
---
0 cd /path/to/butlr/backend && /path/to/venv/bin/python scripts/collect-usage.py
python -m venv venv source venv/bin/activate
cp .env.example .env
cp .env.example .env.local
pm2 save pm2 startup ```
yourdomain.com {
handle /api/* {
reverse_proxy localhost:8000
}
handle {
reverse_proxy localhost:3000
}
}
---
uvicorn main:app --host 0.0.0.0 --port 8000 --reload ```
Full interactive API docs are available at /docs when running the backend.
| Method | Endpoint | Description |
|---|---|---|
POST | /api/auth/login | Email/password login |
POST | /api/auth/register | Create account |
GET | /api/dashboard | Dashboard data |
POST | /api/checkout/create | Create Stripe checkout |
POST | /api/onboarding/setup | Start VM provisioning |
GET | /api/onboarding/status | Provisioning status |
GET | /api/usage/stats | Usage analytics |
GET | /api/skills/list | Available skills |
GET | /api/souls/catalog | SoulVault personalities |
GET | /api/health/{vm_id} | VM health check |
POST | /api/webhooks/stripe | Stripe webhook handler |
POST | /api/llm/chat | LLM proxy endpoint |
GET | /api/memory/list | Memory entries |
POST | /api/support/create | Create support ticket |
---
Butlr is a complete managed wrapper around OpenClaw. OpenClaw is the open-source AI agent framework that provides the core intelligence — Butlr wraps it with everything needed to run it as a commercial SaaS product.
Butlr 是一个开源的云平台,基于 OpenClaw 框架,提供了一个完整的管理平台,帮助开发者将 OpenClaw 转换为生产级的 SaaS 产品。
Butlr 提供了一个功能丰富的平台,包括 Telegram 机器人、Stripe 账单、Dedicated VM 等功能,帮助开发者快速部署和管理 OpenClaw 项目。
Butlr 需要 Python 3.12+、Node.js 20+、PostgreSQL 15+、Hetzner Cloud 账户、Stripe 账户、Telegram Bot 和 OpenClaw 等环境依赖和系统要求。
安装 Butlr 需要按照以下步骤进行:首先安装依赖项,包括 pip 和 npm,然后配置环境,最后启动后端和前端服务。
使用 Butlr 需要了解其使用统计和全透明的账单系统,包括每日计数器、API 调用次数、令牌消耗等指标,帮助开发者了解项目的使用情况和成本。
配置 Butlr 需要创建一个虚拟环境,配置环境变量,包括 MCP、env 和关键参数等,帮助开发者快速部署和管理项目。
Butlr 提供了一个 API 服务器,包括登录、注册、获取数据、创建 Stripe Checkout 等接口,帮助开发者快速集成和扩展项目功能。
Butlr 是一个基于 OpenClaw 框架的云平台,提供了一个完整的管理平台,帮助开发者将 OpenClaw 转换为生产级的 SaaS 产品,包括 OpenClaw 集成、工作流和模块等功能。
OpenClaw AI工作流平台是一个开源的AI工作流解决方案,提供了一个完整的管理包裹,简化了AI应用的部署和管理。虽然它是一个有潜力的项目,但仍然需要进一步的开发和测试来确保其稳定性和可靠性。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
经综合评估,OpenClaw AI工作流平台 在Agent工作流赛道中表现稳健,质量良好。如果你已有明确的使用需求,可以直接上手体验;如果还在评估阶段,建议对比同类工具后再做决策。
| 原始名称 | butlr-openclaw-platform |
| 原始描述 | 开源AI工作流:The OpenClaw Cloud Platform — OpenClaw as a Service. Complete managed wrapper th。⭐3 · TypeScript |
| Topics | workflowaiai-agentai-assistantanthropicbutler |
| GitHub | https://github.com/lennystepn-hue/butlr-openclaw-platform |
| License | MIT |
| 语言 | TypeScript |
收录时间:2026-05-21 · 更新时间:2026-05-30 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端