원클릭으로
bwoc-send
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.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
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.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
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.
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.
Manage BWOC Saṅgha teams — create, list, retire a named subset of agents sharing a task list. Wraps `bwoc team`. Use to organize agents into coordinating groups.
| name | bwoc-send |
| description | 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. |
Append a message to an agent's inbox (.bwoc/inbox.jsonl). Fire-and-forget — it does not wait for a reply (use bwoc-run for that).
Wraps the bwoc CLI:
bwoc send <TO> <MESSAGE>
<TO> — recipient agent, by id (agent-foo) or bare name (foo).<MESSAGE> — message text. Quote multi-word messages. Mutually exclusive with --file.--file <FILE> — use a file's full contents as the message body (instead of <MESSAGE>).--from <FROM> — sender identity. Default user. Pass an agent name for agent→agent messaging (the named sender must exist in the registry).--reply-to <MESSAGE_ID> — thread this as a reply to a prior envelope (msg-<slug>-<hex>).--no-wakeup — skip the best-effort tmux wakeup ping.--workspace <PATH> — override workspace root.--lang <en|th> — output language.bwoc send <agent> "Please draft the API spec for the new endpoint."
bwoc send <agent> --file ./brief.md
bwoc send <agent> "ack" --from <agent> --reply-to <msg-id>
Always quote the message safely so shell metacharacters in user text are not interpreted. This is a thin wrapper — no business logic.