Godot Export Preset Doctor
Release-readiness checks for Godot export_presets.cfg, focused on Android, CI export hygiene, debug flags, signing safety, package identity, ABIs, icons, and missing export paths.
The tool is a companion to export workflows. It does not build the game; it catches risky preset drift before a release job runs godot --headless --export-release.
Use it when a release preset changes, when setting up a new export target, or before cutting a public build from CI.
Install
python -m pip install -e .
From PyPI:
python -m pip install godot-export-preset-doctor
Quick Start
godot-export-doctor C:\Projects\MyGame
godot-export-doctor . --platform Android
godot-export-doctor . --platform Android --required-android-abi arm64-v8a
godot-export-doctor . --format sarif --output export-doctor.sarif
godot-export-doctor matrix . --expected-platform Android --expected-platform Web --format markdown
godot-export-doctor leaks . --format html --output reports\export-leaks.html
godot-export-doctor diff . --baseline reports\baseline-export-presets --format markdown
godot-export-doctor inspect-folder build\android --hash-files --format markdown
godot-export-doctor inspect-files reports\export-file-list.json --format markdown
godot-export-doctor pck reports\export-file-list.json --format markdown
Use --fail-on none while exploring a report:
godot-export-doctor examples\bad-export-project --fail-on none
Real Workflow: Gate Release Presets In CI
Run the checker before a Godot export step so preset drift fails early:
godot-export-doctor . --platform Android --fail-on warning --format sarif --output reports\export-doctor.sarif
This is especially useful for:
- catching debug flags that were left enabled in release-like presets;
- checking Android package id, version, icon, and ABI readiness;
- spotting local keystore paths or literal credential values before reports are shared;
- confirming export paths exist and match the expected target.
For a first pass on an existing project, avoid failing the build while you review findings:
godot-export-doctor . --platform Android --fail-on none --format json --output reports\export-doctor.json
Require a specific Android ABI without creating a config file:
godot-export-doctor . --platform Android --required-android-abi arm64-v8a --fail-on warning
What It Checks
- Missing
export_presets.cfg. - Missing preset name, platform, or export path.
- Android package id, version code/name, enabled ABI, and launcher icon readiness.
- Release-like presets with debug options enabled.
- Hard-coded password, token, secret, or keystore-like values.
- Missing or duplicated expected export platforms in a release matrix.
- Export preset changes compared with a baseline, including renamed presets whose export target and options still match.
- Broad export filters that may include debug/test/source files.
- Exported folders that contain debug/test/source-art/log/backup files.
- Exported folders and file lists that contain signing, key, provisioning, or environment files.
- Exported folder manifests with file sizes, extension counts, and optional SHA-256 hashes.
- Local-looking export, include, or exclude paths that should not be shared in CI artifacts.
- JSON and SARIF output for scripts and CI, with plain-language rule explanations.
Commands
check is the default command and keeps the original release-readiness behavior:
godot-export-doctor check . --platform Android --format sarif --output reports\export.sarif
For older scripts, this is equivalent to:
godot-export-doctor . --platform Android --format sarif --output reports\export.sarif
matrix gives a compact table of export presets and warns when an expected
platform is missing or duplicated:
godot-export-doctor matrix . --expected-platform Android --expected-platform Web --format markdown
leaks checks broad export filters against common development-file patterns and
flags local-looking paths in preset fields:
godot-export-doctor leaks . --format html --output reports\export-leaks.html --fail-on none
diff compares the current export_presets.cfg with a baseline project or
baseline preset file. If a preset has the same export target and options but a
new name, the diff reports it as renamed instead of separate added and removed
presets:
godot-export-doctor diff . --baseline reports\baseline-export-presets --format markdown
inspect-folder scans an already-exported folder for development-looking files,
private/signing files, extension counts, and file size totals. Add
--hash-files when you want SHA-256 values in the file manifest:
godot-export-doctor inspect-folder build\android --hash-files --format json --output reports\exported-folder.json
inspect-files checks a newline-separated exported file list or a JSON file
containing files or paths. pck is a shorter alias for the same check when
your build pipeline writes a pack manifest. Neither command parses .pck
binaries directly; pass a file list generated by your export pipeline instead:
godot-export-doctor inspect-files reports\export-file-list.json --format markdown --output reports\exported-files.md
godot-export-doctor pck reports\export-file-list.json --format markdown --output reports\exported-pck.md
Configuration
Create .godot-export-doctor.toml:
format = "text"
fail_on = "warning"
platform = "Android"
required_android_abis = ["arm64-v8a"]
allowed_secret_patterns = ["<.+>"]
CLI flags override config values.
The default .godot-export-doctor.toml is optional. If you pass --config,
the file must exist; a missing explicit config path returns a usage error so CI
does not accidentally run with defaults.
Output
Text:
godot-export-doctor .
JSON:
godot-export-doctor . --format json --output export-report.json
JSON reports include report metadata, a rule catalog, and findings with readable titles and explanations. This makes CI artifacts easier to review without looking up every rule id.
Markdown or HTML matrix report:
godot-export-doctor matrix . --expected-platform Android --expected-platform Web --format html --output export-matrix.html
SARIF:
godot-export-doctor . --format sarif --output export-doctor.sarif
CI Example
- run: python -m pip install godot-export-preset-doctor
- run: godot-export-doctor . --platform Android --fail-on warning --format sarif --output reports/export-doctor.sarif
- run: godot-export-doctor matrix . --expected-platform Android --expected-platform Web --format markdown --output reports/export-matrix.md --fail-on warning
- run: godot-export-doctor leaks . --format html --output reports/export-leaks.html --fail-on warning
- run: godot-export-doctor diff . --baseline reports/baseline-export-presets --format markdown --output reports/export-diff.md --fail-on none
- run: godot-export-doctor inspect-folder build/android --hash-files --format json --output reports/exported-folder.json --fail-on none
Documentation
- Android release checklist
- Rule reference
- Security guide
- Configuration
- CI integration
- Troubleshooting
Development
python -m pip install -e .
python -m unittest discover -s tests -v
godot-export-doctor examples\bad-export-project --fail-on none
Design Notes
The checker is intentionally static. It reads Godot config files and reports conservative findings that are useful in local development and CI. It does not need the Godot editor, Android SDK, or network access.
Examples and fixtures are generic by design. They should be safe to publish without exposing private project details.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file godot_export_preset_doctor-0.1.13.tar.gz.
File metadata
- Download URL: godot_export_preset_doctor-0.1.13.tar.gz
- Upload date:
- Size: 25.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5cee056a6c247ad6cf1fb4a6be7e829246cef10efc814885e2354c6f2b05c8fb
|
|
| MD5 |
57dfd8d329c028ed0e3b912e8225611a
|
|
| BLAKE2b-256 |
39feb9039cef393c64018d5b50ed21e7a39baf92f3f0a2db01aab0e1db7c7170
|
Provenance
The following attestation bundles were made for godot_export_preset_doctor-0.1.13.tar.gz:
Publisher:
publish-export-preset-doctor.yml on NonniGB/godot-production-toolkit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
godot_export_preset_doctor-0.1.13.tar.gz -
Subject digest:
5cee056a6c247ad6cf1fb4a6be7e829246cef10efc814885e2354c6f2b05c8fb - Sigstore transparency entry: 2095870615
- Sigstore integration time:
-
Permalink:
NonniGB/godot-production-toolkit@3f3b98d138fc6457d55bc435ca7361443d231d79 -
Branch / Tag:
refs/tags/godot-export-preset-doctor-v0.1.13 - Owner: https://github.com/NonniGB
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-export-preset-doctor.yml@3f3b98d138fc6457d55bc435ca7361443d231d79 -
Trigger Event:
push
-
Statement type:
File details
Details for the file godot_export_preset_doctor-0.1.13-py3-none-any.whl.
File metadata
- Download URL: godot_export_preset_doctor-0.1.13-py3-none-any.whl
- Upload date:
- Size: 22.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4a64e101fb127ad942890f450d85cf52e3161608618e0c5e0c8475f4c7e1a897
|
|
| MD5 |
49e7258fa612a1f0158404f623469a8a
|
|
| BLAKE2b-256 |
c3552ab699be9b6e5b0ce610c3dcd81794b5543e6e6870ce30c12b6fa6fb81be
|
Provenance
The following attestation bundles were made for godot_export_preset_doctor-0.1.13-py3-none-any.whl:
Publisher:
publish-export-preset-doctor.yml on NonniGB/godot-production-toolkit
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
godot_export_preset_doctor-0.1.13-py3-none-any.whl -
Subject digest:
4a64e101fb127ad942890f450d85cf52e3161608618e0c5e0c8475f4c7e1a897 - Sigstore transparency entry: 2095871018
- Sigstore integration time:
-
Permalink:
NonniGB/godot-production-toolkit@3f3b98d138fc6457d55bc435ca7361443d231d79 -
Branch / Tag:
refs/tags/godot-export-preset-doctor-v0.1.13 - Owner: https://github.com/NonniGB
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish-export-preset-doctor.yml@3f3b98d138fc6457d55bc435ca7361443d231d79 -
Trigger Event:
push
-
Statement type: