Skip to Content
New to Genbox? Check out our Getting Started guide
ReferencePower User Shortcuts

Power User Shortcuts

Genbox CLI provides shorthand commands for power users who want faster access to common operations.

Overview

All shortcuts follow the pattern gb<letter> where the letter represents the provider or command:

LetterProvider/Command
cClaude
gGemini
xCodex
oOpenCode
rCursor
sSession

Adding d at the end enables --direct mode (no isolation).

Provider Shortcuts

Start AI sessions with a single command:

ShortcutEquivalentDescription
gbcgb claudeStart Claude AI session
gbggb geminiStart Gemini AI session
gbxgb codexStart Codex AI session
gbogb opencodeStart OpenCode AI session
gbrgb cursorStart Cursor AI session
gbsgb sessionSession management

Direct Mode Shortcuts

Run sessions directly on your machine without container/VM isolation:

ShortcutEquivalentDescription
gbcdgb claude --directClaude without isolation
gbgdgb gemini --directGemini without isolation
gbxdgb codex --directCodex without isolation
gbodgb opencode --directOpenCode without isolation
gbrdgb cursor --directCursor without isolation
gbsdgb session --directSession without isolation

Usage Examples

Quick Start

# Start Claude session (interactive genbox selection) gbc # Start Claude directly on your machine gbcd # Start Gemini session gbg # List all sessions gbs list

With Additional Options

Shortcuts accept all the same options as the full commands:

# Use specific genbox gbc --on my-genbox # Prompt mode with editor gbc -p -e # Background session gbc -p -b # Session management gbs list --cloud gbs watch

Direct Mode Workflow

Direct mode (*d shortcuts) is ideal for:

  • Quick local development without isolation overhead
  • Testing on your own machine
  • When you trust the AI agent fully
# Quick Claude session on your machine gbcd # Direct Gemini session gbgd # Direct session management gbsd

When to Use Shortcuts

Use shortcuts when:

  • You’re frequently starting AI sessions
  • You want faster command entry
  • You’re comfortable with the CLI

Use full commands when:

  • You need to see all available options (--help)
  • You’re scripting or documenting
  • You’re new to the CLI

Shell Completion

Shortcuts work with shell completion. After installing completions:

# Install completions gb completion bash >> ~/.bashrc # Bash gb completion zsh >> ~/.zshrc # Zsh gb completion fish >> ~/.config/fish/completions/gb.fish # Fish # Now tab-complete works gbc <TAB> # Shows available options gbs <TAB> # Shows subcommands

See Also

Last updated on