# Clone
git clone https://github.com/stream-ware/streamware
cd streamware
# Install dependencies
bash install_bot_deps.sh
# Install Streamware
pip install -e .
# Deploy bot
bash deploy_vscode_bot.sh
# Use it!
sq bot continue_work --iterations 5
install_bot_deps.sh installed:deploy_vscode_bot.sh configured:# Click buttons
sq bot click_button --button accept_all
# Work autonomously
sq bot continue_work --iterations 10
# Take screenshots
sq auto screenshot --text screen.png
# Automate desktop
sq auto click --x 100 --y 200
sudo apt-get install gnome-screenshot scrot
xhost +local:
export DISPLAY=:0
pip install --upgrade "Pillow>=9.2.0"
bash install_bot_deps.sh
If automated scripts donโt work:
# 1. System packages
sudo apt-get update
sudo apt-get install -y gnome-screenshot scrot imagemagick xclip xdotool
# 2. Python packages
pip install --upgrade pip
pip install "Pillow>=9.2.0" pyscreeze pyautogui
pip install SpeechRecognition pyttsx3 # optional: voice
pip install opencv-python # optional: media
# 3. X11
xhost +local:
# 4. Ollama
curl -fsSL https://ollama.ai/install.sh | sh
ollama pull llava
ollama pull qwen2.5:14b
# 5. Streamware
pip install -e .
# Test imports
python3 -c "from streamware.components import VSCodeBotComponent; print('โ')"
# Test screenshot
sq auto screenshot --text test.png
# Test bot
sq bot click_button --button accept_all
VSCODE_BOT_GUIDE.mdexamples/voice_automation_examples.shsq bot continue_work --iterations 100docs/Your AI pair programmer is ready! ๐คโจ