review-all-gdds

Solid

Holistic cross-GDD consistency and game design review. Reads all system GDDs simultaneously and checks for contradictions between them, stale references, ownership conflicts, formula incompatibilities, and game design theory violations (dominant strategies, economic imbalance, cognitive overload, pillar drift). Run after all MVP GDDs are written, before architecture begins.

AI & Automation 20,436 stars 2970 forks Updated 1 weeks ago MIT

Install

View on GitHub

Quality Score: 97/100

Stars 20%
100
Recency 20%
90
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Review All GDDs This skill reads every system GDD simultaneously and performs two complementary reviews that cannot be done per-GDD in isolation: 1. **Cross-GDD Consistency** — contradictions, stale references, and ownership conflicts between documents 2. **Game Design Holism** — issues that only emerge when you see all systems together: dominant strategies, broken economies, cognitive overload, pillar drift, competing progression loops **This is distinct from `/design-review`**, which reviews one GDD for internal completeness. This skill reviews the *relationships* between all GDDs. **When to run:** - After all MVP-tier GDDs are individually approved - After any GDD is significantly revised mid-production - Before `/create-architecture` begins (architecture built on inconsistent GDDs inherits those inconsistencies) **Argument modes:** **Focus:** `$ARGUMENTS[0]` (blank = `full`) - **No argument / `full`**: Both consistency and design theory passes - **`consistency`**: Cross-GDD consistency checks only (faster) - **`design-theory`**: Game design holism checks only - **`since-last-review`**: Only GDDs modified since the last review report (git-based) --- ## Phase 1: Load Everything ### Phase 1a — L0: Summary Scan (fast, low tokens) Before reading any full document, use Grep to extract `## Summary` sections from all GDD files: ``` Grep pattern="## Summary" glob="design/gdd/*.md" output_mode="content" -A 5 ``` Display a manifest to the user: ``` Found [N...

Details

Author
Donchitos
Repository
Donchitos/Claude-Code-Game-Studios
Created
3 months ago
Last Updated
1 weeks ago
Language
Shell
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Solid

design-review

Reviews a game design document for completeness, internal consistency, implementability, and adherence to project design standards. Run this before handing a design document to programmers.

20,436 Updated 1 weeks ago
Donchitos
AI & Automation Solid

architecture-review

Validates completeness and consistency of the project architecture against all GDDs. Builds a traceability matrix mapping every GDD technical requirement to ADRs, identifies coverage gaps, detects cross-ADR conflicts, verifies engine compatibility consistency across all decisions, and produces a PASS/CONCERNS/FAIL verdict. The architecture equivalent of /design-review.

20,436 Updated 1 weeks ago
Donchitos
AI & Automation Solid

consistency-check

Scan all GDDs against the entity registry to detect cross-document inconsistencies: same entity with different stats, same item with different values, same formula with different variables. Grep-first approach — reads registry then targets only conflicting GDD sections rather than full document reads.

20,436 Updated 1 weeks ago
Donchitos
Code & Development Listed

game-review

Trigger: User wants a structured review of a Game Design Document (GDD). Use when: "review my GDD", "game review", "check my game design", "how's my GDD", "/game-review", or user has a docs/gdd.md and asks for design feedback. Do NOT use when: User wants code review (use /review), balance-specific analysis (use /balance-review), or brainstorming from scratch (use /game-ideation).

0 Updated today
paulitaquack204
Web & Frontend Solid

design-system

Guided, section-by-section GDD authoring for a single game system. Gathers context from existing docs, walks through each required section collaboratively, cross-references dependencies, and writes incrementally to file.

20,436 Updated 1 weeks ago
Donchitos