Expert knowledge of Godot Engine game development including scene creation, node management, GDScript programming, and project structure. Use when working with Godot projects, creating or modifying scenes, adding nodes, writing game scripts, or solving Godot-specific problems.
Expert Godot Engine development with scene creation, node management, and GDScript programming. Use when building or modifying Godot projects, creating scenes, adding nodes, writing game scripts, or solving engine-specific problems.
/plugin marketplace add Zate/cc-godot/plugin install gd@godot-gamedevThis skill is limited to using the following tools:
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.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.