fix(camofox): register CAMOFOX_API_KEY in OPTIONAL_ENV_VARS

The auth-header fix reads CAMOFOX_API_KEY but it was never registered,
so it didn't surface in `hermes setup` / `hermes tools`. Add it as an
advanced password-category tool env var alongside CAMOFOX_URL.
This commit is contained in:
teknium1 2026-06-29 01:01:57 -07:00 committed by Teknium
parent 08d6195bc4
commit 41095fdb04

View file

@ -3549,6 +3549,15 @@ OPTIONAL_ENV_VARS = {
"password": False,
"category": "tool",
},
"CAMOFOX_API_KEY": {
"description": "Optional bearer token sent as Authorization header to a remote/authenticated Camofox server",
"prompt": "Camofox API key",
"url": "https://github.com/jo-inc/camofox-browser",
"tools": ["browser_navigate", "browser_click"],
"password": True,
"category": "tool",
"advanced": True,
},
"FAL_KEY": {
"description": "FAL API key for image and video generation",
"prompt": "FAL API key",