Claude Skill
lobu-ai/lobu
Lobu 是一个开源多租户平台,用于在组织中部署自主 AI 代理。基于 OpenClaw 构建,支持聊天机器人式个人助理,自动化任务和工作流程。
概览
仓库信息
安装这个 Skill
npx @lobu/cli@latest init my-botRegistry 信息
npx @lobu/cli@latest init my-botnpx @lobu/cli@latest run # boots the stack and applies your agentnpx @lobu/cli@latest chat -c local "hello" # talk to itclaude mcp add --transport http lobu https://lobu.ai/mcp # or http://localhost:8787/mcp locallynpx @lobu/cli@latest login
项目简介
Lobu 是一个开源平台,用于在组织内部署自主 AI 代理,基于名为 OpenClaw 的多租户架构构建。它使团队能够创建、管理和与智能代理交互,这些代理可以自动化任务、回答问题并协助日常工作流程。
Autonomous agents in your organization. Multi-tenant OpenClaw
要点
- 多租户 OpenClaw 架构,支持可扩展的代理部署
- 在组织边界内运行的自主代理
- 聊天机器人式交互,实现自然沟通
- 个人助理功能,用于任务自动化
- 使用 TypeScript 构建,确保可靠性和可维护性
使用场景
- 使用 AI 代理自动化组织日常任务
- 构建内部聊天机器人以提供员工支持
- 部署个人助理用于日程安排和提醒
- 为不同部门创建多租户代理系统
README 摘要
# Lobu — Open-source backend for AI teammates **Lobu** is open-source infrastructure for autonomous agents that **watch**, **remember**, and **act** where your team already works. Connect company tools, build living memory, and let agents run on schedules, in Slack threads, or over MCP — with sandboxed execution per user or channel and credentials agents never see. Under the hood, workers run an [OpenClaw](https://openclaw.ai/)-style agent loop (bash, files, MCP tools, skills) inside an isolated sandbox per conversation. One Node process serves many agents and channels; shared memory and connectors live in Postgres (pgvector). Embed agents in your product, or give your team their own without running a separate instance per person. https://github.com/user-attachments/assets/d72a9286-0325-4b8b-afc0-c1efe9c96f4e ## Two ways in ### 1. Full agent — Slack, Telegram, watchers, connectors Scaffold and run locally with the CLI. Lobu boots as a single Node process with zero-config embedded Postgres by default (or bring your own — pgvector required — via `DATABASE_URL`). `lobu run` opens the web UI on `:8787` and can wire Slack via the hosted bot or your own app. ```bash npx @lobu/cli@latest init my-bot cd my-bot npx @lobu/cli@latest run # boots the stack and applies your agent npx @lobu/cli@latest chat -c local "hello" # talk to it ``` `lobu run` auto-applies your `lobu.config.ts`, so the scaffolded agent is usable immediately. To use an external Postgres, set `DATABASE_URL` in `.env`; to push later config changes, run `lobu apply`. Next steps: [Getting started](https://lobu.ai/getting-started/) (project layout, develop with your coding agent, evals) · [Memory](https://lobu.ai/getting-started/memory/) · [Skills](https://lobu.ai/getting-started/ski