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 remb

From Source

Terminal
go install github.com/useremb/remb@latest

Requires 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 logout

Credentials 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

VariableDescriptionDefault
REMB_API_KEYAPI key (overrides credentials file)
REMB_API_URLAPI base URLhttps://www.useremb.com

Command Overview

CommandDescription
remb loginAuthenticate via OAuth or API key
remb logoutClear stored credentials
remb whoamiShow current user identity
remb initInitialize project config + REMB.md
remb saveSave a context entry for a feature
remb getRetrieve context entries
remb scanRun a fast local scan
remb pushTrigger a cloud scan with live progress
remb historyView conversation history
remb memoryManage memories (add/list/update/delete/promote)
remb projectsManage projects (list)
remb skillsManage AI skills (list/add/remove/update)
remb serveStart the local MCP server
remb importImport context from files
remb linkCreate feature dependencies
remb logLog conversation entries
remb bundleGet full project context bundle
remb statusCheck scan progress

Full reference

See the Commands reference for detailed usage, flags, and examples for every command.