Control 156+ AI tools from the terminal. Build, run, and manage your AI infrastructure without leaving the command line.
Install the ABUZ8 CLI using your preferred package manager:
# npm
npm install -g @abuz8/cli
# pip
pip install abuz8-cli
# cargo
cargo install abuz8-cli
abuz8 image "a futuristic city" --style cyberpunk
Generate images with AI. Support for 10+ styles.
abuz8 write --topic "AI agents" --tone professional
Write blog posts, ads, emails, and more.
abuz8 music --genre "electronic" --mood "energetic"
Generate music in any genre. Full control.
abuz8 video --prompt "drone shot of mountains" --duration 30
Create videos from text or images.
abuz8 agent "customer_support" --query "How do I reset my password?"
Run 266+ agent prompts. Autonomous workflows.
abuz8 search "AI agents 2025" --max-results 20
Search the web, extract content, summarize.
# List all available tools
abuz8 tools list
# Get help for a specific tool
abuz8 tools help image
# Run a tool with custom parameters
abuz8 tools run image --prompt "a cat" --width 1024 --height 1024
# Generate output to file
abuz8 image "a dog" --output ./output.png
# Monitor progress
abuz8 monitor --watch
# View logs
abuz8 logs --tail 50
# Update CLI
abuz8 update
# Check status
abuz8 status
Configure the CLI with environment variables or a config file:
# Environment variables
export ABUZ8_API_KEY="your-key"
export ABUZ8_MODEL="default"
export ABUZ8_OUTPUT_DIR="./output"
# Config file (~/.abuz8/config.yaml)
api_key: your-key
model: default
output_dir: ./output
rate_limit: 100
abuz8 write \
--topic "How to build AI agents" \
--tone "educational" \
--length "long" \
--output ./blog-post.md
abuz8 image \
"modern social media post about AI" \
--style "minimal" \
--width 1200 \
--height 630 \
--output ./social-media.png
abuz8 analyze \
--file ./data.csv \
--type "summary" \
--output ./analysis.md