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 stop

Request all agents in the current town to stop gracefully.

Synopsis

tt stop [OPTIONS]

Description

tt stop requests all agents in the current town to stop gracefully. It does not shut down the shared central Redis instance, because that instance may be serving other towns.

Note: To fully reset a town, use tt reset instead.

Options

OptionShortDescription
--town <PATH>-tTown directory (default: .)
--verbose-vEnable verbose logging

Examples

Stop the Town

tt stop

Output:

🛑 Requested graceful stop for 3 agent(s) in town 'my-project'
   Agents will stop at the start of their next round.
   Central Redis remains available to other towns.
TaskCommand
Stop one agenttt kill <agent>
Reset all statett reset
Inspect remaining worktt inbox --all

Shared Redis Lifecycle

Central Redis in Tinytown is shared across towns:

  • Starts when a town first needs it
  • Remains available after tt stop
  • Should only be shut down through explicit Redis administration, not normal town cleanup

For persistent deployments, consider running Redis independently.

See Also