TL;DR:
- Install each AI CLI tool individually with proper commands
- Configure API keys for each tool separately
- Use tools for AI-assisted development and data processing
Tool-by-Tool Installation Guide
Prerequisites
Install Bun Runtime
curl -fsSL https://bun.sh/install | bashInstall Golang (for Crush CLI)
# Ubuntu/Debiansudo apt install golang-go
# macOSbrew install go
# Windowschoco install golangGEMINI CLI
Installation
npm install -g @google/gemini-cliVerify Installation
gemini --versionConfiguration
gemini config set api-key YOUR_GOOGLE_API_KEYBasic Usage
gemini ask "Explain async/await in JavaScript"OpenCode CLI
Installation
curl -fsSL https://opencode.ai/install | bashVerify Installation
opencode --versionConfiguration
opencode auth loginBasic Usage
opencode "Generate a React component"Qwen Code CLI
Installation
npm install -g @qwen-code/qwen-code@latestVerify Installation
qwen --versionConfiguration
qwen config set api-key YOUR_ALIBABA_API_KEYBasic Usage
qwen "Refactor this function"Crush CLI
Installation
go install github.com/liljencrantz/crush@latestVerify Installation
crush --versionBasic Usage
echo "name,age\nAlice,30\nBob,25" | crush "select name, age from input where age > 20"
