feat: add broadcast groups for multi-agent responses#547
Merged
steipete merged 2 commits intoopenclaw:mainfrom Jan 9, 2026
Merged
feat: add broadcast groups for multi-agent responses#547steipete merged 2 commits intoopenclaw:mainfrom
steipete merged 2 commits intoopenclaw:mainfrom
Conversation
Contributor
|
Thanks! |
Contributor
|
PR 547 review (broadcast groups / multi-agent replies)
Net: solid idea + minimal diff, but not mergeable yet: fix |
Enables multiple agents to process the same message simultaneously,
allowing teams of specialized agents with atomic tasks to work together
in the same group using one phone number.
Key features:
- Configure multiple agents per WhatsApp group/DM via routing.broadcast
- Parallel (default) or sequential processing strategies
- Full session isolation (separate history, workspace, tools per agent)
- Minimal code changes (~50 lines in auto-reply.ts)
- Backward compatible with existing routing
Use cases:
- Specialized agent teams (code reviewer + security scanner + docs)
- Multi-language support (EN + DE + ES agents)
- Quality assurance workflows (support + QA agents)
- Task automation (tracker + logger + reporter)
Example config:
{
"routing": {
"broadcast": {
"strategy": "parallel",
"120363403215116621@g.us": ["alfred", "baerbel", "assistant3"]
}
}
}
This enables scaling to hundreds of focused micro-agents on a single
phone number, each handling specific atomic tasks.
d1bbcb1 to
7696416
Compare
Contributor
steipete
added a commit
that referenced
this pull request
Jan 9, 2026
Contributor
zooqueen
pushed a commit
to hanzoai/bot
that referenced
this pull request
Mar 6, 2026
zooqueen
pushed a commit
to hanzoai/bot
that referenced
this pull request
Mar 6, 2026
feat: add broadcast groups for multi-agent responses
zooqueen
pushed a commit
to hanzoai/bot
that referenced
this pull request
Mar 6, 2026
lovewanwan
pushed a commit
to lovewanwan/openclaw
that referenced
this pull request
Apr 28, 2026
lovewanwan
pushed a commit
to lovewanwan/openclaw
that referenced
this pull request
Apr 28, 2026
feat: add broadcast groups for multi-agent responses
lovewanwan
pushed a commit
to lovewanwan/openclaw
that referenced
this pull request
Apr 28, 2026
github-actions Bot
pushed a commit
to Desicool/openclaw
that referenced
this pull request
May 9, 2026
github-actions Bot
pushed a commit
to Desicool/openclaw
that referenced
this pull request
May 9, 2026
feat: add broadcast groups for multi-agent responses
github-actions Bot
pushed a commit
to Desicool/openclaw
that referenced
this pull request
May 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fixes #546
Summary
Enables multiple agents to process and respond to the same message simultaneously, allowing teams of specialized agents with atomic tasks to work together in a single WhatsApp group using one phone number.
Changes
src/web/auto-reply.tsandsrc/config/types.tsdocs/broadcast-groups.mdKey Features
✅ Configure multiple agents per WhatsApp group via
routing.broadcast✅ Parallel (default) or sequential processing strategies
✅ Full session isolation (separate history, workspace, tools per agent)
✅ Minimal code changes (~60 lines)
✅ Backward compatible with existing routing
Example Config
{ "routing": { "broadcast": { "strategy": "parallel", "120363403215116621@g.us": ["alfred", "baerbel", "assistant3"] } } }Result: All three agents process every message in this group with isolated sessions.
Use Cases
This enables scaling to hundreds of focused micro-agents on a single phone number, each handling specific atomic tasks.
Testing
Manual testing performed:
See #546 for detailed requirements and discussion.