Echo is a Python bot that automatically solves word games in Game Pigeon. Supports Word Hunt, Anagrams, and Word Bites.
- macOS with iPhone mirroring capabilities
- Python 3.8+
- Dependencies in
requirements.txt
- Clone and install dependencies:
git clone https://github.com/condyl/echo.git
cd game-pigeon-winner
pip install -r requirements.txt- Mirror your iPhone to your Mac
- Open Game Pigeon in iMessage and start a word game
- Run the bot with optional arguments:
# Normal mode - finds all possible words
python main.py
# Realistic mode - limits scores to human-like levels
python main.py --realistic
# Target score mode - aims for a specific score
python main.py --target 10000
# Debug mode - saves screenshots and processing images
python main.py --debugecho/
├── src/ # Source code
│ ├── game/ # Game-specific modules
│ ├── config/ # Configuration files
│ └── utils/ # Utility functions
├── scripts/ # Utility scripts
├── tests/ # Test files
├── word_lists/ # Word list files
└── requirements.txt # Python dependencies
- Automatic game board detection
- Word finding and drawing
- Support for all game modes
- Realistic mode for human-like scores
- Target score mode for custom score limits
- Debug mode for troubleshooting
- Optimized word selection and drawing
MIT License