### Install and Start FlowDeck Source: https://docs.flowdeck.studio Install the CLI via shell script and launch the interactive mode within a project directory. ```bash # Install FlowDeck CLI curl -sSL https://flowdeck.studio/install.sh | sh # CD to your macOS or iOS project cd ~/myApp # Start FlowDeck's interactive mode flowdeck -i ``` -------------------------------- ### Access CLI Help and Examples Source: https://docs.flowdeck.studio Retrieve command-line help and usage examples for specific commands. ```bash # Get help flowdeck --help # Show examples for any command flowdeck build --examples ``` -------------------------------- ### Configure and Run Static CLI Commands Source: https://docs.flowdeck.studio Discover project structure and save settings to enable parameter-free execution for CI/CD or AI agents. ```bash # 1. Discover project structure flowdeck context --json # 2. Initialize with discovered settings flowdeck config set -w MyApp.xcworkspace -s MyApp -S "iPhone 16" # 3. Run commands without parameters flowdeck build # Uses saved settings flowdeck run # Uses saved settings flowdeck test # Uses saved settings flowdeck clean # Uses saved settings ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.