From a0017d34598157d655f5d27c1513d294dd60d488 Mon Sep 17 00:00:00 2001 From: yusyus Date: Sun, 26 Oct 2025 14:32:38 +0300 Subject: [PATCH] feat: Add Godot GitHub repository config MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Config for godotengine/godot repository: - Extracts README, issues, changelog, releases - Targets core C++ files (core, scene, servers) - Max 100 issues - Surface layer only (no full code implementation) Usage: python3 cli/github_scraper.py --config configs/godot_github.json 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- configs/godot_github.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 configs/godot_github.json diff --git a/configs/godot_github.json b/configs/godot_github.json new file mode 100644 index 0000000..e33c66f --- /dev/null +++ b/configs/godot_github.json @@ -0,0 +1,19 @@ +{ + "name": "godot", + "repo": "godotengine/godot", + "description": "Godot Engine - Multi-platform 2D and 3D game engine", + "github_token": null, + "include_issues": true, + "max_issues": 100, + "include_changelog": true, + "include_releases": true, + "include_code": false, + "file_patterns": [ + "core/**/*.h", + "core/**/*.cpp", + "scene/**/*.h", + "scene/**/*.cpp", + "servers/**/*.h", + "servers/**/*.cpp" + ] +}