https://github.com/ornicar/lichess-puzzler
https://github.com/ornicar/lichess-puzzler
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ornicar/lichess-puzzler
- Owner: ornicar
- License: mit
- Created: 2020-10-19T12:15:22.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-03-10T16:09:14.000Z (3 months ago)
- Last Synced: 2025-03-28T21:02:47.987Z (2 months ago)
- Language: Python
- Homepage:
- Size: 2.61 MB
- Stars: 137
- Watchers: 10
- Forks: 33
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
lichess puzzler
---------------Let's renew the puzzle collection.
We'll produce a collection of new puzzles out of the lichess game database.We need a program that generates puzzles,
and one that allows manual validation and categorization of each and every puzzle.## Generator
Use stockfish and database.lichess.org to produce puzzle candidates.
Python is probably the language of choice because of
https://github.com/niklasf/python-chessThe generator posts candidates to the validator.
## Validator
Stores puzzle candidates and lets people review them with a web UI.
mongodb puzzle:
```
{
_id: 1, // incremental
createdAt: date,
gameId: string,
fen: string,
ply: number,
moves: [uci],
review: { // after a review was done
at: date,
score: 0-5, // quality
rating: 1200 // estimated rating
topics: [string],
}
}
```