Last active
July 15, 2026 18:49
-
-
Save davidondrej/6f158de34ce83c530526011054fde8d3 to your computer and use it in GitHub Desktop.
all commands for Hermes Agent + Browser Harness setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ============================================= | |
| # Hermes Agent + Browser Harness on Hostinger VPS | |
| # Full setup — copy and paste line by line | |
| # ============================================= | |
| # 1. Install Hermes Agent (Nous Research) | |
| # Docs: https://hermes-agent.nousresearch.com/docs/getting-started/installation/ | |
| curl -fsSL https://raw.githubusercontent.com/NousResearch/hermes-agent/main/scripts/install.sh | bash | |
| # 2. Reload shell so `hermes` command works | |
| source ~/.bashrc | |
| # 3. Configure Hermes interactively (provider, API key, model) | |
| # Choose OpenRouter, paste your key, pick: anthropic/claude-opus-4.7 | |
| hermes setup | |
| # 4. Install uv (Python package manager by Astral) | |
| # Docs: https://docs.astral.sh/uv/getting-started/installation/ | |
| curl -LsSf https://astral.sh/uv/install.sh | sh | |
| source ~/.local/bin/env | |
| # 5. Install Browser Harness | |
| # Docs: https://github.com/browser-use/browser-harness | |
| cd ~ | |
| git clone https://github.com/browser-use/browser-harness | |
| cd browser-harness | |
| uv tool install -e . | |
| # 6. Register Browser Harness as a Hermes skill (so Hermes can find and use it) | |
| mkdir -p ~/.hermes/skills/browser-harness | |
| ln -sf ~/browser-harness/SKILL.md ~/.hermes/skills/browser-harness/SKILL.md | |
| ln -sf ~/browser-harness/interaction-skills ~/.hermes/skills/browser-harness/interaction-skills | |
| ln -sf ~/browser-harness/domain-skills ~/.hermes/skills/browser-harness/domain-skills | |
| # 7. Connect Browser Harness to Browser Use Cloud (free tier, no card) | |
| # Get a free API key at: https://cloud.browser-use.com/new-api-key | |
| # Docs: https://docs.browser-use.com/cloud/tutorials/integrations/hermes-agent | |
| # Replace YOUR_KEY with the key from the page above: | |
| hermes config set BROWSER_USE_API_KEY YOUR_KEY | |
| # 8. Launch Hermes and start chatting | |
| hermes |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment