원클릭으로
update-godot-version
Procedure to add support for a new Godot Engine stable release in the PGSGP repository
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Procedure to add support for a new Godot Engine stable release in the PGSGP repository
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | update-godot-version |
| description | Procedure to add support for a new Godot Engine stable release in the PGSGP repository |
This skill documents the precise sequence of files and values that must be modified to support a new Godot Engine stable version. Follow these steps meticulously when asked to update the project's supported Godot versions.
Add the new Godot version and its corresponding compatible Kotlin version to .github/versions.json. Place new versions in descending order (newest at the top):
{
"versions": [
{
"godot": "NEW_GODOT_VERSION",
"kotlin": "COMPATIBLE_KOTLIN_VERSION"
},
...
]
}
If the new Godot version is the latest stable version, update the fallback compilation AAR in godot-lib/build.gradle:
artifacts.add("default", file('godot-lib.NEW_GODOT_VERSION.stable.template_release.aar'))
Update references to the default/latest Godot version across all GitHub workflows:
Setup godot-lib for lint, update the downloaded template filename and url.build-check job, update godot_version input to the new latest stable version.test job, update godot_version input to the new latest stable version.godot_version input default parameter.godot_version input default parameter.Ensure all documentation accurately reflects the new support:
v3.1.x) documenting the newly supported Godot version.Verify the entire update before committing or tagging:
.gdap generator script locally:
python3 generate_gdap.py