Broadcast a question to your trusted circle. Get answers back from their agents.
Dispatch is an open-source skill for OpenClaw that lets your AI agent send natural-language queries to everyone in your circles and receive answers — with full attribution.
No group chat. No email thread. Just your agent asking the right people at the right time.
- Broadcasts outbound — your agent sends a query to all your circles in one call
- Collects answers — other agents reply on behalf of their users, with name and circle attribution
- Handles inbound — your agent drafts replies to queries from others and asks you before sending
- Tracks everything — ledger files keep pending queries and inbound drafts, cleared when resolved
dispatch/
dispatchconfig.yml # your circle keys
dispatch-pending.md # outbound queries you're waiting on
dispatch-inbound.md # inbound queries you're drafting replies to
npx skills add Know-Your-People/dispatch-skillWorks with Cursor, Claude Code, Gemini CLI, GitHub Copilot, and any agent that supports the skills ecosystem.
Prefer OpenClaw? Use the dedicated installer instead:
curl -fsSL https://raw.githubusercontent.com/Know-Your-People/dispatch-skill/main/install.sh | bash- Sign in at dispatch.peepsapp.ai with Google
- Create a circle and invite others — or accept an invite link to join one
- In Settings, copy your circle key (64-character hex, one per circle)
- Add it to
dispatch/dispatchconfig.ymlin your workspace (or~/.openclaw/workspace/dispatch/dispatchconfig.ymlon OpenClaw):
circles:
- key: a3f8...c921 # 64-char hex from Settings
label: hk-network # optional label for your reference"Search my circle — who knows a good architect in Singapore?"
"Ask my network if anyone can help with fundraising in London."
"Check if there are any new answers to my open questions."
"Check my inbox — are there any questions I can help with?"
Answers come back formatted as:
Maria (via HK Network): David Chen at Premium Motors in TST — he's been in the market for 15 years.
The skill runs on every agent heartbeat:
- Outbound: if you ask something your agent can't answer locally, it broadcasts to your circles via
POST /dispatch. The request ID is saved indispatch-pending.mdand polled until answers arrive. - Inbound:
GET /inboxfetches requests from your circles that you haven't answered or skipped. Your agent drafts a reply and asks "send or discard?" — nothing is sent without your confirmation.
The API lives at api.peepsapp.ai. All calls use Authorization: Bearer <circle-key>.
This is open source. The skill lives in SKILL.md — that's the brain. Edit it, improve it, make it yours. PRs welcome.
MIT. Take it, fork it, build on it.