skills/productivity/box/references/oauth-setup.md
Use OAuth for every Hermes-to-Box connection. OAuth follows the signed-in Box user's permissions and the app's scopes; it does not grant enterprise-wide access.
Authorize the Box account that Hermes should act as. OAuth follows that account's permissions. If the user wants a narrower permission boundary, authorize an account that is invited only to the files, folders, or Hubs Hermes should access. Do not make that account an administrator merely to unlock an exceptional operation.
Everyone who uses a shared or background Hermes deployment receives the access of the one Box account it authorizes, so do not connect it to a broader personal or administrator account. Before starting the browser flow, make sure the authorization browser is signed in as the intended Box account.
Choose a descriptive environment name, such as hermes-box-oauth. Do not overwrite or reauthorize an existing environment until its identity is confirmed.
First resolve the Box command runner using CLI guide. Then ask whether Hermes runs on the same computer as the browser the user will use to authorize Box. Use this path only when they confirm that it does. This is normally a local computer setup. Do not infer this from the operating system alone. Use the resolved runner; do not reconstruct a local npm prefix unless Hermes installed and verified that exact local copy.
Start one official local login operation without --code, leave its terminal process running until it exits, then verify the actor. The examples below use box; replace that executable with the previously verified local runner only when Hermes installed and verified a private CLI copy:
box login --default-box-app --name <ENVIRONMENT_NAME>
box users:get me --json --fields id,name,login
The browser flow creates and selects the named environment. Run the action through Hermes's terminal rather than asking the user to copy a runner command. Announce the pending authorization, wait for the CLI process to finish, then continue with the actor check. Let the CLI open the authorization page and receive the local callback. Do not use browser tools, inspect browser tabs, request the resulting URL, navigate to Box, or ask the user to paste a code.
If the callback server cannot bind port 3000, the browser opens an unusable authorization result, or the callback never reaches the waiting CLI, stop that login process before retrying. Retry the official app on the supported ports 3001, 4000, 5000, and 8080, one at a time, and verify the actor after each successful completion:
box login --default-box-app --port 3001 --name <ENVIRONMENT_NAME>
Do not switch a same-host setup to --code merely because port 3000 failed. Use --code only after the supported local ports fail or the user confirms that the authorization browser is on another host.
Use this path only after the user explicitly confirms that Hermes runs on a remote host—such as a VPS, container, or cloud VM—or that it is headless and the authorization browser is on a different computer. Use the same previously resolved runner and run:
box login --default-box-app --code --name <ENVIRONMENT_NAME>
Open the displayed URL with a browser tool only when it controls the human's authorization browser. Otherwise present the URL and pause for the user to sign in and approve access, then continue the CLI's code-and-state prompts and verify the actor. Do not use this path when the same-host callback is available.
The Box CLI stores multiple named environments but uses one current default:
box configure:environments:list
box configure:environments:set-current <ENVIRONMENT_NAME>
box users:get me --json --fields id,name,login
Request approval before switching the current environment, especially on a shared or background installation. Switch it only after approval and verify the resulting actor. If the returned identity is API-only or has no normal Box login, do not use it for Hermes; connect a normal Box account through OAuth instead.
Use this path only when the requested operation needs a scope unavailable through the official CLI app, such as Manage webhooks. Open the Box Developer Console, create or select a Platform App with User Authentication (OAuth 2.0), and enable only the required scopes. Never broaden scopes merely to avoid an authorization error.
Use the same topology decision as the official app. For a same-host browser, add http://localhost:3000/callback as an OAuth redirect URI in the app's Configuration tab, save it, then run:
box login --platform-app --port 3000 --name <ENVIRONMENT_NAME>
If port 3000 cannot bind, choose another free local port, add the exact http://localhost:<PORT>/callback URI to the Platform App, save the configuration, stop the failed login process, and retry with the matching --port. Unlike the official app, a custom Platform App may use any port whose exact callback URI is registered.
For a remote or headless Hermes runtime whose authorization browser is on a different computer, register the same loopback callback URI and add --code:
box login --platform-app --code --port 3000 --name <ENVIRONMENT_NAME>
Before starting the remote flow, explain that the browser may finish on an unreachable localhost page; this is expected. The resulting URL contains both code and state, which the waiting CLI requests. Ask the user for only those two values, submit them to the existing process, and then verify the actor. Do not inspect unrelated browser tabs or switch to the local callback workflow on a remote host.
Let the CLI prompt for the Client ID and Client Secret. Do not ask the user to paste the Client Secret into chat, write it to Hermes configuration, or give the user an unverified local-runner command to copy. Authenticate the intended user in the browser, then verify the resulting actor. Keep administrator-only operations outside the normal Hermes OAuth identity.