Open Source · Local-First · $0 Monthly

ABUZ8 CLI

Control 156+ AI tools from the terminal. Build, run, and manage your AI infrastructure without leaving the command line.

Installation

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

Quick Start

🎨 Generate Image

abuz8 image "a futuristic city" --style cyberpunk

Generate images with AI. Support for 10+ styles.

✍️ Write Content

abuz8 write --topic "AI agents" --tone professional

Write blog posts, ads, emails, and more.

🎵 Create Music

abuz8 music --genre "electronic" --mood "energetic"

Generate music in any genre. Full control.

🎬 Create Video

abuz8 video --prompt "drone shot of mountains" --duration 30

Create videos from text or images.

🤖 Run Agent

abuz8 agent "customer_support" --query "How do I reset my password?"

Run 266+ agent prompts. Autonomous workflows.

🔍 Search & Research

abuz8 search "AI agents 2025" --max-results 20

Search the web, extract content, summarize.

Common Commands

# 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

Configuration

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

Examples

📝 Blog Post Generator

abuz8 write \
  --topic "How to build AI agents" \
  --tone "educational" \
  --length "long" \
  --output ./blog-post.md

🎨 Social Media Graphics

abuz8 image \
  "modern social media post about AI" \
  --style "minimal" \
  --width 1200 \
  --height 630 \
  --output ./social-media.png

📊 Data Analysis

abuz8 analyze \
  --file ./data.csv \
  --type "summary" \
  --output ./analysis.md