adopt
Brownfield onboarding — audits existing project artifacts for template format compliance (not just existence), classifies gaps by impact, and produces a…
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,
$ npx -y skills add Donchitos/Claude-Code-Game-Studios --skill review-all-gdds --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/review-all-gddsContext preview
The summary Claude sees to decide when to auto-load this skill.
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,
name: review-all-gdds description: "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." argument-hint: "[focus: full | consistency | design-theory | since-last-review]" user-invocable: true allowed-tools: Read, Glob, Grep, Write, Bash, AskUserQuestion, Task model: opus
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:**
inherits those inconsistencies)
**Argument modes:**
**Focus:** `$ARGUMENTS[0]` (blank = `full`)
---
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] GDDs. Summaries: • combat.md — [summary text] • inventory.md — [summary text] ...
For `since-last-review` mode: run `git log --name-only` to identify GDDs modified since the last review report file was written. Show the user which GDDs are in scope based on summaries before doing any full reads. Only proceed to L1 for those GDDs plus any GDDs listed in their "Key deps".
Before full-reading any GDD, check for the entity registry:
Read path="design/registry/entities.yaml"
If the registry exists and has entries, use it as a **pre-built conflict baseline**: known entities, items, formulas, and constants with their authoritative values and source GDDs. In Phase 2, grep GDDs for registered names first — this is faster than reading all GDDs in full before knowing what to look for.
If the registry is empty or absent: proceed without it. Note in the report: "Entity registry is empty — consistency checks rely on full GDD reads only. Run `/consistency-check` after this review to populate the registry."
Full-read the in-scope documents:
1. `design/gdd/game-concept.md` — game vision, core loop, MVP definition 2. `design/gdd/game-pillars.md` if it exists — design pillars and anti-pillars 3. `design/gdd/systems-index.md` — authoritative system list, layers, dependencies, status 4. **Every in-scope system GDD in `design/gdd/`** — read completely (skip game-concept.md and systems-index.md — those are read above)
Report: "Loaded [N] system GDDs covering [M] systems. Pillars: [list]. Anti-pillars: [list]."
If fewer than 2 system GDDs exist, stop: > "Cross-GDD review requires at least 2 system GDDs. Write more GDDs first, > then re-run `/review-all-gdds`."
---
Phase 2 (Consistency) and Phase 3 (Design Theory) are independent — they read the same GDD inputs but produce separate reports. Spawn both as parallel Task agents simultaneously rather than waiting for Phase 2 to complete before starting Phase 3. Collect both results before writing the combined report.
**When spawning parallel Task agents for Phase 2 and Phase 3, always pass:**
Do not rely on the subagent to re-read these files — it has its own context window and cannot access Phase 1 results unless they are explicitly passed in the Task prompt.
---
Work through every pair and group of GDDs to find contradictions and gaps.
For every GDD's Dependencies section, check that every listed dependency is reciprocal:
⚠️ Dependency Asymmetry [system-a].md lists: Depends On → [system-b].md [system-b].md does NOT list [system-a].md as a dependent → One of these documents has a stale dependency section
For each game rule, mechanic, or constraint defined in any GDD, check whether any other GDD defines a contradicting rule for the same situation:
Categories to scan:
Turn Claude Code into a full game dev studio — 49 AI agents, 72 workflow skills, and a complete coordination system mirroring real studio hierarchy.
Repo: Donchitos/Claude-Code-Game-Studios
Brownfield onboarding — audits existing project artifacts for template format compliance (not just existence), classifies gaps by impact, and produces a…
Creates an Architecture Decision Record (ADR) documenting a significant technical decision, its context, alternatives considered, and consequences. Every major…
Validates completeness and consistency of the project architecture against all GDDs. Builds a traceability matrix mapping every GDD technical requirement to…
Guided, section-by-section Art Bible authoring. Creates the visual identity specification that gates all asset production. Run after /brainstorm is approved…
Audits game assets for compliance with naming conventions, file size budgets, format standards, and pipeline requirements. Identifies orphaned assets, missing…
Generate per-asset visual specifications and AI generation prompts from GDDs, level docs, or character profiles. Produces structured spec files and updates the…