VS Code extension v0.4.0 — manage a Dockerized router
Manage a router running in Docker straight from VS Code — no hr on your host needed.
Set the new hermesRouter.dockerContainer setting to your container's name and the controls target the container:
- Add Key / Import Codex → a terminal running
docker exec -it <container> hr auth add …(you type the key inside the container — the extension never sees it), then itdocker restarts to apply. - Set Model / Rotation →
docker exec <container> hr …thendocker restart. - Restart →
docker restart <container>(neverhr restart, which would stop the container).
Requires the new :cli image variant run with a volume so changes persist:
docker run -d --name hermes-router -p 8319:8319 -v hermes-data:/app/data -e PROXY_API_KEYS=sk-router-1 shafiq735/hermes-router:cliThen set hermesRouter.dockerContainer to hermes-router. See the docs.
Install from the Marketplace or grab the attached .vsix.