Source

gamedev-skills/awesome-gamedev-agent-skills

74 skills · 153.4K combined installs

Skills from this source

#
Skill
Source
8W Activity
Installs
3769
game-feel Add "juice" and game feel that makes actions satisfying — screen shake, hit-stop/freeze frames, tweened/eased motion,…
gamedev-skills/awesome-gamedev-agent-skills
3.6K
3809
game-ui-ux Design and build game UI/UX — HUDs, menus, and overlays — that survive every screen: anchor- based responsive layout,…
gamedev-skills/awesome-gamedev-agent-skills
3.6K
4449
level-design Design and build playable levels — the blockout/whitebox-to-playable workflow, player metrics and grid layout, pacing…
gamedev-skills/awesome-gamedev-agent-skills
2.9K
4731
game-ai Design NPC and enemy decision-making with finite state machines, behavior trees, steering behaviors, and A* pathfindi…
gamedev-skills/awesome-gamedev-agent-skills
2.8K
4839
save-systems Design save/load for game state — choosing what to serialize, file formats, save slots, atomic crash-safe writes, sch…
gamedev-skills/awesome-gamedev-agent-skills
2.7K
4841
audio-design Implement game audio practice — bus/mixer architecture and gain in decibels, ducking (sidechain), adaptive/dynamic mu…
gamedev-skills/awesome-gamedev-agent-skills
2.7K
4871
camera-systems Build game cameras that feel good — 2D follow with a deadzone, look-ahead, smoothing, and level-bounds clamping; 3D t…
gamedev-skills/awesome-gamedev-agent-skills
2.7K
4887
performance-optimization Find and fix game performance problems methodically — measure with the engine profiler first, reason about the frame-…
gamedev-skills/awesome-gamedev-agent-skills
2.7K
4940
procedural-gen Generate game content procedurally — seeded deterministic RNG, value/Perlin/ Simplex noise for terrain and heightmaps…
gamedev-skills/awesome-gamedev-agent-skills
2.7K
4998
input-systems Architect game input — action mapping (abstracting keys into named actions), rebinding with conflict detection and pe…
gamedev-skills/awesome-gamedev-agent-skills
2.6K
5129
physics-tuning Tune game physics for stable, good-feeling motion — fixed vs variable timestep, render interpolation, mass/gravity/dr…
gamedev-skills/awesome-gamedev-agent-skills
2.6K
5177
shader-programming Write game shaders from cross-engine fundamentals — the vertex→fragment pipeline, coordinate spaces, UV math, and com…
gamedev-skills/awesome-gamedev-agent-skills
2.5K
5196
dialogue-systems Build branching dialogue and narrative — a node/choice graph with conditions, variables, and localization hooks — and…
gamedev-skills/awesome-gamedev-agent-skills
2.5K
5315
router Routes any game-development request to the right specialized skill(s): it detects the engine (Godot, Unity, Unreal, B…
gamedev-skills/awesome-gamedev-agent-skills
2.5K
5550
godot-animation Animate in Godot 4.7 three ways: AnimationPlayer for keyframed clips (incl. call and signal tracks), AnimationTree wi…
gamedev-skills/awesome-gamedev-agent-skills
2.4K
5540
godot-ui-control Build Godot 4.7 user interfaces with Control nodes: anchors and offsets for responsive layout, Container nodes (VBox/…
gamedev-skills/awesome-gamedev-agent-skills
2.4K
5521
rpg Build an RPG: stats and leveling, inventory and equipment, quests, branching dialogue, save/load, and combat. Use for…
gamedev-skills/awesome-gamedev-agent-skills
2.4K
5693
godot-gdscript Write idiomatic GDScript for Godot 4.7: static typing, the node lifecycle (_ready/_process/_physics_process), @export…
gamedev-skills/awesome-gamedev-agent-skills
2.3K
5699
godot-nodes-scenes Structure a Godot 4.7 project with the scene tree and node composition: build reusable scenes, instance PackedScenes …
gamedev-skills/awesome-gamedev-agent-skills
2.3K
5718
godot-physics Use Godot 4.7 physics bodies and detection in 2D and 3D: RigidBody, StaticBody, Area, and CharacterBody; collision la…
gamedev-skills/awesome-gamedev-agent-skills
2.3K
5651
godot-shaders Write Godot 4.7 shaders in the Godot Shading Language: canvas_item shaders for 2D and spatial shaders for 3D, with ve…
gamedev-skills/awesome-gamedev-agent-skills
2.3K
5720
prototype-fast Build a playable prototype in about an hour to answer one question — is it fun? — with greybox primitives, a hard tim…
gamedev-skills/awesome-gamedev-agent-skills
2.3K
5678
roguelike Build a roguelike: turn-based grid movement, procedural dungeons, permadeath, field-of-view, and loot tables. Use for…
gamedev-skills/awesome-gamedev-agent-skills
2.3K
5735
godot-audio Play and mix audio in Godot 4.7: AudioStreamPlayer (2D/3D variants), audio buses with volume/mute and effects, music …
gamedev-skills/awesome-gamedev-agent-skills
2.2K
5739
godot-resources Design data-driven Godot 4.7 games with custom Resource classes: define typed data with class_name + @export, save/lo…
gamedev-skills/awesome-gamedev-agent-skills
2.2K
5747
godot-signals-groups Build event-driven, decoupled Godot 4.7 gameplay with signals and node groups: declare and emit custom signals, conne…
gamedev-skills/awesome-gamedev-agent-skills
2.2K
5778
card-game Build a card game: card data, deck/hand/discard zones, draw/shuffle/reshuffle, a turn structure, costs, and effect re…
gamedev-skills/awesome-gamedev-agent-skills
2.2K
5831
fps-shooter Build a first-person shooter: move+mouse-look controller, hitscan or projectile shooting, weapons, health, and enemy …
gamedev-skills/awesome-gamedev-agent-skills
2.2K
5781
godot-2d-movement Implement 2D kinematic character movement in Godot 4.7 with CharacterBody2D and move_and_slide(): platformer run/jump…
gamedev-skills/awesome-gamedev-agent-skills
2.2K
5790
godot-3d-essentials Set up a Godot 4.7 3D scene: Node3D transforms, Camera3D, lighting (DirectionalLight3D/OmniLight3D), WorldEnvironment…
gamedev-skills/awesome-gamedev-agent-skills
2.2K
5777
godot-export Export and build a Godot 4.7 project for distribution: install export templates, define export presets (Windows/macOS…
gamedev-skills/awesome-gamedev-agent-skills
2.2K
5828
godot-tilemap Build and edit tile-based 2D levels in Godot 4.7 with TileMapLayer and TileSet: paint layers, set up collision/naviga…
gamedev-skills/awesome-gamedev-agent-skills
2.2K
5836
platformer Build a 2D platformer: run/jump control with coyote time, jump buffering, and variable jump height, plus tiled levels…
gamedev-skills/awesome-gamedev-agent-skills
2.2K
5840
puzzle Build a puzzle game: grid/board state, move input, rule-based resolution (match-3 cascades, sokoban pushes, tile logi…
gamedev-skills/awesome-gamedev-agent-skills
2.2K
5871
survival-crafting Build a survival-crafting game: resource gathering, inventory, crafting and a tech tree, needs (hunger/thirst/tempera…
gamedev-skills/awesome-gamedev-agent-skills
2.2K
5826
unity-csharp-scripting Write Unity 6.3 LTS C# gameplay scripts: the MonoBehaviour lifecycle (Awake/OnEnable/Start/Update/FixedUpdate/LateUpd…
gamedev-skills/awesome-gamedev-agent-skills
2.2K
5849
visual-novel Build a visual novel: a branching script, character and background display, a text box with choices, save/load, backl…
gamedev-skills/awesome-gamedev-agent-skills
2.2K
5880
tower-defense Build a tower defense: enemies pathing along lanes, wave spawning, towers that auto-target and fire, an economy, and …
gamedev-skills/awesome-gamedev-agent-skills
2.1K
5907
steam-publish Publish or update a game on Steam with Steamworks and SteamPipe: configure depots and packages, upload builds with st…
gamedev-skills/awesome-gamedev-agent-skills
2.1K
5937
unity-animation Drive Unity 6.3 LTS character animation with Animator Controllers: states, transitions, parameters, blend trees, anim…
gamedev-skills/awesome-gamedev-agent-skills
2.1K
6058
game-jam Plan and ship a game under a jam deadline: lock scope to the clock, schedule the hours, cut features, and submit on t…
gamedev-skills/awesome-gamedev-agent-skills
2.1K
5954
godot-csharp Use C#/.NET in Godot 4.7: partial classes extending nodes, the PascalCase lifecycle (_Ready/_Process/_PhysicsProcess)…
gamedev-skills/awesome-gamedev-agent-skills
2.1K
5962
godot-multiplayer Build networked games with Godot 4.7 high-level multiplayer: set up an ENetMultiplayerPeer server/client, define RPCs…
gamedev-skills/awesome-gamedev-agent-skills
2.1K
6068
itch-publish Publish and update a game on itch.io: create the project page and upload builds with the butler CLI (butler push) to …
gamedev-skills/awesome-gamedev-agent-skills
2.1K
6022
phaser-core Set up and debug a Phaser 4 game: the Game config, the Scene lifecycle (init/preload/create/update), the asset loader…
gamedev-skills/awesome-gamedev-agent-skills
2.1K
6024
roblox-luau Script a Roblox experience in Luau: get services, create and parent Instances, connect events, run server Scripts vs …
gamedev-skills/awesome-gamedev-agent-skills
2.1K
6049
unity-input-system Wire player input in Unity 6.3 LTS with the Input System package: Input Actions, action maps, the PlayerInput compone…
gamedev-skills/awesome-gamedev-agent-skills
2.1K
6004
unity-scriptableobjects Architect Unity 6.3 LTS data and decoupling with ScriptableObjects: config/data assets, shared runtime variables, eve…
gamedev-skills/awesome-gamedev-agent-skills
2.1K
6079
unity-physics Set up 3D physics in Unity 6.3 LTS: Rigidbody movement and forces, colliders, triggers vs collisions, layer-based col…
gamedev-skills/awesome-gamedev-agent-skills
2K
6083
threejs-gltf-loading Load glTF/GLB models in three.js with GLTFLoader and play their skinned animations with AnimationMixer, including DRA…
gamedev-skills/awesome-gamedev-agent-skills
2K
Page 1 · 74 total Next