| name | gto-agent-communication |
| description | Use when a GT Office agent must send work to another agent, reply on an existing task thread, wait for a task reply, or inspect inbox and thread state through the local gto CLI. |
GT Office Agent CLI Communication
Use gto as the default communication interface for GT Office agent collaboration. If gto is not on PATH, run node tools/gto/bin/gto.mjs from the GT Office repository instead.
Quick Rules
- Prefer
gto send <from> <to> <text> for normal one-shot task dispatch.
- Use
gto send ... --wait when the sender explicitly needs the next reply in the same task thread.
- Use
gto wait <taskId> --from <agent> when you already have a task id and only need to wait for the next reply.
- Use
gto inbox <agent> to inspect open task threads for one agent.
- Use
gto thread <taskId> to inspect the full conversation history for one task.
- Use
gto agent send-task, gto agent reply-status, or gto agent handover only when you need the lower-level explicit form.
- Always carry forward the returned
taskId from the original task dispatch.
- Do not send follow-up updates without
taskId.
Environment Defaults
When GT Office launched the terminal, prefer the injected defaults:
GTO_WORKSPACE_ID
GTO_AGENT_ID
If those variables are present, you can omit --workspace-id and --agent-id.
Core Commands
Send a task:
gto send manager build "Review the migration plan and reply with blockers." --json
Send and wait for the next reply:
gto send manager build "Review the migration plan and reply with blockers." --wait --timeout-sec 120 --json
Reply with a status update:
gto agent reply-status --task-id task_123 --target-agent-id agent-01 --detail "Blocked on the storage migration test." --json
Send a handover:
gto agent handover --task-id task_123 --target-agent-id agent-01 --summary "Implementation is complete and ready for review." --blocker "Need final product sign-off." --next-step "Review the diff." --json
Inspect an inbox:
gto inbox build --limit 20 --json
Inspect one task thread:
gto thread task_123 --json
Wait for the next reply on an existing task:
gto wait task_123 --from manager --timeout-sec 120 --json
Workflow
- If you do not know the target agent id or exact agent name, run
gto agents or gto directory snapshot --workspace-id <id> --json.
- Dispatch with
gto send and save the returned taskId.
- Use
gto send ... --wait or gto wait <taskId> when you need synchronous follow-up behavior.
- Use
gto agent reply-status for interim progress.
- Use
gto agent handover when the work is ready to return.
- Use
gto inbox or gto thread whenever you need to rebuild context from the task conversation history.
Avoid
- Do not invent a new
taskId; only reuse the one returned by the original dispatch.
- Do not treat plain terminal output as a reply unless
gto --wait captured and returned it. Explicit CLI replies remain the preferred path for thread history.