godot-task
Installation
SKILL.md
Godot Task Executor
All files below are in ${CLAUDE_SKILL_DIR}/. Load progressively — read each file when its phase begins, not upfront.
| File | Purpose | When to read |
|---|---|---|
quirks.md |
Known Godot gotchas and workarounds | Before writing any code |
gdscript.md |
GDScript syntax reference | Before writing any code |
scene-generation.md |
Building .tscn files via headless GDScript builders |
Targets include .tscn |
script-generation.md |
Writing runtime .gd scripts for node behavior |
Targets include .gd |
coordination.md |
Ordering scene + script generation | Targets include both .tscn and .gd |
test-harness.md |
Writing test/test_{id}.gd verification scripts |
Before writing test harness |
capture.md |
Screenshot/video capture with GPU detection | Before capturing screenshots |
visual-qa.md |
Automated screenshot comparison against reference | reference.png exists and task has visual output |
doc_api/_common.md |
Index of ~128 common Godot classes (one-line each) | Need API ref; scan to find class names |
doc_api/_other.md |
Index of ~732 remaining Godot classes | Need API ref; class isn't in _common.md |
doc_api/{ClassName}.md |
Full API reference for a single Godot class | Need API ref; look up specific class |
Bootstrap doc_api: bash ${CLAUDE_SKILL_DIR}/tools/ensure_doc_api.sh
Related skills