# Replace Node.js tools with bun
alias node='bun'
alias npm='bun'
alias npx='bunx'
# AI Coding Tools
alias qwen='bunx @qwen-code/qwen-code@preview -y'
alias claude='bunx @anthropic-ai/claude-code@next --dangerously-skip-permissions'
alias codex='bunx @openai/codex@latest'
alias gemini='bunx @google/gemini-cli@preview -y'
alias copilot='bunx @github/copilot@prerelease --allow-all-tools --allow-all-paths --banner'
alias openspec='bunx @fission-ai/openspec@latest'
alias opencode='bunx opencode-ai@dev'Add these aliases to your shell config file (~/.zshrc, ~/.bashrc, etc.):
# Add to ~/.zshrc or ~/.bashrc
source ~/.zshrc # or restart terminal# Use any AI tool directly
claude "help me debug this code"
qwen "write a python function"
copilot "refactor this component"