From ac1f8fcccdb303d9a71494e709db65420e0b2bff Mon Sep 17 00:00:00 2001 From: Teknium Date: Tue, 14 Apr 2026 16:53:46 -0700 Subject: [PATCH] docs(termux): note browser tool PATH auto-discovery Update the Termux guide to mention that the browser tool now automatically discovers Termux directories, and add the missing pkg install nodejs-lts step. --- website/docs/getting-started/termux.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/website/docs/getting-started/termux.md b/website/docs/getting-started/termux.md index 1ad71e5313..eb860f85cd 100644 --- a/website/docs/getting-started/termux.md +++ b/website/docs/getting-started/termux.md @@ -152,12 +152,15 @@ hermes setup ### Install optional Node dependencies manually -The tested Termux path skips Node/browser bootstrap on purpose. If you want to experiment later: +The tested Termux path skips Node/browser bootstrap on purpose. If you want to experiment with browser tooling later: ```bash +pkg install nodejs-lts npm install ``` +The browser tool automatically includes Termux directories (`/data/data/com.termux/files/usr/bin`) in its PATH search, so `agent-browser` and `npx` are discovered without any extra PATH configuration. + Treat browser / WhatsApp tooling on Android as experimental until documented otherwise. ---