========= moot down ========= Stop one or all agent tmux sessions. Synopsis -------- .. code-block:: bash moot down [] Arguments --------- .. option:: role Optional. The role to stop. If omitted, all roles listed in ``moot.toml`` are stopped. Description ----------- ``moot down`` kills tmux sessions inside the devcontainer. It does not stop the devcontainer itself. The container keeps running after ``moot down`` — only the Claude Code processes inside it are terminated. To stop a specific agent, pass its role name. To stop all agents, omit the argument. If a named session is not running, ``moot down`` prints a message and continues without error. **Note:** Stopping an agent with ``moot down`` terminates its Claude Code process. Any unsaved in-session state (ongoing generation, uncommitted edits in memory) is lost. Commit work before stopping an agent if you need to preserve context. Examples -------- Stop all agents: .. code-block:: bash moot down Stop only the ``qa`` agent: .. code-block:: bash moot down qa See also -------- - :doc:`up` — start all agents - :doc:`status` — check which agents are running