What problem does it solve?
This Skill prevents silent Godot API mistakes by checking the official docs before you rely on a class, method, signal, property, or enum. It is especially useful when you are dealing with version mismatches, renamed properties, or uncertain signatures that can break builds without obvious clues.
Core Features & Use Cases
- API Verification: Confirm the exact Godot 4.x signature for classes, methods, signals, properties, and enums.
- Deprecation Checks: Look up recommended patterns and replacement APIs when something may be outdated or renamed.
- Targeted Research: Search for the right class or page when you only know part of the engine concept you need.
- Use Case: Before writing a gameplay script that uses a physics or character controller API, verify the documentation first so you do not introduce a Godot 3-to-4 mismatch.
Quick Start
Ask the assistant to verify the official Godot API for the class or property you want to use before writing code.