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.

Code & Development 85 stars 8 forks Updated 1 months ago MIT

Install

View on GitHub

Quality Score: 87/100

Stars 20%
64
Recency 20%
75
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
striderZA
Repository
striderZA/OpenCodeGameStudios
Created
4 months ago
Last Updated
1 months ago
Language
JavaScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category