game-developer▌
404kidwiz/claude-supercode-skills · updated Apr 27, 2026
MDX-style export adds YAML metadata + attribution linking explainx.ai and this canonical listing URL.
Provides interactive entertainment development expertise specializing in Unity (C#) and Unreal Engine (C++). Builds 2D/3D games with gameplay programming, graphics optimization, multiplayer networking, and engine architecture for immersive gaming experiences.
Game Developer
Purpose
Provides interactive entertainment development expertise specializing in Unity (C#) and Unreal Engine (C++). Builds 2D/3D games with gameplay programming, graphics optimization, multiplayer networking, and engine architecture for immersive gaming experiences.
When to Use
- Prototyping game mechanics (Character controllers, combat systems)
- Optimizing graphics performance (Shaders, LODs, Occlusion Culling)
- Implementing multiplayer networking (Netcode for GameObjects, Mirror, Unreal Replication)
- Designing level architecture and streaming systems
- Developing VR/AR experiences (OpenXR, ARKit)
- Creating custom editor tools and pipelines
2. Decision Framework
Engine Selection
Which engine fits the project?
│
├─ **Unity**
│ ├─ Mobile/2D/VR? → **Yes** (Best ecosystem, smaller build size)
│ ├─ Team knows C#? → **Yes**
│ └─ Stylized graphics? → **Yes** (URP is flexible)
│
├─ **Unreal Engine 5**
│ ├─ Photorealism? → **Yes** (Nanite + Lumen out of box)
│ ├─ Open World? → **Yes** (World Partition system)
│ └─ Team knows C++? → **Yes** (Or Blueprints visual scripting)
│
└─ **Godot**
├─ Open Source requirement? → **Yes** (MIT License)
├─ Lightweight 2D? → **Yes** (Dedicated 2D engine)
└─ Linux native dev? → **Yes** (Excellent Linux support)
Multiplayer Architecture
| Model | Description | Best For |
|---|---|---|
| Client-Hosted (P2P) | One player is host. | Co-op games, Fighting games (with rollback). Cheap. |
| Dedicated Server | Authoritative server in cloud. | Competitive Shooters, MMOs. Prevents cheating. |
| Relay Server | Relay service (e.g., Unity Relay). | Session-based games avoiding NAT issues. |
Graphics Pipeline (Unity)
| Pipeline | Target | Pros |
|---|---|---|
| URP (Universal) | Mobile, VR, Switch, PC | High perf, customizable, large asset store support. |
| HDRP (High Def) | PC, PS5, Xbox Series X | Photorealism, Volumetric lighting, Compute shaders. |
| Built-in | Legacy | Avoid for new projects. |
Red Flags → Escalate to graphics-engineer (Specialist):
- Writing custom rendering backends (Vulkan/DirectX/Metal) from scratch
- Debugging driver-level GPU crashes
- Implementing novel GI (Global Illumination) algorithms
Workflow 2: Unreal Engine Multiplayer Setup
Goal: Replicate a variable (Health) from Server to Clients.
Steps:
-
Header (
Character.h)UPROPERTY(ReplicatedUsing=OnRep_Health) float Health; UFUNCTION() void OnRep_Health(); void GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const override; -
Implementation (
Character.cpp)void AMyCharacter::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const { Super::GetLifetimeReplicatedProps(OutLifetimeProps); DOREPLIFETIME(AMyCharacter, Health); } void AMyCharacter::TakeDamage(float DamageAmount) { if (HasAuthority()) { Health -= DamageAmount; // OnRep_Health() called automatically on clients // Must call manually on Server if needed OnRep_Health(); } } -
Blueprint Integration
- Bind UI Progress Bar to
Healthvariable. - Test with "Play as Client" (NetMode).
- Bind UI Progress Bar to
Workflow 4: VFX Graph & Shader Graph (Visual Effects)
Goal: Create a GPU-accelerated particle system for a magic spell.
Steps:
-
Shader Graph (The Look)
- Create
Unlit Shader Graph. - Add
Voronoi Noisenode scrolling withTime. - Multiply with
Colorproperty (HDR). - Connect to
Base ColorandAlpha. - Set Surface Type to
Transparent/Additive.
- Create
-
VFX Graph (The Motion)
- Create
Visual Effect Graphasset. - Spawn Context: Constant Rate (1000/sec).
- Initialize: Set Lifetime (0.5s - 1s), Set Velocity (Random Direction).
- Update: Add
Turbulence(Noise Field) to simulate wind. - Output: Set
Quad Outputto use the Shader Graph created above.
- Create
-
Optimization
- Use
GPU Eventsif particles need to trigger gameplay logic (e.g., damage). - Set
Boundscorrectly to avoid culling issues.
- Use
5. Anti-Patterns & Gotchas
❌ Anti-Pattern 1: Heavy Logic in Update()
What it looks like:
- Performing
FindObjectOfType,GetComponent, or heavy math every frame.
Why it fails:
- Kills CPU performance.
- Drains battery on mobile.
Correct approach:
- Cache references in
Start()orAwake(). - Use Coroutines or InvokeRepeating for logic that doesn't need to run every frame (e.g., AI pathfinding updates every 0.5s).
❌ Anti-Pattern 2: Trusting the Client
What it looks like:
- Client sends "I shot player X" to server.
- Server applies damage immediately.
Why it fails:
- Cheaters can send fake packets.
Correct approach:
- Authoritative Server: Client sends "I fired". Server calculates hit. Server tells Client "You hit".
- Use prediction/reconciliation to mask latency for the local player.
❌ Anti-Pattern 3: God Classes
What it looks like:
PlayerController.cshas 2000 lines handling Movement, Combat, Inventory, UI, and Audio.
Why it fails:
- Spaghetti code.
- Hard to debug.
Correct approach:
- Composition:
PlayerMovement,PlayerCombat,PlayerInventory. - Use components to split responsibility.
7. Quality Checklist
Performance:
- Frame Rate: Stable 60fps on target hardware.
- GC Alloc: 0 bytes allocated per frame in main gameplay loop.
- Draw Calls: Batched appropriately (check Frame Debugger).
- Load Times: Async loading used for scenes/assets.
Code Architecture:
- Decoupled: Systems communicate via Events/Interfaces, not hard dependencies.
- Clean: No "God Classes" > 500 lines.
- Version Control: Large binaries (textures, audio) handled via Git LFS.
UX/Polish:
- Controls: Input remapping supported.
- UI: Scales correctly for different aspect ratios (16:9, 21:9, Mobile Notches).
- Feedback: Audio/Visual cues for all player actions (Juice).
Examples
Example 1: 2D Platformer Game Development
Scenario: Building a commercial 2D platformer with physics-based gameplay.
Implementation:
- Physics: Custom physics engine for responsive platforming
- Animation: Sprite-based animation with state machines
- Level Design: Tilemap-based levels with procedural elements
- Audio: Spatial audio system with adaptive music
Technical Approach:
# Character controller pattern
class PlayerCharacter:
def update(self, dt):
input = self.input_system.get_player_input()
velocity = self.physics.apply_gravity(velocity, dt)
velocity = self.handle_movement(input, velocity)
displacement = self.physics.integrate(velocity, dt)
self.handle_collisions(displacement)
self.animation.update_state(velocity, input)
Example 2: VR Experience Development
Scenario: Creating an immersive VR experience for Oculus/Meta Quest.
VR Implementation:
- Locomotion: Teleportation and smooth movement options
- Interaction: Hand tracking with gesture recognition
- Optimization: Single-pass stereo rendering
- Comfort: Comfort mode options for sensitive users
Key Considerations:
- 72Hz minimum frame rate for comfort
- Motion sickness avoidance in design
- Hand physics for realistic interaction
- Battery optimization for standalone headsets
Example 3: Multiplayer Battle Royale
Scenario: Developing a competitive multiplayer game with 100 players.
Multiplayer Architecture:
- Networking: Client-side prediction with server reconciliation
- Lag Compensation: Interpolation and extrapolation techniques
- Anti-Cheat: Server-side validation, cheat detection
- Matchmaking: Skill-based matchmaking with queue optimization
Best Practices
Game Development
- Core Loop First: Prototype and refine the core gameplay loop
- Modular Architecture: Decouple systems for maintainability
- Performance Budgeting: Define and monitor performance targets
- Data-Driven Design: Use configuration files for game balance
- Version Control: Handle large binary assets appropriately
Physics and Movement
- Determinism: Ensure consistent physics across networked games
- Collision Detection: Optimize for minimal false positives
- Character Controllers: Separate physics from character logic
- Ragdoll Physics: Use for death animations and interaction
- Performance: Profile physics update time, optimize as needed
Graphics and Rendering
- Batching: Group draw calls for GPU efficiency
- Level of Detail: Implement LOD for models and textures
- Shaders: Optimize shader complexity, use shared materials
- Lighting: Balance quality and performance, use baked lighting
- Post-Processing: Apply selectively, profile GPU impact
Audio Implementation
- Spatial Audio: 3D positioning for immersion
- Adaptive Music: Dynamic soundtrack based on gameplay
- Performance: Stream large audio files, pool sound effects
- Compression: Use appropriate audio compression formats
- Accessibility: Provide audio cues as alternatives to visual feedback
Testing and Quality
- Playtesting: Regular playtesting sessions for feedback
- Performance Profiling: Monitor frame rate, memory, load times
- Platform Testing: Test on target hardware, not just dev machines
- Accessibility: Implement accessibility features from start
- Localization: Plan for international markets early
How to use game-developer on Cursor
AI-first code editor with Composer
Prerequisites
Before installing skills in Cursor, ensure your development environment meets these requirements:
- ›Cursor installed and configured on your development machine
- ›Node.js version 16.0+ with npm package manager (verify with
node --version) - ›Active project directory or workspace where you want to add game-developer
Execute installation command
Execute the skills CLI command in your project's root directory to begin installation:
The skills CLI fetches game-developer from GitHub repository 404kidwiz/claude-supercode-skills and configures it for Cursor.
Select Cursor when prompted
The CLI will show a list of available agents. Use arrow keys to navigate and space to select Cursor:
Verify installation
Confirm successful installation by checking the skill directory location:
Reload or restart Cursor to activate game-developer. Access the skill through slash commands (e.g., /game-developer) or your agent's skill management interface.
Security & Verification Notice
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your development environment. Always verify the publisher's identity, review recent commits, and test in isolated environments before production deployment.
List & Monetize Your Skill
Submit your Claude Code skill and start earning
Use Cases▌
User Story & Requirements Generation
Create detailed user stories, acceptance criteria, and feature specs
Example
Generate user stories for 'password reset feature' with acceptance criteria, edge cases, and test scenarios
Reduce spec writing time by 50%, ensure comprehensive coverage
Competitive Analysis
Research competitors, compare features, identify gaps
Example
Analyze 5 competitor products, create feature comparison matrix, suggest differentiation opportunities
Complete competitive research in 2 hours instead of 2 days
Roadmap Prioritization
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
Make data-driven prioritization decisions faster
Stakeholder Communication
Draft PRDs, status updates, and stakeholder presentations
Example
Create executive summary of Q3 roadmap, monthly progress report, feature launch announcement
Save 3-5 hours/week on communication overhead
Implementation Guide▌
Prerequisites
- ›Claude Desktop or compatible AI client
- ›Access to product documentation and roadmap tools (Jira, Notion, etc.)
- ›Understanding of product management frameworks (RICE, Jobs-to-be-Done, etc.)
- ›Stakeholder contact information and communication channels
Time Estimate
30-60 minutes to see productivity improvements
Installation Steps
- 1.Install product management skill
- 2.Start with user story generation for known feature
- 3.Progress to competitive analysis: research 2-3 competitors
- 4.Use for roadmap prioritization: apply RICE/ICE scoring
- 5.Draft stakeholder communications and refine based on feedback
- 6.Build template library for recurring PM tasks
- 7.Share effective prompts with product team
Common Pitfalls
- ⚠Not validating competitive research—verify facts before sharing
- ⚠Accepting user stories without involving engineering team
- ⚠Over-relying on frameworks without qualitative judgment
- ⚠Not customizing outputs to company culture and communication style
- ⚠Skipping stakeholder validation of generated requirements
Best Practices▌
✓ Do
- +Validate research and competitive analysis with real data
- +Collaborate with engineering when generating technical requirements
- +Customize frameworks and templates to your company context
- +Use skill for first drafts, refine with stakeholder input
- +Document successful prompt patterns for PM tasks
- +Combine AI efficiency with human judgment and intuition
✗ Don't
- −Don't publish competitive analysis without fact-checking
- −Don't finalize user stories without engineering review
- −Don't make prioritization decisions solely on AI scoring
- −Don't skip customer validation of generated requirements
- −Don't ignore company-specific context and culture
💡 Pro Tips
- ★Provide context: company goals, constraints, customer feedback
- ★Ask for alternatives: 'Show 3 ways to prioritize this roadmap'
- ★Request stakeholder-specific formatting: 'Executive summary vs. engineering spec'
- ★Use skill for 70% generation + 30% customization to company needs
When to Use This▌
✓ Use When
Use for user story writing, competitive research, roadmap prioritization, stakeholder communication, and PRD drafting. Best for reducing repetitive documentation and research work.
✗ Avoid When
Avoid for strategic product vision (requires deep customer empathy), pricing decisions (needs market and financial expertise), or when face-to-face customer discovery is more valuable than speed.
Learning Path▌
- 1Basic: user stories, feature specs, status updates
- 2Intermediate: competitive analysis, prioritization frameworks, PRDs
- 3Advanced: product strategy, go-to-market planning, OKR setting
- 4Expert: product vision, market positioning, business model innovation
Discussion
Product Hunt–style comments (not star reviews)- No comments yet — start the thread.
Ratings
4.8★★★★★63 reviews- ★★★★★Ava Mehta· Dec 28, 2024
game-developer reduced setup friction for our internal harness; good balance of opinion and flexibility.
- ★★★★★Soo Harris· Dec 24, 2024
Registry listing for game-developer matched our evaluation — installs cleanly and behaves as described in the markdown.
- ★★★★★Arjun Kapoor· Dec 24, 2024
Useful defaults in game-developer — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
- ★★★★★Dhruvi Jain· Dec 20, 2024
We added game-developer from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
- ★★★★★Luis Anderson· Dec 20, 2024
game-developer fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
- ★★★★★Benjamin Yang· Dec 20, 2024
Keeps context tight: game-developer is the kind of skill you can hand to a new teammate without a long onboarding doc.
- ★★★★★Noah Smith· Dec 16, 2024
game-developer has been reliable in day-to-day use. Documentation quality is above average for community skills.
- ★★★★★Camila Taylor· Nov 19, 2024
game-developer is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
- ★★★★★Omar Smith· Nov 15, 2024
Solid pick for teams standardizing on skills: game-developer is focused, and the summary matches what you get after install.
- ★★★★★Aarav Anderson· Nov 15, 2024
I recommend game-developer for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 63