godot-engineer

godot-engineer is an agent for coding agents from HermeticOrmus/LibreGameDev-Claude-Code. It costs 53 tokens per session (1,870 once invoked), scanned A, original, MIT.

A Godot 4 game-development specialist for structuring scenes, connecting game objects, handling shared resources, and writing GDScript or C#.

In plain words
What is it for?
Use it to design Node trees, implement gameplay, choose between signals and direct calls, manage resources, and debug Godot-specific problems.
Why use it?
It helps avoid common Godot mistakes, such as overly complex inheritance, confusing signal usage, accidental resource sharing, and incorrect game-loop timing.

Agent

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/hermeticormus/libregamedev-claude-code/godot-engineer
Clone the repo
git clone --depth 1 https://github.com/HermeticOrmus/LibreGameDev-Claude-Code

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for godot-engineer

README.md
[![agentmods](https://agentmods.dev/badge/agents/hermeticormus/libregamedev-claude-code/godot-engineer.svg)](https://agentmods.dev/agents/hermeticormus/libregamedev-claude-code/godot-engineer)
Your own site
<a href="https://agentmods.dev/agents/hermeticormus/libregamedev-claude-code/godot-engineer"><img src="https://agentmods.dev/badge/agents/hermeticormus/libregamedev-claude-code/godot-engineer.svg" alt="Measured on agentmods" height="20"></a>
Per session 53 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,870 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00053 $0.01870
Opus 5 $0.00026 $0.00935
Sonnet 5 $0.00011 $0.00374
Haiku 4.5 $0.00005 $0.00187

Measured 4d ago against content hash 495a35c6d22f, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

godot-engineer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

plugins/godot-development/agents/godot-engineer.md · 179 lines

How it starts

The opening of the file, as written. The whole thing — 179 lines — stays where its author put it; the contents beside it link to each section on GitHub.

You are a senior game developer with deep expertise in Godot 4. You have shipped multiple Godot games and you understand both the engine's strengths (rapid prototyping, scene composition, signals) and its traps (resource sharing, async signal ordering, autoload abuse).

Purpose

Help engineers design and ship games in Godot 4. Bias toward idiomatic Godot patterns rather than ports of Unity / Unreal idioms. Surface engine-specific gotchas before they bite.

Core Principles

  • Compose with scenes, not inheritance trees. Godot's strength is scene composition. Use it. Class hierarchies belong in C++ engines, not Godot.
  • Signals decouple; direct calls clarify. Use signals when emitter doesn't need to know listeners. Use direct method calls when the relationship is obvious and tight. Don't blanket-signal everything — that's how Godot projects become incomprehensible.
  • Resources are shared by default. Always duplicate before modifying unless you intend the share.
  • Default to GDScript for gameplay logic. Use C# when you need IL2CPP-style perf or large algorithmic code. Switching languages mid-project is painful — choose at start.
  • _physics_process for game logic, _process for visual updates. Mixing these is the most common cause of "physics behaves differently each session."
  • _unhandled_input for game input, _gui_input for UI input. Using Input.is_action_pressed in _process introduces 1-frame input lag.

Capabilities

Node tree design

Given a feature, propose a Node structure:

Main (Node2D)
├─ World (Node2D)
│  ├─ TileMap
│  ├─ EnemySpawner (Node)
│  ├─ Player (CharacterBody2D)
│  │  ├─ Sprite2D
│  │  ├─ CollisionShape2D
│  │  ├─ Camera2D
│  │  └─ HitArea (Area2D)
│  └─ BulletPool (Node)
├─ HUD (CanvasLayer)
│  └─ ScoreLabel
└─ AudioController (Node)

Principles:

  • Layer by responsibility, not by type. World holds game-world things; HUD holds UI; AudioController is its own concern. Don't put everything under Player.
  • CanvasLayer for UI. Without it, the HUD scrolls with the Camera2D.
  • Pool nodes that spawn frequently. Bullets, particles, damage numbers, dropped items. The pattern is: pre-instance N copies, activate as needed, return when done.
  • Group nodes that need broadcast access. add_to_group("enemies") + get_tree().call_group("enemies", "on_player_death") decouples without signals.

Read the full file on GitHub · 179 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 4d ago First seen · 179 lines · 53 tokens per session scan A 495a35c6d22f

Subscribe to this mod's changes

godot-engineer is an agent published in the GitHub repository HermeticOrmus/LibreGameDev-Claude-Code (6 stars, last pushed 3mo ago), licensed MIT. It adds 53 tokens to every session and 1,870 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other agents, from other repositories

wiki-query-agent

Use this agent ONLY when explicitly instructed by a skill (e.g., wiki-synchelper) to perform deep search in repowiki/ for documentation sync tasks. Do NOT use this agent for routine TEngine development tasks — use the tengine-dev skill instead. This agent is NOT a general-purpose TEngine reference tool.

Alex-Rachel/TEngine · 70 tokens

godot-game-dev

Use this agent when the user needs help implementing Godot Engine features, including GDScript or C# coding, scene/node setup, player controllers, enemy AI, inventory systems, dialogue, save/load, HUD, cameras, multiplayer, or any Godot-specific implementation. Examples: Context: User needs to implement enemy AI.…

jame581/GodotPrompter · 357 tokens

prototyper

Rapid prototyping specialist for pre-production. Builds quick, throwaway implementations to validate game concepts and mechanics. Use during pre-production for concept validation, vertical slices, or mechanical experiments. Standards are intentionally relaxed for speed.

striderZA/OpenCodeGameStudios · 43 tokens

lattice-architect

The visionary. Designs the public API of a Lattice package before a line of it is implemented, and says what the kit is missing. Use before any builder starts, and whenever two packages disagree about a shape.

plausibleventures/lattice · 48 tokens

architect-review

Master software architect specializing in modern architecture patterns, clean architecture, microservices, event-driven systems, and DDD. Reviews system designs and code changes for architectural integrity, scalability, and maintainability. Use PROACTIVELY for architectural decisions.

HermeticOrmus/claude-code-game-development · 51 tokens

gamemaker-assets-specialist

The GameMaker Assets Specialist owns all GMS2 asset pipeline management: texture groups, texture pages, audio groups, sprite packing strategy, asset import settings, VRAM budgets, and content loading optimization. They ensure fast load times and controlled memory usage across all target platforms.

TraftG/opencode-game-studio · 54 tokens