### Install Moltbot using curl (Shell) Source: https://docs.molt.bot/start/getting-started/index This command downloads and executes the Moltbot installation script. It's a universal installer that works on macOS, Linux, and Windows, setting up Node.js and other necessary components. ```shell # Works everywhere. Installs everything. You're welcome. 🦞 $ curl -fsSL https://molt.bot/install.sh | bash ``` -------------------------------- ### Install Moltbot from Git and build (Shell/Node.js) Source: https://docs.molt.bot/start/getting-started/index This method is for users who prefer to clone the repository and build Moltbot from source. It involves cloning the GitHub repository, installing dependencies with pnpm, and then building the project. ```shell # For those who read source code for fun $ curl -fsSL https://molt.bot/install.sh | bash -s -- --install-method git # You clearly know what you're doing $ git clone https://github.com/moltbot/moltbot.git $ cd moltbot && pnpm install && pnpm run build # You built it, now meet it $ pnpm run clawdbot onboard ``` -------------------------------- ### Install Moltbot globally using npm (Node.js) Source: https://docs.molt.bot/start/getting-started/index Installs the Moltbot CLI globally using npm, allowing you to run Moltbot commands from any directory in your terminal. ```javascript # Install Moltbot $ npm i -g clawdbot ``` -------------------------------- ### Onboard Moltbot CLI (Node.js) Source: https://docs.molt.bot/start/getting-started/index Initiates the Moltbot onboarding process using the CLI. This step is essential for setting up your AI assistant after installation. ```javascript # Meet your lobster $ clawdbot onboard ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.