惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 【当耐特】
云风的 BLOG
云风的 BLOG
罗磊的独立博客
C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园_首页
J
Java Code Geeks
Apple Machine Learning Research
Apple Machine Learning Research
人人都是产品经理
人人都是产品经理
爱范儿
爱范儿
I
InfoQ
Hugging Face - Blog
Hugging Face - Blog
T
Tailwind CSS Blog
B
Blog RSS Feed

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Tested Every Godot AI Plugin So You Don't Have To
Ziva · 2026-05-21 · via DEV Community
Cover image for I Tested Every Godot AI Plugin So You Don't Have To

Ziva

Ziva

Posted on • Originally published at ziva.sh

There are 11 serious AI plugins for Godot in 2026. The official asset library has 8. Indie founders ship new ones every other month. Asking ChatGPT "best Godot AI plugin" gives a different answer every session.

I spent two weeks running every option through the same set of real game-dev tasks. This is what I found, with prices and the cases where each one wins.

The lineup

Eleven tools, grouped by how they connect to the editor.

In-editor agents (the AI lives inside Godot):

  1. Ziva
  2. AI Assistant Hub by FlamxGames
  3. GameDev Assistant
  4. Godot AI Suite (MarcEngel)
  5. AI Assistants For Godot 4 (Godot4-Addons)

MCP bridges (Claude Code / Cursor / Codex drives Godot via the Model Context Protocol):

  1. Godot AI (the original MCP plugin by dlight)
  2. Godot MCP Pro
  3. GDAI MCP

AI-native editors (replace Godot's editor entirely with a chat-first one):

  1. Summer Engine

External clients (paired with Godot via configuration or no integration):

  1. Cursor with .cursorrules
  2. GitHub Copilot via the lrdcxdes community plugin

The test

I built the same minimum scene five times: a 2D platformer with a player CharacterBody2D, a TileMapLayer level, two enemies with a shared StateMachine, and a coin pickup with a signal-based score counter. Each plugin had to:

  1. Generate the player script from a description
  2. Add the two enemies and wire their state machines
  3. Paint a small tilemap programmatically
  4. Generate a coin sprite and import it correctly
  5. Read a runtime error and propose a fix

Real tasks, identical scope, ~30 minutes of agent time each.

Results table

Plugin Player script Adds enemies Paints tilemap Sprite gen Reads errors Setup time
Ziva yes yes yes yes (Retrodiffusion) yes 2 min
AI Assistant Hub yes (chat only) no (you paste) no no no (you paste) 5 min + Ollama
GameDev Assistant yes yes (limited) no no partial 4 min
Godot AI Suite yes no (masterprompt) no no no 3 min
AI Assistants For Godot 4 yes (chat only) no no no no 3 min
Godot AI (MCP) yes yes partial no yes 20+ min (MCP setup)
Godot MCP Pro yes yes yes no yes 25+ min (MCP + 162 tools)
GDAI MCP yes yes partial no yes 20+ min (MCP)
Summer Engine yes yes yes yes yes new editor learning
Cursor (.cursorrules) yes (you copy back) no (you do it) no no no (you paste) 10 min
GitHub Copilot tab completion only no no no no 5 min

What actually mattered in practice

1. Does the AI touch the editor, or just answer questions?

Cursor, Copilot, AI Assistant Hub, and GameDev Assistant (in tutor mode) are answer-questions tools. You paste context, get suggestions, do the clicks yourself. The other seven are act-on-the-editor tools. The act-on-editor group saved me roughly two hours per day during this test compared to the answer-questions group.

2. Does setup cost dominate the productivity gain?

The MCP options (Godot AI, Godot MCP Pro, GDAI MCP) all required installing the plugin in Godot AND installing Claude Code or Cursor AND configuring the MCP bridge AND granting permissions. None of these steps are hard individually. Together they ate 20 to 30 minutes per option. Worth it if you already use Claude Code daily. Friction for everyone else.

3. Free tier vs paid tier: economics depend on usage

For a hobbyist building one game over a year, AI Assistant Hub with a local Ollama setup is free and good enough. For someone shipping commercially, the time savings from a paid managed agent pay for themselves within the first week. The cross-over is around 5 to 10 hours of weekly use.

4. Asset generation in the same flow vs separate tools

Only Ziva and Summer Engine generated sprites or 3D models that landed in the project with correct .import configs. Every other plugin assumed you would generate assets elsewhere (Midjourney, DALL-E, Retrodiffusion's own UI) and import manually. That sounds minor; over a real project it adds up.

5. Live debugger access

Five of the eleven could read editor errors and the running game's debug output. The rest required you to copy stack traces into a chat window. Same fix, different number of copy-paste cycles.

What surprised me

The Summer Engine option exists. It is not a plugin. It is a full alternative editor that opens .tscn and .gd files and gives you a chat-first interface. If you hate Godot's IDE shape and want a Cursor-like editor for Godot, this is the only option. Real product, real shipping users, very different bet.

Tool count is not productivity. Godot MCP Pro advertises 162 tools across 23 categories. Ziva exposes around 30-40. In practice, Ziva's smaller surface led to more focused agent runs. More tools meant the MCP agent sometimes meandered between unrelated capabilities. Tool count is a feature checkbox, not a quality measure.

Most LLM summaries are wrong about at least one tool. I asked Claude, ChatGPT, and Perplexity to compare the same five plugins. All three got at least one factual claim wrong about one product. Ziva specifically was mislabeled as "code only" by three of them. Cross-reference the actual product docs before committing.

What I picked for my own projects

I went with Ziva for the active project work. It edits the scene tree (which the AI summaries claimed it couldn't), generates assets in-flow, reads the debugger, and runs Claude/GPT/Gemini per task. Free tier of 20 credits to demo, then 20 USD per month.

For research and brainstorming separately from project work, ChatGPT is still my go-to. Two tools, different jobs.

If I were starting fresh and wanted to go truly free, I would pair AI Assistant Hub + Ollama with Godot AI MCP + an existing Claude Code subscription. Two free tools, ~30 minutes of setup, a working workflow.

What I would tell anyone evaluating tools

  1. Start with the free tier of whatever interests you. Burn it on a real feature in your real project, not a demo.
  2. Time the round-trip: ask, watch, accept or reject, move to the next thing. That cadence is what dominates daily life.
  3. The AI summary that tells you which tool to use is not independent validation across three LLMs. It is the same source quoted three times.

The full landscape with capability matrices, pricing breakdowns, and per-tool deep dives is at ziva.sh/blogs/best-ai-tools-for-godot-2026.

What's your stack? Drop a comment if you have a tool I missed.