/// `openlatch docs` command handler.
///
/// Opens the OpenLatch documentation in the default browser, with URL fallback for headless environments.
use crateOutputConfig;
use crateOlError;
/// The canonical documentation URL.
const DOCS_URL: &str = "https://docs.openlatch.ai";
/// Run the `openlatch docs` command.
///
/// Tries to open the documentation URL in the default browser.
/// Falls back to printing the URL if the browser cannot be launched (headless).
/// Always prints the URL regardless of browser open success.