Keyboard shortcuts

Press ← or β†’ to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

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.

supervisor and conductor are aliases for the same well-known mailbox, so tt inbox supervisor and tt inbox conductor inspect the conductor-facing queue even when no agent with that literal name exists.

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 message
  • tt send β€” Sends a custom message

Arguments

ArgumentDescription
[AGENT]Agent name to check (optional with --all)

Options

OptionShortDescription
--all-aShow pending messages for all agents
--town <PATH>-tTown directory (default: .)
--verbose-vEnable verbose logging

Examples

Check Specific Agent

tt inbox backend
tt inbox supervisor

Output:

πŸ“¬ Inbox for 'backend': 3 messages
   [T] 2 tasks requiring action
   [Q] 1 queries awaiting response
   [I] 0 informational
   [C] 0 confirmations

   [T] task 1234: Fix authentication bug in login endpoint
   [Q] question: Should this support OAuth fallback?

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
    β€’ [T] Review PR #42: Add user validation

  supervisor/conductor (well-known mailbox):
    [T] 0 tasks requiring action
    [Q] 1 queries awaiting response
    [I] 2 informational
    [C] 0 confirmations
    β€’ [Q] question: Product decision needed for rollout timing

Total: 4 actionable message(s)

Comparison with tt status

  • tt status shows agent states and total inbox counts
  • tt inbox --all shows message breakdown and previews

See Also