No description
Find a file
HEndrik Visage 36db357cc1 commiting
2026-04-10 15:13:33 +02:00
.claude commiting 2026-04-10 15:13:33 +02:00
games commiting 2026-04-10 15:13:33 +02:00
.gitignore Set up chess analysis environment with Stockfish and python-chess 2026-04-08 12:19:19 +02:00
analyze_losses_vs_higher.py Add 8-ply Stockfish analysis of losses vs higher-rated opponents 2026-04-08 12:51:21 +02:00
chess-commentator.zip Wed 8 Apr 2026 14:04:37 SAST 2026-04-08 14:04:37 +02:00
CLAUDE.md Add /hev-quick-analysis skill and update CLAUDE.md with full project conventions 2026-04-08 12:57:07 +02:00
elo_performance.py Add Elo performance analysis script with actual vs expected win rates 2026-04-08 15:07:10 +02:00
opening_analysis.py Add opening analysis script with 5-move summaries 2026-04-08 12:34:23 +02:00
README.md Set up chess analysis environment with Stockfish and python-chess 2026-04-08 12:19:19 +02:00
requirements.txt Set up chess analysis environment with Stockfish and python-chess 2026-04-08 12:19:19 +02:00
split_games.py Sort 7,574 games into 19 categorized PGN files 2026-04-08 12:28:43 +02:00
stockfish_analysis.py Add Stockfish analysis script for draws (4-ply depth) 2026-04-08 12:41:17 +02:00
URL-to-consider commiting 2026-04-10 15:13:33 +02:00

Chess-Analysis

Analyze chess games of hevisko using Stockfish and AI workflows.

Setup

# Install Stockfish
brew install stockfish

# Create venv and install dependencies
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Usage

Place PGN files in games/ directory for analysis.

Dependencies

  • Stockfish 18 (chess engine)
  • python-chess 1.11.2 (PGN parsing + UCI interface)