一键导入
swarm-status
Inspect a running swarm — show the agent tree, current tools, halts/pauses, and recent task/message activity for the orchestrator's own swarm.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Inspect a running swarm — show the agent tree, current tools, halts/pauses, and recent task/message activity for the orchestrator's own swarm.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Explore codebase structure, entry points, tech stack, hotspots, and call graphs
Search code symbols, find function calls, and analyze codebase
Run the instinct parser catalogue against this session's observe events to surface candidate patterns for promotion to memories. Two-pass: gather candidates, judge intent, write proposals.
Parallel agents with SDLC pipeline per story
Systematic debugging workflow for tracking down bugs and issues
Technical design and architecture for implementation
基于 SOC 职业分类
| name | swarm-status |
| description | Inspect a running swarm — show the agent tree, current tools, halts/pauses, and recent task/message activity for the orchestrator's own swarm. |
| triggers | ["swarm status","what are the agents doing","show swarm","agent status","check agents"] |
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.