How to Skip Camosfox Setup | Generated by AI

Home 2026.04

Question: In the Hermes Agent install.sh script for Linux, how to set up Camosfox (Camofox) browser, and can we skip installing it when running install.sh?

Answer:

Yes, you can safely skip or delay Camosfox (also called Camofox) during the initial ./install.sh run. It is not installed automatically by the main script.

Quick Summary

You mentioned you filled a fake location and some browser settings can be skipped — this matches the setup for stealth browsing in Hermes Agent.

Can We Skip It During install.sh?

Yes, completely.
The script has no flag to force Camosfox. You can run the installer normally (or with --skip-setup if you want to skip the wizard):

curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash

Or with options:

curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash -s -- --skip-setup

After installation finishes, you can decide whether to set up Camosfox later.

  1. Install Camosfox (after Hermes is installed):
    git clone https://github.com/jo-inc/camofox-browser.git
    cd camofox-browser
    npm install
    npm start
    
    • First run will download Camoufox (~300MB).
    • It runs a local server (default port 9377).

    Alternative (easier, using Docker):

    docker run -d --network host -e CAMOFOX_PORT=9377 jo-inc/camofox-browser
    
  2. Configure Hermes to use it: Edit your config file:
    nano ~/.hermes/.env
    

    Add or modify these lines:

    BROWSER_BACKEND=camofox
    CAMOFOX_URL=http://localhost:9377
    # Or if using Docker/remote: http://127.0.0.1:9377
    

    You can also set fake location, user-agent spoofing, etc., inside the Camosfox/Camoufox settings if needed (or let Hermes handle it).

  3. Test it: Run Hermes and ask it to browse a site that usually blocks bots:
    hermes
    

    Then say something like: “Go to example.com and tell me the main content” or use browser tools.

Alternatives if You Don’t Want Camosfox

Tips for Your Fresh Linux Setup

If you run into any errors during install (e.g., missing dependencies or Node issues), paste the exact error here and I’ll help debug.

The script you shared looks correct and up-to-date for the official Hermes Agent from Nous Research. No major issues in the provided code for skipping the optional stealth browser.

References:


Back Donate