Stats
Actions
Tags
How this command is triggered — by the user, by Claude, or both
Slash command
/gamedev-godot:godotThe summary Claude sees in its command listing — used to decide when to auto-load this command
# Godot Development
Develop, test, build, and deploy Godot 4.x games.
## Quick Reference
## Testing Overview
| | GdUnit4 | PlayGodot |
|---|---------|-----------|
| Type | Unit testing | Game automation |
| Language | GDScript | Python |
| Runs | Inside Godot | External (like Playwright) |
| Requires | Addon | Custom Godot fork |
| Best for | Unit/component tests | E2E/integration tests |
## Available Tools
For detailed documentation, read the full SKILL.md at `${CLAUDE_PLUGIN_ROOT}/skills/godot/SKILL.md`.
Key capabilities:
- **GdUnit4 Testing** - Unit tests, scene tests, input sim...Develop, test, build, and deploy Godot 4.x games.
# GdUnit4 - Unit testing framework (GDScript, runs inside Godot)
godot --headless --path . -s res://addons/gdUnit4/bin/GdUnitCmdTool.gd --run-tests
# PlayGodot - Game automation framework (Python, like Playwright for games)
export GODOT_PATH=/path/to/godot-automation-fork
pytest tests/ -v
# Export web build
godot --headless --export-release "Web" ./build/index.html
# Deploy to Vercel
vercel deploy ./build --prod
| GdUnit4 | PlayGodot | |
|---|---|---|
| Type | Unit testing | Game automation |
| Language | GDScript | Python |
| Runs | Inside Godot | External (like Playwright) |
| Requires | Addon | Custom Godot fork |
| Best for | Unit/component tests | E2E/integration tests |
For detailed documentation, read the full SKILL.md at ${CLAUDE_PLUGIN_ROOT}/skills/godot/SKILL.md.
Key capabilities:
npx claudepluginhub bernatmv/ai-rules --plugin gamedev-godot/godotDevelops, tests, builds, and deploys Godot 4.x games with support for GdUnit4 unit testing, PlayGodot automation, web/desktop exports, and CI/CD pipelines.