Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ornicar/lichess-puzzler


https://github.com/ornicar/lichess-puzzler

Last synced: 9 days ago
JSON representation

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-chess

The 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],
}
}
```