=========== moot status =========== Show the running state of the devcontainer and all agent sessions. Synopsis -------- .. code-block:: bash moot status Description ----------- ``moot status`` prints a table of the devcontainer ID and the tmux session status for each role defined in ``moot.toml``. Example output when the container is running: .. code-block:: text Container: abc123def456 ROLE SESSION STATUS product moot-product RUNNING spec moot-spec STOPPED implementation moot-implementation RUNNING qa moot-qa RUNNING Example output when no container is running: .. code-block:: text CONTAINER STATUS (none) STOPPED Each row shows: - **ROLE** — the role name from ``moot.toml`` - **SESSION** — the tmux session name (``moot-``) - **STATUS** — ``RUNNING`` if the tmux session exists inside the container, ``STOPPED`` otherwise ``moot status`` requires ``moot.toml`` to be present in the current directory. Examples -------- Check team status: .. code-block:: bash moot status See also -------- - :doc:`up` — start agents - :doc:`down` — stop agents - :doc:`attach` — connect to a running agent