game-build-team

June 11, 2026 · View on GitHub

game-build-team — a Build & Break shop where a friendly robot and a pixel-invader fix, reboot and create

game-build-team

A dynamic, agentic build pipeline for Godot 4 / GDScript game features

A coordinated team of AI agents builds your feature — and refuses to call it "done" until it's verified, on-device, and fun.

🌐 Live site: game-build-team.varalix.com — what it is, the gates, install in one minute.

Website Claude Code Skill Godot 4 Dynamic Workflow License: MIT No Fallback

If this saves you from shipping a half-baked feature, please star the repo — it genuinely helps.


Important

Write a detailed requirement before you invoke the skill. This pipeline builds and verifies — it doesn't guess scope. Its entire value is checking the work against a contract, so the quality of what you get out is capped by the spec you put in. A one-line ask ("make a shop") produces a one-line-quality feature.

Spend ten minutes up front and hand it something real:

  • Think it through with an AI first. Open Claude and use extended thinking (say "ultrathink" / "think hard") to pressure-test the idea — mechanics, edge cases, failure states, acceptance criteria — before a line of code. Or use a brainstorming/design tool you like. The goal is a written spec, not a vibe.
  • Capture it as the design contract the team reads: the feature, how it should feel, concrete acceptance criteria ("placing on an occupied tile shows a red flash + error blip"), invariants it must not break, and any mockups.
  • Then invoke /game-build-team and point it at that spec.

No contract, nothing to verify against — see Prerequisites.

⚡ Install

This is a Claude Code skill. Clone it into your project's skills directory:

Recommended — install as a plugin (one marketplace, one install, auto-updates). In Claude Code:

/plugin marketplace add Varalix-Digitech-Solutions/game-build-team-skill
/plugin install game-build-team@game-build-team

