tt inbox
Check agent inbox(es).
Synopsis
tt inbox <AGENT> # Check specific agent
tt inbox --all # Show all agents' inboxes
Description
Shows pending messages in agent inboxes.
When used with --all, displays a summary of pending messages for all agents, categorized by type:
- [T] Tasks requiring action
- [Q] Queries awaiting response
- [I] Informational messages (FYI)
- [C] Confirmations/acknowledgments
Messages are added by:
tt assignβ Creates a task and sends TaskAssign messagett sendβ Sends a custom message
Arguments
| Argument | Description |
|---|---|
[AGENT] | Agent name to check (optional with --all) |
Options
| Option | Short | Description |
|---|---|---|
--all | -a | Show pending messages for all agents |
--town <PATH> | -t | Town directory (default: .) |
--verbose | -v | Enable verbose logging |
Examples
Check Specific Agent
tt inbox backend
Output:
π¬ Inbox for 'backend': 3 messages
View All Agentsβ Inboxes
tt inbox --all
Output:
π Pending Messages by Agent:
backend (Working):
[T] 2 tasks requiring action
[Q] 1 queries awaiting response
[I] 3 informational
[C] 0 confirmations
β’ Fix authentication bug in login endpoint
β’ Update database schema for new fields
reviewer (Idle):
[T] 1 tasks requiring action
[Q] 0 queries awaiting response
[I] 0 informational
[C] 2 confirmations
β’ Review PR #42: Add user validation
Total: 4 actionable message(s)
Comparison with tt status
tt statusshows agent states and total inbox countstt inbox --allshows message breakdown and previews
See Also
- tt send β Send messages to agents
- tt assign β Assign tasks (sends TaskAssign message)
- tt task β Manage individual tasks
- Messages Concept