CLI
Install and configure the Remb CLI for project management, scanning, and AI tool integration.
Installation
Homebrew (recommended)
Terminal
brew tap samie105/remb
brew install rembFrom Source
Terminal
go install github.com/useremb/remb@latestRequires Go 1.21+. The binary is installed to $GOPATH/bin.
Authentication
# Interactive OAuth login (opens browser)
remb login
# Or use an API key
remb login --key rmb_your_api_key
# Check who you're logged in as
remb whoami
# Clear stored credentials
remb logoutCredentials are stored at ~/.config/remb/credentials. You can also set the REMB_API_KEY environment variable instead.
Configuration
.remb.yml
Created by remb init in your project root:
.remb.yml
project: my-project
api_url: https://www.useremb.com # optional override
ignore:
- node_modules
- .git
- dist
- "*.lock"Environment Variables
| Variable | Description | Default |
|---|---|---|
REMB_API_KEY | API key (overrides credentials file) | — |
REMB_API_URL | API base URL | https://www.useremb.com |
Command Overview
| Command | Description |
|---|---|
remb login | Authenticate via OAuth or API key |
remb logout | Clear stored credentials |
remb whoami | Show current user identity |
remb init | Initialize project config + REMB.md |
remb save | Save a context entry for a feature |
remb get | Retrieve context entries |
remb scan | Run a fast local scan |
remb push | Trigger a cloud scan with live progress |
remb history | View conversation history |
remb memory | Manage memories (add/list/update/delete/promote) |
remb projects | Manage projects (list) |
remb skills | Manage AI skills (list/add/remove/update) |
remb serve | Start the local MCP server |
remb import | Import context from files |
remb link | Create feature dependencies |
remb log | Log conversation entries |
remb bundle | Get full project context bundle |
remb status | Check scan progress |
Full reference
See the Commands reference for detailed usage, flags, and examples for every command.