architecture-decision
Creates an Architecture Decision Record (ADR) documenting a significant technical decision, its context, alternatives considered, and consequences. Every major…
Brownfield onboarding — audits existing project artifacts for template format compliance (not just existence), classifies gaps by impact, and produces a numbered migration plan. Run this when joining an in-progress project or upgrading from an older template version. Distinct
$ npx -y skills add Donchitos/Claude-Code-Game-Studios --skill adopt --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/adoptContext preview
The summary Claude sees to decide when to auto-load this skill.
Brownfield onboarding — audits existing project artifacts for template format compliance (not just existence), classifies gaps by impact, and produces a numbered migration plan. Run this when joining an in-progress project or upgrading from an older template version. Distinct
name: adopt description: "Brownfield onboarding — audits existing project artifacts for template format compliance (not just existence), classifies gaps by impact, and produces a numbered migration plan. Run this when joining an in-progress project or upgrading from an older template version. Distinct from /project-stage-detect (which checks what exists) — this checks whether what exists will actually work with the template's skills." argument-hint: "[focus: full | gdds | adrs | stories | infra]" user-invocable: true allowed-tools: Read, Glob, Grep, Write, AskUserQuestion model: sonnet agent: technical-director
This skill audits an existing project's artifacts for **format compliance** with the template's skill pipeline, then produces a prioritised migration plan.
**This is not `/project-stage-detect`.** `/project-stage-detect` answers: *what exists?* `/adopt` answers: *will what exists actually work with the template's skills?*
A project can have GDDs, ADRs, and stories — and every format-sensitive skill will still fail silently or produce wrong results if those artifacts are in the wrong internal format.
**Output:** `docs/adoption-plan-[date].md` — a persistent, checkable migration plan.
**Argument modes:**
**Audit mode:** `$ARGUMENTS[0]` (blank = `full`)
---
Emit one line before reading: `"Scanning project artifacts..."` — this confirms the skill is running during the silent read phase.
Then read silently before presenting anything else.
Use the same heuristic as `/project-stage-detect`:
If the project appears fresh (no artifacts at all), use `AskUserQuestion`:
projects with work to migrate. What would you like to do?"
Then stop — do not proceed with the audit regardless of which option the user picks (each option leads to a different skill or manual investigation).
Report: "Detected phase: [phase]. Found: [N] GDDs, [M] ADRs, [P] stories."
---
For each artifact type in scope (based on argument mode), check not just that the file exists but that it contains the internal structure the template requires.
For each GDD file found, check for the 8 required sections by scanning headings:
| Required Section | Heading pattern to look for | |---|---| | Overview | `## Overview` | | Player Fantasy | `## Player Fantasy` | | Detailed Rules / Design | `## Detailed` or `## Core Rules` or `## Detailed Design` | | Formulas | `## Formulas` or `## Formula` | | Edge Cases | `## Edge Cases` | | Dependencies | `## Dependencies` or `## Depends` | | Tuning Knobs | `## Tuning` | | Acceptance Criteria | `## Acceptance` |
For each GDD, record:
(`[To be designed]` or equivalent)
Also check: does each GDD have a `**Status**:` field in its header block? Valid values: `In Design`, `Designed`, `In Review`, `Approved`, `Needs Revision`.
For each ADR file found, check for these critical sections:
| Section | Impact if missing | |---|---| | `## Status` | **BLOCKING** — `/story-readiness` ADR status check silently passes everything | | `## ADR Dependencies` | HIGH — dependency ordering in `/architecture-review` breaks | | `## Engine Compatibility` | HIGH — post-cutoff API risk is unknown | | `## GDD Requirements Addressed` | MEDIUM — traceability matrix loses coverage | | `## Performance Implications` | LOW — not pipeline-critical |
For each ADR, record: which sections present, which missing, current Status value if the Status section exists.
If `design/gdd/systems-index.md` exists:
1. **Parenthetical status values** — Grep for any Status cell containing parentheses: `"Needs Revision ("`, `"In Progress ("`, etc. These break exact-string matching in `/gate-check`, `/create-stories`, and `/architecture-review`. **BLOCKING.**
2. **Valid status values** — check that Status column values are only from: `Not Started`, `In Progress`, `In Review`, `Designed`, `Approved`, `Needs Revision` Flag any unrecognised values.
3. **Column structure** — check that the table has at minimum: System name, Layer, Priority, Status columns. Missing columns degrade skill functionality.
For each story file found:
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
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…
Analyzes game balance data files, formulas, and configuration to identify outliers, broken progressions, degenerate strategies, and economy imbalances. Use…