Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.boxcrew.ai/llms.txt

Use this file to discover all available pages before exploring further.

Install

cd cli
pnpm install
pnpm build
The CLI binary is bx. Create a global alias for convenience:
alias bx="node /path/to/cli/dist/index.js"

Authenticate

bx login
This opens your browser to the BoxCrew dashboard. An API key is created automatically and sent back to the CLI — no copy-pasting required. How it works:
  1. The CLI starts a temporary local HTTP server
  2. Opens https://boxcrew.ai/cli-auth?port=PORT in your browser
  3. An API key named “CLI” is created and sent back
  4. The key is stored in the CLI config
FlagDescriptionDefault
--api-url <url>Override the API URLhttps://api.boxcrew.ai
--frontend-url <url>Override the frontend URLhttps://boxcrew.ai

Paste login (headless environments)

For SSH sessions, CI/CD, or environments without a browser:
bx login --paste
This prompts you to paste an API key manually. Create one first in the dashboard under Settings > API Keys.

Environment variables

VariableDescription
BOXCREW_API_URLOverride the BoxCrew API URL
BOXCREW_FRONTEND_URLOverride the BoxCrew frontend URL

Logout

bx logout
Removes stored credentials from the CLI config.