gto-agent-communication
SolidUse 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.
AI & Automation 13 stars
2 forks Updated today Apache-2.0
Install
Quality Score: 80/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# 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:
```bash
gto send manager build "Review the migration plan and reply with blockers." --json
```
Send and wait for the next reply:
```bash
gto send manager build "Review the migration plan and reply with blockers." --wait --timeout-sec 120 --json
```
Reply with a status update:
```bash
gto agent reply-status --ta...
Details
- Author
- Laplace-bit
- Repository
- Laplace-bit/GT-Office
- Created
- 5 months ago
- Last Updated
- today
- Language
- TypeScript
- License
- Apache-2.0
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Listed
gsd-add-todo
Capture idea or task as todo from current conversation context
1 Updated 1 weeks ago
hoanganhduc AI & Automation Listed
gsd-check-todos
List pending todos and select one to work on
1 Updated 1 weeks ago
hoanganhduc AI & Automation Solid
gh-agent-task
Use gh agent-task commands to create, run, and monitor agent tasks.
4,819 Updated today
github