CLI Commands
Complete reference for all BuilderBox CLI commands. The CLI handles authentication, code tracking setup, task management, and more.
Installation
macOS / Linux
curl -fsSL https://builder-box.com/install.sh | shWindows (PowerShell)
irm https://builder-box.com/install.ps1 | iexAuthentication
Manage your BuilderBox authentication
builderbox auth loginLog in to BuilderBox (opens browser)
builderbox auth login -k <key>Log in with an existing API key
builderbox auth logoutLog out and clear credentials
builderbox auth statusCheck authentication status
Code Tracking
View and manage code tracking
builderbox code statusCheck tracking status
builderbox code statsView coding statistics summary
builderbox code exportExport coding activity data
Tasks
Manage your tasks from the command line
builderbox task listList all tasks
builderbox task list --inboxList inbox tasks only
builderbox task show <id>Show task details
builderbox task add "Title"Create a new task
builderbox task complete <id>Mark task as complete
Calendar
View upcoming tasks and deadlines
builderbox calendar todayToday's tasks and overdue items
builderbox calendar upcomingUpcoming tasks (next 7 days)
API Keys
Manage API keys for extensions and MCP
builderbox key listList all API keys
builderbox key createCreate a new key (uses hostname)
builderbox key create -n "Name"Create a key with custom name
builderbox key delete <id>Delete an API key
builderbox key rename <id> "Name"Rename an API key
Updates
Keep your CLI up to date
builderbox updateUpdate CLI to latest version
builderbox --versionShow current CLI version
Configuration
BuilderBox stores its configuration in your home directory:
~/.builderbox/config.json Main configuration file~/.builderbox/bin/ CLI binary locationAPI Key Usage
API keys created with the CLI can be used for:
- BuilderBox VS Code/Cursor extension authentication
- MCP server authentication for AI assistants
- CLI authentication with
builderbox auth login -k <key>
You can also create and manage API keys from the Settings page in the web app.
Getting Help
Use the --help flag with any command to see detailed usage information:
builderbox --help builderbox auth --help builderbox task add --help