tt resume
Resume a paused agent.
Synopsis
tt resume <AGENT>
Description
Resumes an agent that was previously paused with tt interrupt. The agent transitions from Paused back to Idle and immediately starts processing messages again.
Arguments
| Argument | Description |
|---|---|
<AGENT> | Agent name to resume |
Examples
tt resume backend
Output:
▶️ Resumed agent 'backend'
How It Works
- Sets agent state from
PausedtoIdlein Redis - Emits an
AgentResumedstructured event - The agent loop picks up the state change on its next 5-second check
- Agent resumes processing inbox messages normally
See Also
- tt interrupt — Pause an agent
- tt close — Gracefully drain and stop
- Agents Concept