# Use Case: CLI Startup Verify the Adolf CLI container starts cleanly, shows the welcome banner, and exits without error when the user closes input. ## Steps ```bash echo "" | docker compose --profile tools run --rm -T cli \ python3 cli.py --url http://deepagents:8000 --session use-case-cli-startup echo "exit code: $?" ``` ## Pass if - Output contains `Adolf CLI` - Output contains the session name and gateway URL - Exit code is 0