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.
Works with
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versiongame-developerExecute the skills CLI command in your project's root directory to begin installation:
Fetches game-developer from 404kidwiz/claude-supercode-skills and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate game-developer. Access via /game-developer in your agent's command palette.
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 environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
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
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
Evaluate features using frameworks (RICE, ICE, Kano) and create prioritized backlogs
Example
Score 20 feature ideas using RICE framework, generate prioritized roadmap with rationale
1
total installs
1
this week
75
GitHub stars
0
upvotes
Run in your terminal
1
installs
1
this week
75
stars
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.
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)
| 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. |
| 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):
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
Health variable.Goal: Create a GPU-accelerated particle system for a magic spell.
Steps:
Shader Graph (The Look)
Unlit Shader Graph.Voronoi Noise node scrolling with Time.Color property (HDR).Base Color and Alpha.Transparent / Additive.VFX Graph (The Motion)
Visual Effect Graph asset.Turbulence (Noise Field) to simulate wind.Quad Output to use the Shader Graph created above.Optimization
GPU Events if particles need to trigger gameplay logic (e.g., damage).Bounds correctly to avoid culling issues.Update()What it looks like:
FindObjectOfType, GetComponent, or heavy math every frame.Why it fails:
Correct approach:
Start() or Awake().What it looks like:
Why it fails:
Correct approach:
What it looks like:
PlayerController.cs has 2000 lines handling Movement, Combat, Inventory, UI, and Audio.Why it fails:
Correct approach:
PlayerMovement, PlayerCombat, PlayerInventory.Performance:
Code Architecture:
UX/Polish:
Scenario: Building a commercial 2D platformer with physics-based gameplay.
Implementation:
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)
Scenario: Creating an immersive VR experience for Oculus/Meta Quest.
VR Implementation:
Key Considerations:
Scenario: Developing a competitive multiplayer game with 100 players.
Multiplayer Architecture:
Make data-driven prioritization decisions faster
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
Prerequisites
Time Estimate
30-60 minutes to see productivity improvements
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ 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.
greedychipmunk/agent-skills
omer-metin/skills-for-antigravity
mattpocock/skills
parcadei/continuous-claude-v3
cursor/plugins
ailabs-393/ai-labs-claude-skills
game-developer reduced setup friction for our internal harness; good balance of opinion and flexibility.
Registry listing for game-developer matched our evaluation — installs cleanly and behaves as described in the markdown.
Useful defaults in game-developer — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
We added game-developer from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
game-developer fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
Keeps context tight: game-developer is the kind of skill you can hand to a new teammate without a long onboarding doc.
game-developer has been reliable in day-to-day use. Documentation quality is above average for community skills.
game-developer is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.
Solid pick for teams standardizing on skills: game-developer is focused, and the summary matches what you get after install.
I recommend game-developer for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 63