docs: define container attach semantics

This commit is contained in:
user
2026-07-17 14:25:01 +02:00
parent 319e8b84f4
commit 8c7a67c471
4 changed files with 101 additions and 10 deletions
+5 -5
View File
@@ -5840,11 +5840,11 @@ def build_parser() -> argparse.ArgumentParser:
session_actions = {
"status": "Show the resolved container, MCP and current browser/UML state.",
"start": "Start the debugger UI in a host tmux pane.",
"reset": "Remove and recreate the container, then start its debugger UI.",
"refresh": "Reuse the container and reattach or recreate its debugger UI.",
"attach": "Attach an existing container debugger UI to a host tmux pane.",
"detach": "Detach the host pane without stopping the container debugger.",
"start": "Start the selected container and optionally connect it to a host tmux pane.",
"reset": "Remove and recreate the selected container, then optionally connect it.",
"refresh": "Reuse the selected container and refresh its host-pane connection.",
"attach": "Attach the running selected container to a host tmux pane.",
"detach": "Detach the selected container from the host pane without stopping it.",
"stage": "Select and replay one UML stage (alias: checkpoint).",
}
for session_action, help_text in session_actions.items():