A comprehensive AI-powered game development studio with 36 specialized skills for Claude Code. Includes tools for game design, sprint planning, code review, performance profiling, asset auditing, team management, and release workflows across Unity, Unreal, and Godot engines.
Add this skill
npx mdskills install Donchitos/claude-code-game-studiosWell-structured ADR workflow with clear step-by-step instructions and comprehensive template
1---2name: architecture-decision3description: "Creates an Architecture Decision Record (ADR) documenting a significant technical decision, its context, alternatives considered, and consequences. Every major technical choice should have an ADR."4argument-hint: "[title]"5user-invocable: true6allowed-tools: Read, Glob, Grep, Write7---89When this skill is invoked:10111. **Determine the next ADR number** by scanning `docs/architecture/` for12 existing ADRs.13142. **Gather context** by reading related code and existing ADRs.15163. **Guide the user through the decision** by asking clarifying questions if17 the title alone is not sufficient.18194. **Generate the ADR** following this format:2021```markdown22# ADR-[NNNN]: [Title]2324## Status25[Proposed | Accepted | Deprecated | Superseded by ADR-XXXX]2627## Date28[Date of decision]2930## Context3132### Problem Statement33[What problem are we solving? Why does this decision need to be made now?]3435### Constraints36- [Technical constraints]37- [Timeline constraints]38- [Resource constraints]39- [Compatibility requirements]4041### Requirements42- [Must support X]43- [Must perform within Y budget]44- [Must integrate with Z]4546## Decision4748[The specific technical decision made, described in enough detail for someone49to implement it.]5051### Architecture Diagram52[ASCII diagram or description of the system architecture this creates]5354### Key Interfaces55[API contracts or interface definitions this decision creates]5657## Alternatives Considered5859### Alternative 1: [Name]60- **Description**: [How this would work]61- **Pros**: [Advantages]62- **Cons**: [Disadvantages]63- **Rejection Reason**: [Why this was not chosen]6465### Alternative 2: [Name]66- **Description**: [How this would work]67- **Pros**: [Advantages]68- **Cons**: [Disadvantages]69- **Rejection Reason**: [Why this was not chosen]7071## Consequences7273### Positive74- [Good outcomes of this decision]7576### Negative77- [Trade-offs and costs accepted]7879### Risks80- [Things that could go wrong]81- [Mitigation for each risk]8283## Performance Implications84- **CPU**: [Expected impact]85- **Memory**: [Expected impact]86- **Load Time**: [Expected impact]87- **Network**: [Expected impact, if applicable]8889## Migration Plan90[If this changes existing code, how do we get from here to there?]9192## Validation Criteria93[How will we know this decision was correct? What metrics or tests?]9495## Related Decisions96- [Links to related ADRs]97- [Links to related design documents]98```991005. **Save the ADR** to `docs/architecture/adr-[NNNN]-[slug].md`.101
Full transparency — inspect the skill content before installing.