### Install ClawMetry using Shell Script (macOS/Linux) Source: https://clawmetry.com This command downloads and executes an installation script for ClawMetry. It's a quick way to get started on macOS and Linux systems. ```bash curl -fsSL https://clawmetry.com/install.sh | bash ``` -------------------------------- ### Install ClawMetry using CMD (Windows) Source: https://clawmetry.com This command downloads and executes an installation script for ClawMetry using the Windows Command Prompt. It's an alternative installation method for Windows users. ```cmd curl -fsSL https://clawmetry.com/install.cmd -o install.cmd && install.cmd && del install.cmd ``` -------------------------------- ### Install ClawMetry within a PTY Source: https://clawmetry.com This command installs the ClawMetry package and sets up the local observability dashboard automatically. It needs to be run in a PTY to handle interactive input, ensuring proper setup for macOS, Linux, and Windows. ```bash pip install clawmetry && clawmetry onboard ``` -------------------------------- ### Install ClawMetry using Pip (macOS/Linux/Windows) Source: https://clawmetry.com Install the ClawMetry package using pip. This is a prerequisite for running the `clawmetry onboard` command. ```bash pip install clawmetry ``` -------------------------------- ### Onboard ClawMetry Agent Source: https://clawmetry.com After installing ClawMetry, use this command to onboard your agent and set up the observability dashboard. This command requires interactive input and should be run in a PTY. ```bash clawmetry onboard ``` -------------------------------- ### Install ClawMetry using PowerShell (Windows) Source: https://clawmetry.com This command downloads and executes an installation script for ClawMetry using PowerShell. It's the Windows equivalent of the curl command for macOS/Linux. ```powershell iwr -useb https://clawmetry.com/install.ps1 | iex ``` -------------------------------- ### Install and Connect ClawMetry via Pip Source: https://clawmetry.com Use this command to install the ClawMetry package and connect it to your OpenClaw agents. This is a common method for users running on KiloClaw or Hostinger. ```bash pip install clawmetry && clawmetry connect ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.