code-review

Reviews game code files for standards, architecture, SOLID principles, and ADR compliance.

Updated Aug 2, 2026
One-click install
npx skills add https://github.com/claretagrapelike32/codex-ai-game-studio --skill code-review-claretagrapelike32
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: code-review
Source: https://github.com/claretagrapelike32/codex-ai-game-studio/tree/main/plugins/ai-game-studio/skills/code-review
Command: npx skills add https://github.com/claretagrapelike32/codex-ai-game-studio --skill code-review-claretagrapelike32

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Game projects accumulate architectural drift and inconsistent code quality when reviews are ad hoc. This Skill runs a structured, multi-phase review of game code files so violations of coding standards, architecture decisions, and testability requirements are caught before merge. ## Core Features & Use Cases - ADR Compliance Checking: Extracts ADR references from story files, headers, or git history and classifies deviations as violations, drift, or minor issues. - Parallel Specialist Reviews: Spawns engine, shader, UI, and QA testability specialists simultaneously based on file type and project configuration. - Structured Verdict Output: Produces a standardized review report covering standards, SOLID, game-specific concerns, and a final APPROVED or CHANGES REQUIRED verdict. - Use Case: After implementing a combat system story in Godot, run the review on the new .gd files with the story path to verify ADR compliance, testability hooks, and frame-rate independence before marking the story done. ## Quick Start Ask the AI to run a code review on your implementation files, for example: review src/combat/attack.gd against the project standards and the story file production/epics/combat/story-001.md.

Frequently Asked Questions about code-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run a code review on game engine scripts?

Invoke the review with the target file paths, optionally appending a story file path to enable ADR compliance checking. The skill reads the files, loads project coding standards from AGENTS.md, and produces a structured verdict report.

What does the code review check in game code?

It checks coding standards compliance, SOLID principles, architecture layer separation, ADR conformance, and game-specific concerns like delta time usage, allocations in hot paths, and resource cleanup. It also evaluates testability against the story's QA test cases.

Does the code review work without a configured game engine?

Yes. If the engine specialists section in project.json reads [TO BE CONFIGURED], engine specialist steps are skipped and the review still covers standards, SOLID, architecture, and ADR compliance.

How does ADR compliance checking work in code review?

The skill searches the story file, file header comments, and git history for ADR references, then reads each ADR's Decision and Consequences sections. Deviations are classified as blocking architectural violations, drift warnings, or minor deviations.

Can the code review modify my source files?

No. The skill is read-only and writes no files. It outputs a review report with required changes and suggestions, and offers next-step options such as fixing issues and re-running the review.