#!/bin/bash # Example usage scenarios for Claude Vision Auto echo "=== Claude Vision Auto - Example Usage ===" echo "" # Example 1: Basic usage echo "Example 1: Basic Interactive Session" echo "Command: claude-vision" echo "" # Example 2: With prompt echo "Example 2: With Initial Prompt" echo "Command: claude-vision \"create a test.md file\"" echo "" # Example 3: Debug mode echo "Example 3: Debug Mode" echo "Command: DEBUG=true claude-vision" echo "" # Example 4: Custom timing echo "Example 4: Custom Timing (slower system)" echo "Command: IDLE_THRESHOLD=5.0 RESPONSE_DELAY=2.0 claude-vision" echo "" # Example 5: Different model echo "Example 5: Use Llama 3.2 Vision" echo "Command: VISION_MODEL=\"llama3.2-vision:latest\" claude-vision" echo "" # Example 6: Remote Ollama echo "Example 6: Remote Ollama Server" echo "Command: OLLAMA_URL=\"http://192.168.1.100:11434/api/generate\" claude-vision" echo "" # Example 7: Combined configuration echo "Example 7: Combined Custom Configuration" cat << 'EOF' export OLLAMA_URL="http://localhost:11434/api/generate" export VISION_MODEL="minicpm-v:latest" export IDLE_THRESHOLD="4.0" export RESPONSE_DELAY="1.5" export DEBUG="true" claude-vision "refactor authentication module" EOF echo "" echo "=== End of Examples ===" echo "" echo "Run any of these commands to test Claude Vision Auto" echo "For more information, see docs/USAGE.md"