gitextract_1fmgb11j/ ├── .claude/ │ ├── commands/ │ │ └── review-pending-prs.md │ └── settings.json ├── .github/ │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ └── deploy-website.yml ├── .gitignore ├── CLAUDE.md ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── SPONSORSHIP.md ├── pyproject.toml └── website/ ├── build.py ├── fetch_github_stars.py ├── readme_parser.py ├── static/ │ ├── main.js │ └── style.css ├── templates/ │ ├── base.html │ └── index.html └── tests/ ├── test_build.py ├── test_fetch_github_stars.py └── test_readme_parser.py