From f63d520496f647d652e232e60bc2de5d404cc46d Mon Sep 17 00:00:00 2001 From: Teknium <127238744+teknium1@users.noreply.github.com> Date: Tue, 12 May 2026 11:50:33 -0700 Subject: [PATCH] chore(camofox): document new env vars + AUTHOR_MAP entry Follow-up to externally managed Camofox session support: - .env.example: document CAMOFOX_URL plus the new CAMOFOX_USER_ID, CAMOFOX_SESSION_KEY, CAMOFOX_ADOPT_EXISTING_TAB env vars. - scripts/release.py: AUTHOR_MAP entry for db@project-aeon.com -> db-aeon. --- .env.example | 14 ++++++++++++++ scripts/release.py | 1 + 2 files changed, 15 insertions(+) diff --git a/.env.example b/.env.example index 6dfcbdcc612..e6763f18fd2 100644 --- a/.env.example +++ b/.env.example @@ -273,6 +273,20 @@ BROWSER_SESSION_TIMEOUT=300 # Browser sessions are automatically closed after this period of no activity BROWSER_INACTIVITY_TIMEOUT=120 +# Camofox local anti-detection browser (Camoufox-based Firefox). +# Set CAMOFOX_URL to route the browser tools through a local Camofox server +# instead of agent-browser/Browserbase. See docs/user-guide/features/browser.md. +# CAMOFOX_URL=http://localhost:9377 + +# Externally managed Camofox sessions — when another app owns the visible +# Camofox browser, set these so Hermes shares the same userId/profile instead +# of creating its own isolated session. +# CAMOFOX_USER_ID= +# CAMOFOX_SESSION_KEY= +# Set to true to reuse an already-open Camofox tab for this identity before +# creating a new one (useful for gateway restarts). +# CAMOFOX_ADOPT_EXISTING_TAB=false + # ============================================================================= # SESSION LOGGING # ============================================================================= diff --git a/scripts/release.py b/scripts/release.py index 04be23e4561..3a1a5c143cd 100755 --- a/scripts/release.py +++ b/scripts/release.py @@ -53,6 +53,7 @@ AUTHOR_MAP = { "421774554@qq.com": "wuli666", "harish.kukreja@gmail.com": "counterposition", "1046611633@qq.com": "zhengyn0001", + "db@project-aeon.com": "db-aeon", "ahmed@abadr.net": "ahmedbadr3", "cleo@edaphic.xyz": "curiouscleo", "hirokazu.ogawa@kwansei.ac.jp": "hrkzogw",