From swarmesh
Checks current swarm status including mode (execute/discuss), online participants, human inbox messages, task queue progress, and recent events. Reports a summary to the user.
How this command is triggered — by the user, by Claude, or both
Slash command
/swarmesh:swarm-statusThe summary Claude sees in its command listing — used to decide when to auto-load this command
查看蜂群的当前运行状态、任务进度和 human 收件箱。同时兼容 execute / discuss 两种模式。
## 执行步骤
1. 执行 `${CLAUDE_PLUGIN_ROOT}/scripts/swarm-status.sh` 查看整体状态(含当前 mode)
2. 执行 `SWARM_ROLE=human ${CLAUDE_PLUGIN_ROOT}/scripts/swarm-msg.sh list-roles` 查看在线角色/参与者列表
3. 检查 human 收件箱(蜂群给主控的消息):
4. 如果当前 mode 为 execute,额外检查任务队列状态:
5. 如果当前 mode 为 discuss,额外展示最近对话:
6. 检查事件日志最近的活动:
7. 向用户汇报:
- 当前 mode(execute / discuss)
- 哪些角色/参与者在线
- human 收件箱是否有未读消息
- 任务队列进度(execute 模式)或最近对话(discuss 模式)
- 最近的活动事件
$ARGUMENTS查看蜂群的当前运行状态、任务进度和 human 收件箱。同时兼容 execute / discuss 两种模式。
${CLAUDE_PLUGIN_ROOT}/scripts/swarm-status.sh 查看整体状态(含当前 mode)SWARM_ROLE=human ${CLAUDE_PLUGIN_ROOT}/scripts/swarm-msg.sh list-roles 查看在线角色/参与者列表SWARM_ROLE=human ${CLAUDE_PLUGIN_ROOT}/scripts/swarm-msg.sh read 2>/dev/null
SWARM_ROLE=human ${CLAUDE_PLUGIN_ROOT}/scripts/swarm-msg.sh list-tasks --all 2>/dev/null
${CLAUDE_PLUGIN_ROOT}/scripts/lib/discuss-relay.sh tail 2>/dev/null
tail -20 .swarm/runtime/events.jsonl 2>/dev/null | jq -r '[.ts, .type, .role, (.data | tostring)] | join(" | ")' 2>/dev/null
$ARGUMENTS
npx claudepluginhub soein/swarmesh --plugin swarmesh/statusChecks swarm coordination status, including worker progress, pending messages, active cells, and a task list view for agent teams.
/swarm-statusDisplays a compact summary of the agent swarm state, listing all agents with names, statuses, and current tasks, plus a task breakdown by status (pending, in-progress, completed, failed, blocked).
/statusShows Network-AI swarm status: blackboard snapshot, federated budget, and recent audit activity, flagging anomalies.
/statusShows the current egregore state: work item progress table, pipeline position, token budget usage, session counts, and recent decision log entries.
/check-workersScans all active workers, reads their logs, and reports status (ACTIVE/READY/COMPLETED/STUCK) in a structured table with attention flags.
/teamLists active team agents with their roles, modules, and current intents. Supports human-readable output and --json for machine-readable format.