A hobby project for fun. Do not expect a serious or competitive chess engine.
A simple chess engine designed to play on Lichess as a personal programming exercise and pastime.
This is a personal hobby project created purely for entertainment and learning purposes. There is no intention to reinvent the wheel or build a "real" competitive chess engine. If you're looking for a serious chess engine, please check out Stockfish, Leela Chess Zero, or other established engines.
PinkyPawn implements simple heuristic-based move evaluation using intuitive chess concepts.
bot/
├── config.py # Configuration settings
├── main.py # Bot entry point
├── engines/
│ ├── base_engine.py # Abstract engine interface
│ ├── pinkypawn_engine.py # Heuristic-based engine
│ ├── random_engine.py # Random move selection
│ └── stockfish_engine.py # Stockfish integration