map-systems

Solid

Decompose a game concept into individual systems, map dependencies, prioritize design order, and create the systems index.

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

When this skill is invoked: ## Parse Arguments Two modes: - **No argument**: `/map-systems` — Run the full decomposition workflow (Phases 1-5) to create or update the systems index. - **`next`**: `/map-systems next` — Pick the highest-priority undesigned system from the index and hand off to `/design-system` (Phase 6). Also resolve the review mode (once, store for all gate spawns this run): 1. If `--review [full|lean|solo]` was passed → use that 2. Else read `production/review-mode.txt` → use that value 3. Else → default to `lean` See `.claude/docs/director-gates.md` for the full check pattern. --- ## Phase 1: Read Concept (Required Context) Read the game concept and any existing design work. This provides the raw material for systems decomposition. **Required:** - Read `design/gdd/game-concept.md` — **fail with a clear message if missing**: > "No game concept found at `design/gdd/game-concept.md`. Run `/brainstorm` first > to create one, then come back to decompose it into systems." **Optional (read if they exist):** - Read `design/gdd/game-pillars.md` — pillars constrain priority and scope - Read `design/gdd/systems-index.md` — if exists, **resume** from where it left off (update, don't recreate from scratch) - Glob `design/gdd/*.md` — check which system GDDs already exist **If the systems index already exists:** - Read it and present current status to the user - Use `AskUserQuestion` to ask: "The systems index already exists with [N] systems ([M] des...

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

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
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

brainstorm

Guided game concept ideation — from zero idea to a structured game concept document. Uses professional studio ideation techniques, player psychology frameworks, and structured creative exploration.

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

review-all-gdds

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.

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

create-architecture

Guided, section-by-section authoring of the master architecture document for the game. Reads all GDDs, the systems index, existing ADRs, and the engine reference library to produce a complete architecture blueprint before any code is written. Engine-version-aware: flags knowledge gaps and validates decisions against the pinned engine version.

20,436 Updated 1 weeks ago
Donchitos