bus_send
Send a message to a specific agent or broadcast to all via shared message bus, supporting topics, priorities, memory persistence, and immediate wake for waiting recipients.
Instructions
消息总线【全能力发送】: to/from/body + kind/topic/priority + memory(自动沉淀向量记忆) + 广播(to="*" 唤醒所有广播订阅者)。含实时唤醒——若接收端正 inbox_wait 挂起则即时命中。返回消息 id。
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| to | Yes | 接收 agent 名; 传 "*" 表示广播(所有 inbox_wait 无 topic 订阅者唤醒) | |
| body | Yes | ||
| from | No | ||
| kind | No | message=直接消息(默认) | signal=机器/大脑衍生信号 | |
| topic | No | 可选分组键, 如 workflow:<id>/task:<id>/handoff:<id> | |
| memory | No | true → 入队后异步沉淀进向量记忆(bus → brain), memory_search 可语义召回 | |
| priority | No | low|normal|high|critical (default normal) |