Review a game for turning points
chess_reviewReplays a finished game ply by ply with the engine and returns the moves where the evaluation swung by more than a threshold (default 1.5 pawns). Each entry gives the move number, the side that moved, the move played, the engine's preferred move, the size of the swing in pawns, the evaluation before and after, and the FEN of the resulting position. Accepts a PGN or a list of SAN moves, and can be filtered to one colour. Long games are truncated at 60 plies.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pgn | No | The finished game as PGN. | |
| moves | No | Or SAN moves from the start. | |
| colour | No | "white" or "black" — whose mistakes to report. Default both. | |
| threshold | No | Swing in pawns that counts as a turning point. Default 1.5. |