一键导入
bwoc-list
List BWOC agents registered in the workspace. Wraps `bwoc list`. Use to discover which agents exist, their backend, status, and pending inbox counts.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
List BWOC agents registered in the workspace. Wraps `bwoc list`. Use to discover which agents exist, their backend, status, and pending inbox counts.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Open an interactive chat session with a BWOC agent using its manifest-driven backend/model. Wraps `bwoc chat`. Use for back-and-forth conversation rather than one-shot tasks.
Read and search BWOC workspace-level memory (`.bwoc/memory/`) and Tier-2 deep memory. Wraps `bwoc memory`. Use to recall prior decisions, notes, and session context.
Run a single task on a BWOC agent non-interactively and capture the result (headless). Wraps `bwoc run`. Use when you need a one-shot answer/output back from an agent.
Append a message to a BWOC agent's inbox (fire-and-forget). Wraps `bwoc send`. Use to hand work or notes to an agent asynchronously.
Show a per-agent health and identity snapshot for the BWOC fleet. Wraps `bwoc status`. Read-only — use to inspect a single agent or summarize all agents.
Manage a BWOC team's shared task list — add, list, claim, complete, plan, approve, reject. Wraps `bwoc task`. Use to coordinate work across a team.
基于 SOC 职业分类
| name | bwoc-list |
| description | List BWOC agents registered in the workspace. Wraps `bwoc list`. Use to discover which agents exist, their backend, status, and pending inbox counts. |
List the agents registered in the enclosing BWOC workspace's agents.toml.
This is a read-only wrapper over the bwoc CLI. Run:
bwoc list
--json — emit machine-readable JSON instead of the table.--status <STATUS> — filter by status (active, stopped, retired).--backend <BACKEND> — filter by backend (claude, antigravity, codex, kimi, copilot, ollama, openai-compatible).--running — only agents whose daemon is actually running.--inbox-pending — only agents with at least one pending inbox envelope.--sort <id|inbox|incarnated|backend> — sort key.--count — print just the integer count of matching agents.--names-only — bare agent ids, one per line (handy for for name in $(...) loops).--workspace <PATH> — override workspace root (default: BWOC_WORKSPACE env > ancestor walk > cwd).--lang <en|th> — output language.bwoc list # full table
bwoc list --json # JSON for parsing
bwoc list --status active --names-only # ids of active agents
bwoc list --backend codex # only Codex-backed agents
bwoc list --inbox-pending --count # how many agents have mail waiting
Surface the result back to the user. Do not add business logic — this is a thin wrapper.