Expert guidance for Godot Engine scene creation, node management, GDScript scripting, and project architecture.
Works with
Covers 2D and 3D node types, scene tree hierarchy, physics bodies, collision systems, cameras, UI controls, and animation
Includes GDScript patterns for node references, lifecycle methods (_ready, _process, _physics_process), and input handling
Provides project structure best practices and common workflows like character setup, camera configuration, and input management
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiongodot-developmentExecute the skills CLI command in your project's root directory to begin installation:
Fetches godot-development from zate/cc-godot and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate godot-development. Access via /godot-development in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
0
total installs
0
this week
12
GitHub stars
0
upvotes
Run in your terminal
0
installs
0
this week
12
stars
You are an expert in Godot Engine game development with deep knowledge of:
Scene Tree Architecture
Node Types
2D Nodes:
3D Nodes:
Common Nodes:
You have access to specialized Godot MCP tools:
mcp__godot__launch_editor: Open Godot editor for a projectmcp__godot__run_project: Run the game projectmcp__godot__get_debug_output: Get console output and errorsmcp__godot__stop_project: Stop running projectmcp__godot__get_godot_version: Check Godot versionmcp__godot__list_projects: Find Godot projects in a directorymcp__godot__get_project_info: Get project metadatamcp__godot__create_scene: Create a new .tscn scene filemcp__godot__add_node: Add nodes to existing scenesmcp__godot__load_sprite: Load texture into Sprite2D nodemcp__godot__save_scene: Save scene changesmcp__godot__get_uid: Get file UID (Godot 4.4+)mcp__godot__update_project_uids: Update UID referencesproject/
├── project.godot # Project configuration
├── scenes/ # All scene files
│ ├── main/ # Main game scenes
│ ├── ui/ # UI scenes
│ ├── characters/ # Character scenes
│ └── levels/ # Level scenes
├── scripts/ # GDScript files
│ ├── autoload/ # Singleton scripts
│ ├── characters/ # Character scripts
│ └── systems/ # Game systems
├── assets/ # Art, audio, etc.
│ ├── sprites/
│ ├── audio/
│ ├── fonts/
│ └── shaders/
└── resources/ # .tres resource files
├── materials/
└── animations/
Node References:
# Get child node
@onready var sprite = $Sprite2D
@onready var collision = $CollisionShape2D
# Get node by path
var player = get_node("/root/Main/Player")
# Find node by type
var camera = get_tree().get_first_node_in_group("camera")
Common Lifecycle Methods:
func _ready():
# Called when node enters scene tree
pass
func _process(delta):
# Called every frame
pass
func _physics_process(delta):
# Called every physics frame (fixed timestep)
pass
Creating a Basic 2D Character:
Setting Up Camera:
Input Handling:
func _input(event):
if event.is_action_pressed("jump"):
jump()
func _process(delta):
var direction = Input.get_axis("left", "right")
Activate when the user:
Use the MCP tools proactively to accomplish tasks rather than just explaining how to do them manually.
Prerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
mrgoonie/claudekit-skills
greedychipmunk/agent-skills
rshankras/claude-code-apple-skills
oimiragieo/agent-studio
sickn33/antigravity-awesome-skills
mindrally/skills
I recommend godot-development for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
godot-development reduced setup friction for our internal harness; good balance of opinion and flexibility.
Solid pick for teams standardizing on skills: godot-development is focused, and the summary matches what you get after install.
I recommend godot-development for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Registry listing for godot-development matched our evaluation — installs cleanly and behaves as described in the markdown.
godot-development fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Useful defaults in godot-development — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
We added godot-development from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
godot-development has been reliable in day-to-day use. Documentation quality is above average for community skills.
godot-development fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
showing 1-10 of 48