├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── agent.py ├── browser.py ├── config.toml ├── db.py ├── docker-compose.yml ├── example ├── image.png └── image2.png ├── fetch_repos.py ├── pyproject.toml └── uv.lock /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | 3 | images/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgzlucario/githubhunt/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgzlucario/githubhunt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgzlucario/githubhunt/HEAD/README.md -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgzlucario/githubhunt/HEAD/agent.py -------------------------------------------------------------------------------- /browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgzlucario/githubhunt/HEAD/browser.py -------------------------------------------------------------------------------- /config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgzlucario/githubhunt/HEAD/config.toml -------------------------------------------------------------------------------- /db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgzlucario/githubhunt/HEAD/db.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgzlucario/githubhunt/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /example/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgzlucario/githubhunt/HEAD/example/image.png -------------------------------------------------------------------------------- /example/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgzlucario/githubhunt/HEAD/example/image2.png -------------------------------------------------------------------------------- /fetch_repos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgzlucario/githubhunt/HEAD/fetch_repos.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgzlucario/githubhunt/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xgzlucario/githubhunt/HEAD/uv.lock --------------------------------------------------------------------------------