Command-line interface for the RealtimeRegister domain registrar API.
This CLI is available as an open agent skill for AI assistants including Claude Code, OpenClaw, Codex, Cursor, GitHub Copilot, and 35+ agents.
npx skills add dedene/realtime-register-clibrew install dedene/tap/rrDownload from Releases.
go install github.com/dedene/realtime-register-cli/cmd/rr@latest# Authenticate
rr auth login
# Set customer handle
rr config set customer mycustomer
# Check domain availability
rr domain check example.com
# List your domains
rr domain list
# Get account status
rr status| Command | Description |
|---|---|
rr auth |
Manage API key |
rr config |
Manage configuration |
rr status |
Show account status |
rr domain |
Domain management |
rr contact |
Contact management |
rr zone |
DNS zone management |
rr process |
Process tracking |
rr tld |
TLD information |
rr completion |
Shell completions |
Config file: ~/.config/rr/config.yaml
customer: mycustomer
default_tlds:
- com
- net
- io
auto_renew: true| Variable | Description |
|---|---|
RR_API_KEY |
API key (overrides keyring) |
RR_CUSTOMER |
Customer handle |
RR_JSON |
Enable JSON output |
RR_PLAIN |
Enable TSV output |
NO_COLOR |
Disable colors |
# Table (default)
rr domain list
# JSON
rr domain list --json
# TSV (for scripting)
rr domain list --plain# Bash
rr completion bash > /etc/bash_completion.d/rr
# Zsh
rr completion zsh > "${fpath[1]}/_rr"
# Fish
rr completion fish > ~/.config/fish/completions/rr.fishMIT