From aide
Inspects a running swarm: shows agent tree, current tools, halts/pauses, and recent task/message activity. Useful for orchestrator-side monitoring without disrupting agents.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aide:swarm-statusThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Quick orchestrator-side inspection of a live swarm. Run this when you want
Quick orchestrator-side inspection of a live swarm. Run this when you want to see what your spawned subagents are doing right now without halting them or opening the aide-web dashboard.
./.aide/bin/aide reflect current-session
Use that ID as <parent> below — it's the orchestrator session that owns
the swarm.
./.aide/bin/aide agent list --parent=<parent> --json
Returns one record per registered subagent with parent_session,
namespace, status, halt, paused, deadline.
./.aide/bin/aide task list --parent-session=<parent> --json
Filters the project-wide task bucket to ones tagged with this swarm's
parent. Look for tasks stuck in claimed without progress.
./.aide/bin/aide message list --parent-session=<parent>
Cross-agent comms within this swarm. High-priority messages from the orchestrator are surfaced to subagents on their next tool call by the signals hook.
Group by agent. For each, report:
agent:<id>:currentTool via aide state get currentTool --agent=<id> if you want this)Example output:
Swarm <parent-id-short> — 3 agents
agent-auth (running):
current: Edit src/auth/handler.ts
tasks: 2 in_progress
no flags
agent-payments (paused):
reason: scope drift — investigating
tasks: 1 claimed (#42)
paused 3m ago
agent-docs (halted):
reason: repeated rustdoc — see new instinct
halted 12m ago
additionalContext on the next tool call so the model can
read it and adjust.Both are sent via aide CLI:
./.aide/bin/aide agent halt <agent-id> --reason="..."
./.aide/bin/aide message send --from=orchestrator --to=<agent-id> \
--priority=high "redirect: focus on auth.ts only"
This skill is read-only orchestration. Use the swarm skill itself to
launch new agents or resolve worktrees at the end.
npx claudepluginhub jmylchreest/aide --plugin aideGuides multi-agent coordination using agent-swarm MCP tools: join swarms as leader/worker, delegate/claim tasks, check status, send/read messages, manage workflows.
Displays swarm state including execute/discuss mode, online roles/participants, human inbox messages, and task queue progress. Useful for status queries like 'swarm status' or 'what's going on'.
Inspects active agent work across harnesses using Moraine realtime session data when the user asks about current or recent activity.