Source

thedivergentai/gd-agentic-skills

144 skills · 30K combined installs

Skills from this source

#
Skill
Source
8W Activity
Installs
1
godot-skill-judge Meta-skill for validating the integrity and quality of other skills. automatically checks for SKILL.md existence, scr…
thedivergentai/gd-agentic-skills
58
2
godot-skill-discovery Expert blueprint for GDSkills skill discovery and indexing system. Enables AI agents to find relevant skills by topic…
thedivergentai/gd-agentic-skills
55
3
godot-version-migration Full-history Godot version migration hub.
thedivergentai/gd-agentic-skills
48
4
camera-systems Expert patterns for 2D/3D camera control including smooth following (lerp, position_smoothing), camera shake (trauma …
thedivergentai/gd-agentic-skills
1
5
genre-sandbox Expert blueprint for sandbox games (Minecraft, Terraria, Garry's Mod) with physics-based interactions, cellular autom…
thedivergentai/gd-agentic-skills
1
6
genre-shooter Expert blueprint for FPS/TPS shooter games (Call of Duty, Counter-Strike, Apex Legends, Fortnite) covering weapon sys…
thedivergentai/gd-agentic-skills
1
7
genre-simulation Expert blueprint for simulation and tycoon games (SimCity, RollerCoaster Tycoon, Factorio, Two Point Hospital) coveri…
thedivergentai/gd-agentic-skills
1
8
genre-sports Expert blueprint for sports games (FIFA, NBA 2K, Rocket League, Tony Hawk) covering physics-based ball interaction, t…
thedivergentai/gd-agentic-skills
1
9
genre-stealth Expert blueprint for stealth games (Splinter Cell, Hitman, Dishonored, Thief) covering AI detection systems, vision c…
thedivergentai/gd-agentic-skills
1
10
genre-survival Expert blueprint for survival games (Minecraft, Don't Starve, The Forest, Rust) covering needs systems, resource gath…
thedivergentai/gd-agentic-skills
1
11
genre-tower-defense Expert blueprint for tower defense games (Bloons TD, Kingdom Rush, Fieldrunners) covering wave management, tower targ…
thedivergentai/gd-agentic-skills
1
12
genre-visual-novel Expert blueprint for visual novels (Doki Doki Literature Club, Phoenix Wright, Steins;Gate) focusing on branching nar…
thedivergentai/gd-agentic-skills
1
13
input-handling Expert patterns for input handling covering InputMap actions, InputEvent processing, controller support, rebinding, d…
thedivergentai/gd-agentic-skills
1
14
inventory-system Expert blueprint for inventory systems (Diablo, Resident Evil, Minecraft) covering slot-based containers, stacking lo…
thedivergentai/gd-agentic-skills
1
15
mcp-scene-builder [MCP WRAPPER] Programmatically create/modify Godot scenes using Godot MCP tools. Orchestrates mcp_godot_create_scene,…
thedivergentai/gd-agentic-skills
1
16
multiplayer-networking Expert blueprint for multiplayer networking (Among Us, Brawlhalla, Terraria) using Godot's high-level API covering RP…
thedivergentai/gd-agentic-skills
1
17
navigation-pathfinding Expert blueprint for AI pathfinding (tower defense, RTS, stealth) using NavigationAgent2D/3D, NavigationServer, avoid…
thedivergentai/gd-agentic-skills
1
18
particles Expert blueprint for GPU particle systems (explosions, magic effects, weather, trails) using GPUParticles2D/3D, Parti…
thedivergentai/gd-agentic-skills
1
19
performance-optimization Expert blueprint for performance profiling and optimization (frame drops, memory leaks, draw calls) using Godot Profi…
thedivergentai/gd-agentic-skills
1
20
platform-console Expert blueprint for console platforms (PlayStation, Xbox, Nintendo Switch) covering controller-first UI, certificati…
thedivergentai/gd-agentic-skills
1
21
platform-desktop Expert blueprint for desktop platforms (Windows/Linux/macOS) covering keyboard/mouse controls, settings menus, window…
thedivergentai/gd-agentic-skills
1
22
platform-mobile Expert blueprint for mobile platforms (Android/iOS) covering touch controls, virtual joysticks, responsive UI, safe a…
thedivergentai/gd-agentic-skills
1
23
platform-vr Expert blueprint for VR platforms (Meta Quest, PSVR, SteamVR, Pico) covering XR toolkit (OpenXR), comfort settings (v…
thedivergentai/gd-agentic-skills
1
24
platform-web Expert blueprint for web/browser platforms (HTML5 export) covering WebGL/WebGPU rendering, custom loading screens, Ja…
thedivergentai/gd-agentic-skills
1
25
procedural-generation Expert blueprint for procedural content generation (dungeons, terrain, loot, levels) using FastNoiseLite, random walk…
thedivergentai/gd-agentic-skills
1
26
project-foundations Expert blueprint for Godot 4 project organization (feature-based folders, naming conventions, version control). Enfor…
thedivergentai/gd-agentic-skills
1
27
project-templates Expert blueprint for genre-specific project boilerplates (2D platformer, top-down RPG, 3D FPS) including directory st…
thedivergentai/gd-agentic-skills
1
28
quest-system Expert blueprint for quest tracking systems (objectives, progress, rewards, branching chains) using Resource-based q…
thedivergentai/gd-agentic-skills
1
29
resource-data-patterns Expert blueprint for data-oriented design using Resource/RefCounted classes (item databases, character stats, reusabl…
thedivergentai/gd-agentic-skills
1
30
rpg-stats Expert blueprint for RPG stat systems (attributes, leveling, modifiers, damage formulas) using Resource-based stats, …
thedivergentai/gd-agentic-skills
1
31
save-load-systems Expert blueprint for save/load systems using JSON/binary serialization, PERSIST group pattern, versioning, and migrat…
thedivergentai/gd-agentic-skills
1
32
scene-management Expert blueprint for scene loading, transitions, async (background) loading, instance management, and caching. Covers…
thedivergentai/gd-agentic-skills
1
33
server-architecture Expert blueprint for low-level server access (RenderingServer, PhysicsServer2D/3D, NavigationServer) using RIDs for m…
thedivergentai/gd-agentic-skills
1
34
shaders-basics Expert blueprint for shader programming (visual effects, post-processing, material customization) using Godot's GLSL-…
thedivergentai/gd-agentic-skills
1
35
signal-architecture Expert blueprint for signal-driven architecture using "Signal Up, Call Down" pattern for loose coupling. Covers typed…
thedivergentai/gd-agentic-skills
1
36
skill-discovery Expert blueprint for GDSkills skill discovery and indexing system. Enables AI agents to find relevant skills by topic…
thedivergentai/gd-agentic-skills
1
37
state-machine-advanced Expert blueprint for hierarchical finite state machines (HSM) and pushdown automata for complex AI/character behavior…
thedivergentai/gd-agentic-skills
1
38
testing-patterns Expert blueprint for testing patterns using GUT (Godot Unit Test), integration tests, mock/stub patterns, async testi…
thedivergentai/gd-agentic-skills
1
39
tilemap-mastery Expert blueprint for TileMapLayer and TileSet systems for efficient 2D level design. Covers terrain autotiling, physi…
thedivergentai/gd-agentic-skills
1
40
turn-system Expert blueprint for turn-based combat with turn order, action points, phase management, and timeline systems for str…
thedivergentai/gd-agentic-skills
1
41
tweening Expert blueprint for programmatic animation using Tween for smooth property transitions, UI effects, camera movements…
thedivergentai/gd-agentic-skills
1
42
ui-containers Expert blueprint for responsive UI layouts using Container nodes (HBoxContainer, VBoxContainer, GridContainer, Margin…
thedivergentai/gd-agentic-skills
1
43
ui-rich-text Expert blueprint for RichTextLabel with BBCode formatting (bold, italic, colors, images, clickable links) and custom …
thedivergentai/gd-agentic-skills
1
44
ui-theming Expert blueprint for UI themes using Theme resources, StyleBoxes, custom fonts, and theme overrides for consistent vi…
thedivergentai/gd-agentic-skills
1
Page 3 · 144 total Previous