godot-code-review
Installation
SKILL.md
Godot Code Review
Systematic review patterns for Godot game development projects.
Common Pitfalls & Anti-Patterns
_process() Abuse
# BAD: Using _process for everything
func _process(delta):
# Movement that could be in _physics_process
position += velocity * delta
# Animation updates
update_animation()