Token导航 LogoToken导航TokenDH.com
研究检索需要联网clawhub未标认证来源可访问clear审计提醒

multi-agent-create多 Agent 创建

Agent Skill

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

总安装

6,821

周安装

290

GitHub Stars

1

下载量

2,390
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install multi-agent-create

简介

创建新 OpenClaw 代理并连接多种消息渠道,包括 Telegram、Discord、Slack 等。

  • 适用于快速扩展代理网络,支持跨平台消息同步与工作区脚手架生成。
  • 提供标准化模板与自动化脚本,降低部署复杂度。
  • 安装命令为 openclaw skills install multi-agent-create,需提前注册各平台的应用凭证。
  • 使用前请妥善保管 API 密钥,避免泄露导致账号安全风险。

SKILL.md

name
multi-agent-create
description
Create new OpenClaw agents and connect them to messaging channels (Telegram, Discord, Slack, Feishu, WhatsApp, Signal, Google Chat). Includes workspace scaffolding and channel configuration guide.
tags

Multi-Agent Create

⚡ One-line install: ``bash clawhub install multi-agent-create ``

Add a new AI agent to your OpenClaw gateway and connect it to any messaging channel.


Interactive Workflow

When the user triggers this skill (e.g. "create a new agent", "add a bot"), follow this guided flow:

Step 1: Ask for Agent Name & Channel

Prompt the user:

🤖 Let's create a new agent! First, tell me: 1. Agent name — What should this agent be called? (e.g. Luna, Marketing Bot) 2. Which channel do you want to connect it to? Supported channels: | # | Channel | Description | |---|---------|-------------| | 1 | Telegram | Telegram Bot | | 2 | Discord | Discord Bot | | 3 | Slack | Slack App | | 4 | Feishu / Lark | 飞书 / Lark Bot | | 5 | WhatsApp | WhatsApp (QR scan) | | 6 | Signal | Signal (QR scan) | | 7 | Google Chat | Google Workspace Bot | Reply with the agent name and channel number (or name), e.g. "Luna, Telegram"

Wait for the user's reply before proceeding.

Step 2: Guide Credential Setup (per channel)

Based on the user's chosen channel, provide the specific credential instructions:

Telegram

🔑 Get your Telegram Bot Token: 1. Open Telegram and search for @BotFather 2. Send /newbot and follow the prompts to name your bot 3. BotFather will give you a Bot Token like 123456789:ABCdefGHI... 4. Paste that token here

Required: botToken

Discord

🔑 Get your Discord Bot Token: 1. Go to Discord Developer Portal 2. Click New Application → name it → go to Bot tab 3. Click Reset Token and copy the token 4. Under Privileged Gateway Intents, enable Message Content Intent 5. Paste the token here

Required: token

Slack

🔑 Get your Slack App credentials: 1. Go to Slack APICreate New App 2. Enable Socket Mode → copy the App-Level Token (starts with xapp-) 3. Go to OAuth & Permissions → install to workspace → copy the Bot Token (starts with xoxb-) 4. Paste both tokens here

Required: appToken, botToken

Feishu / Lark

🔑 获取飞书机器人凭证: 1. 打开 飞书开放平台创建企业自建应用 2. 在应用的 凭证与基本信息 页面找到 App IDApp Secret 3. 在 机器人 功能页启用机器人能力 4. 把 App ID 和 App Secret 发给我 For Lark (international): same steps at Lark Developer

Required: appId, appSecret (add "domain": "lark" for Lark international)

WhatsApp

📱 WhatsApp uses QR code login: 1. I'll run the login command for you 2. A QR code will appear — scan it with your WhatsApp app 3. That's it! Ready? Just say "go" and I'll start the QR scan.

Action: run openclaw channels login --channel whatsapp --account {name}

Signal

📱 Signal uses QR code login: 1. I'll run the login command for you 2. A QR code will appear — scan it with your Signal app (Settings → Linked Devices) 3. That's it! Ready? Just say "go" and I'll start the QR scan.

Action: run openclaw channels login --channel signal --account {name}

Google Chat

🔑 Get your Google Chat Service Account: 1. Go to Google Cloud Console → create/select a project 2. Enable the Google Chat API 3. Create a Service Account → download the JSON key file 4. Send me the path to the JSON file on this server

Required: serviceAccountPath

Wait for the user to provide credentials before proceeding.

Step 3: Create Workspace

Run the helper script or create manually:

./scripts/setup-agent.sh {name} {channel}

This creates a workspace at workspace-groups/{name}/ with standard files:

  • IDENTITY.md — Name, role, emoji
  • SOUL.md — Personality and behavior
  • AGENTS.md — Startup instructions
  • USER.md — Owner info
  • HEARTBEAT.md, TOOLS.md

Step 4: Register Agent

openclaw agents add {name}-agent

Step 5: Configure Channel

Add account entry and binding to the gateway config.

Binding format (all channels):

{
  "agentId": "{name}-agent",
  "match": {
    "channel": "{channel}",
    "accountId": "{name}"
  }
}
Use accountId in the match block — not account.

Channel account config reference:

ChannelConfig PathRequired Fields
Telegramchannels.telegram.accounts.{name}botToken
Discordchannels.discord.accounts.{name}token
Slackchannels.slack.accounts.{name}mode: "socket", appToken, botToken
Feishuchannels.feishu.accounts.{name}appId, appSecret
WhatsAppchannels.whatsapp.accounts.{name}QR scan via CLI
Signalchannels.signal.accounts.{name}QR scan via CLI
Google Chatchannels.googlechat.accounts.{name}serviceAccountPath

Step 6: Verify & Restart

openclaw gateway restart
openclaw agents list --bindings
openclaw channels status --probe

Step 7: Pairing

For DM-based channels, the owner sends /start (or first message) to the bot, then approves:

openclaw pairing approve {channel} {CODE}

Report completion:

✅ Agent {name} is live on {channel}! - Workspace: ~/.openclaw/workspace-groups/{name}/ - All agents share your existing model API keys — no extra keys needed - Add more channels anytime by running this skill again

Notes

  • All agents share existing model credentials — no extra API keys needed
  • One channel is enough to bring an agent online
  • Add more channels later by repeating the workflow

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

OpenClaw

80.59%
按下载量换算1,926

安全审计

VirusTotal

可疑

ClawScan

可疑

Static analysis

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

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

来源信息

继续浏览同类 Skills