Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here
godot-game-dev logo

godot-game-dev

jthewl-godot-skills

DevelopmentClaude Codeby JupiterTheWarlock

Summary

Official Godot docs-backed game development knowledge skill for Claude Code.

Install to Claude Code

/plugin install godot-game-dev@jthewl-godot-skills

Run in Claude Code. Add the marketplace first with /plugin marketplace add JupiterTheWarlock/godot-game-dev-skill if you haven't already.

README.md

Godot Game Dev Skill

A portable Godot game development knowledge plugin for Claude Code and other skill-capable agents.

This skill uses the official Godot documentation as the primary source for API and engine behavior. It supports both online search against docs.godotengine.org and offline search against a local godotengine/godot-docs checkout.

What It Covers

  • Godot 4 projects and migration checks
  • GDScript, C#, GDExtension, scenes, nodes, signals, and resources
  • Shaders, UI, input, audio, animation, physics, navigation, networking, exports, and performance
  • Lightweight gamejam/prototype guardrails
  • A small curated extract from Claude-Code-Game-Studios, used only as heuristics

Claude Code Marketplace Install

Add this repository as a Claude Code plugin marketplace:

claude plugin marketplace add JupiterTheWarlock/godot-game-dev-skill

Install the plugin:

claude plugin install godot-game-dev@jthewl-godot-skills

Inside Claude Code, the skill is namespaced as:

/godot-game-dev:godot-game-dev

For local development before publishing changes:

claude --plugin-dir ./plugins/godot-game-dev
claude plugin validate .

Manual Skill Install

If your agent does not support Claude Code plugins, copy the skill folder directly:

plugins/godot-game-dev/skills/godot-game-dev -> ~/.codex/skills/godot-game-dev
plugins/godot-game-dev/skills/godot-game-dev -> ~/.claude/skills/godot-game-dev

Restart the agent app after installing so it can discover the skill.

Online Docs Search

Use this when network access is available:

python plugins/godot-game-dev/skills/godot-game-dev/scripts/search_godot_docs_online.py "CharacterBody2D move_and_slide" --version stable
python plugins/godot-game-dev/skills/godot-game-dev/scripts/search_godot_docs_online.py --class CharacterBody2D --version stable

Supported versions follow Godot docs URL names, such as stable, latest, 4.6, 4.5, or 3.6.

Offline Docs Search

Clone the official docs under your home directory:

git clone --depth 1 --filter=blob:none https://github.com/godotengine/godot-docs.git ~/godot-docs

Then search locally:

python plugins/godot-game-dev/skills/godot-game-dev/scripts/search_godot_docs.py "signal connect callable"
python plugins/godot-game-dev/skills/godot-game-dev/scripts/search_godot_docs.py --class AnimationPlayer "animation_finished"

You can also point to another checkout:

GODOT_DOCS_DIR=/path/to/godot-docs python plugins/godot-game-dev/skills/godot-game-dev/scripts/search_godot_docs.py "TileMapLayer"

Or let the script clone the docs if missing:

python plugins/godot-game-dev/skills/godot-game-dev/scripts/search_godot_docs.py "ResourceLoader threaded load" --ensure

Design Notes

The skill intentionally does not vendor the full Godot docs repository. Full docs are large and change often, so the skill keeps a compact routing map and retrieval scripts instead.

Use official docs as API authority. Use bundled practical rules as implementation guardrails. Use third-party extracts only as non-authoritative heuristics.

License

MIT.

Related plugins

Browse all →