That's it — the game-build-team skill and the /game-build-update command register automatically. Plugin installs auto-update when a new version ships, and Claude Code surfaces an update prompt right below the chat box — no re-cloning. Run /game-build-update anytime to see what you're on vs. the latest. (Restart Claude Code if it doesn't show up immediately.)

On first invoke, the skill's preflight installs everything else it needs (see Dependencies) into your project — project-local, never global.

Alternative — manual install (no plugins)
git clone https://github.com/Varalix-Digitech-Solutions/game-build-team-skill.git
cp -r game-build-team-skill/skills/game-build-team <your-godot-project>/.claude/skills/game-build-team
# optional: the update command
cp game-build-team-skill/commands/game-build-update.md ~/.claude/commands/

A manual copy does not auto-update — run /game-build-update to check, or re-copy from the latest clone.

✅ Prerequisites

You needWhy
A defined feature specThis skill builds, it doesn't design. Your requirements / design contract must already exist and be shared with the project (e.g. a design doc, acceptance criteria, or a graphify knowledge graph). The team reads it as the source of truth — it will not invent scope.
godot 4.x on PATHThe build + headless test engine.
nodePowers durable state, capacity sizing, and reporting.
adb / xvfb / a real $DISPLAY (for visual gating)On-device + screenshot verification. Tests still gate without them.

Heads up: if you don't have your feature requirements defined yet, define them first. The pipeline's whole value is verifying work against a contract — no contract, nothing to verify against.

▶️ Use

/game-build-team build the building-placement feature, and make it feel satisfying
/game-build-team continue          # resume a paused run

The Manager reads your design contract, extracts its invariants, then dispatches the team.


🧠 How it works

game-build-team is a dynamic agentic workflow — not a single agent improvising, but a deterministic pipeline of specialist agents with two un-skippable quality gates. Quality is control flow, not a judgment call.

It exists to kill one failure mode: an AI builds a feature, self-grades it "looks fine," and stops — no tests run, the screen never checked, the feel never judged.

The phase machine

You (the main thread) are the Manager: you dispatch, you never write feature code. Every session follows one fixed phase machine:

0 ask user → 1 RECON ▶wf → (blockers? install first) → 2 plan → 3 BUILD ▶wf → 4 on-device gate → 5 finish + suggest next

The fan-out phases (1 recon, 3 build/verify) run as background Workflows — governed, parallel, resumable, no scatter. The agents never run in your main chat; they run in a fixed pipeline beneath it. Inside Phase 3, each feature flows through:

brief → build logic → juice pass → 🧪 TEST GATE → 🎨 CREATIVE GATE → fix → (repeat) → done

The team

AgentRunsOwns
🎯 Manager (you)main threadcontext, dispatch, the final on-device gate, the user. Zero feature code.
🔍 Recon AnalystPhase 1, firstthe status quo: tool-gap blockers, what's done vs left, reuse targets — read-only
🎨 Creative Directorfirst + lastthe feature brief (UX + interaction + juice plan) and the fun gate
⚙️ Logic Developerper featuregameplay logic — state, economy, simulation, input
Animation Developerafter logicthe juice / game-feel pass on the same files — feedback only
🧪 Testerthe gaterapid full regression: headless suite + fresh source-render vs the design contract + invariants (--deploy for device-specific features)

Two gates, both control flow

  1. 🧪 Test gate (rapid) — the headless GDScript suite exits 0, acceptance criteria are asserted, a fresh screenshot (source-render simulation by default — seconds per round; on-device --deploy for device-specific features) matches the design contract, invariants hold. Otherwise the feature doesn't advance.
  2. 🎨 Creative gate — once correct, the running feature is judged against its brief: readable / responsive / satisfying / on-theme / fair.

Then the Manager runs the thorough on-device final gate — a real-hand pass over the whole delivery: godot_verify.sh --deploy builds, installs, and launches the fresh APK, confirming the features work together on real hardware. Keeping the in-loop gate on the fast simulation and spending the device pass once at the end is what keeps NG→fix iteration cheap.

Deterministic order, dynamic scale

The step order is fixed, but how many features build in parallel is sized to your host (scripts/capacity.mjs) so a constrained machine never gets OOM-killed. The whole run is resumable across pauses and usage-limit cutoffs via durable state.


📦 Dependencies

On invoke, preflight installs 49 companion skills — 48 Godot domain skills (GodotPrompter, MIT) plus karpathy-guidelines (MIT), the LLM coding-discipline layer the build/test agents load — from the repo's pinned vendor/ into your project's .claude/skills/project-local, never global — and refuses to run until every one is present:

bash skills/game-build-team/scripts/install-deps.sh --dir /abs/path/to/your/godot-project   # run by preflight; exits non-zero if any dep is missing

These companion skills are required, not optional — they're how each agent reaches full Godot domain depth.

There is no fallback. A missing companion skill is a hard blocker that stops the run, never a silent downgrade. The bundled references/*.md are craft references the agents cite alongside the skills — not stand-ins for them. Fallbacks make a skill quietly worse; this one fails loud instead.


🗂️ Layout

.claude-plugin/          plugin + marketplace manifests (what makes it a one-command install)
commands/                /game-build-update — version-aware updater
skills/game-build-team/   the skill itself:
  SKILL.md                 the Manager's operating manual (the entry point)
  agents/                  the six spawn personas (single source of truth)
  workflows/               recon.js (Phase 1) + game-build-loop.js (Phase 3, the two-gate loop)
  references/              orchestration, skill map, verify playbook, game-feel, resume
  scripts/                 durable state, dynamic capacity probe, verify gate, installer
  vendor/godot-prompter/   vendored GodotPrompter skills (MIT)
  vendor/karpathy/         vendored karpathy-guidelines skill (MIT)
  evals/                   behavioral evals for the skill

🙏 Credits

  • Build/verify engine and resumable-Workflow pattern adapted from the clone-team skill.
  • Godot domain skills vendored from jame581/GodotPrompter (MIT) — see vendor/godot-prompter/ATTRIBUTION.md.
  • LLM coding-discipline skill vendored from forrestchang/andrej-karpathy-skills (MIT), derived from Andrej Karpathy's observations on LLM coding pitfalls — see vendor/karpathy/ATTRIBUTION.md.

📄 License

MIT — see LICENSE. Vendored components retain their own licenses.


Built something fun with it?Star the repo and let the next dev find it.