Quick-Question Plugin Automates Unity Development with Claude Code

A developer has released quick-question, a plugin that automates Unity development workflows when using Claude Code. The tool handles compilation, testing, and implements a cross-model code review system to reduce manual intervention.
Key Features
The plugin provides several automation features:
- Auto-compile on edit: Triggers compilation every time Claude edits a .cs file. It first tries the in-editor HTTP server, then falls back to batch mode.
- Test pipeline: The
/qq:testcommand runs both EditMode and PlayMode tests while checking for runtime errors. - Cross-model code review:
/qq:codex-code-reviewsends diffs to Codex for review, then Claude spawns subagents to independently verify each finding against the actual source code. Only confirmed issues get fixed, with a maximum of 5 review rounds. - 20 slash commands: Includes commands for testing, committing, reviewing, explaining code, and dependency analysis.
Architecture Details
The cross-model review system uses what the developer calls the "Tribunal" pattern. Instead of trusting one model's opinion, two models review each other's work with verification: Codex finds potential issues, Claude checks if they're real problems in the actual source code, and an over-engineering filter prevents unnecessarily complex fixes.
The plugin includes tykit, an HTTP server that auto-starts inside the Unity Editor. This allows Claude to control Play Mode, read console logs, run tests, and inspect GameObjects via HTTP requests.
Technical Requirements
- macOS only (v1 limitation)
- Unity 2021.3+
- MIT licensed
- Available on GitHub at https://github.com/tykisgod/quick-question
The developer notes they built this to address the tedium of manually checking compilation, running tests, and reviewing code during Unity game development with Claude Code.
📖 Read the full source: r/ClaudeAI
👀 See Also

Exploring AI with Tiny Bots: Understanding AI Agents Through Nanobot Tutor
OpenClaw community member shares insights with the 'Nanobot Tutor', a miniature framework aimed at demystifying AI agent functionality. Discover how diving into this compact learning environment unveils the workings of intelligent agents.

Claude's Canva integration: a practical workflow for design generation
Claude's Canva connector exports editable Canva projects with structured layouts, not flat images. The post details a workflow from prompt to finished carousel in 12-15 minutes, including setup, high-fidelity mode, and honest limitations.

Skill Seekers v3.2.0 adds YouTube tutorial extraction for Claude skills
Skill Seekers v3.2.0 now extracts content from YouTube tutorials to create structured SKILL.md files for Claude. The tool uses a two-pass AI enhancement workflow to clean OCR output and generate usable documentation from video content.

Godmode Plugin Adds Autonomous Iteration Loop to Claude Code and Other AI Coding Agents
Godmode is an open-source plugin that adds an autonomous measure-modify-verify loop to Claude Code, with parallel agents, failure memory, and 126 skills including optimization, security audits, and TDD. It works with Cursor, Codex, Gemini CLI, and OpenCode.