godot-master
Installation
SKILL.md
Godot Master: Lead Architect Knowledge Hub
Every section earns its tokens by focusing on Knowledge Delta β the gap between what Claude already knows and what a senior Godot engineer knows from shipping real products.
π§ Part 1: Expert Thinking Frameworks
"Who Owns What?" β The Architecture Sanity Check
Before writing any system, answer these three questions for EVERY piece of state:
- Who owns the data? (The
StatsComponentowns health, NOT theCombatSystem) - Who is allowed to change it? (Only the owner via a public method like
apply_damage()) - Who needs to know it changed? (Anyone listening to the
health_changedsignal)
If you can't answer all three for every state variable, your architecture has a coupling problem. This is not OOP encapsulation β this is Godot-specific because the signal system IS the enforcement mechanism, not access modifiers.
Installs
1.4K
Repository
thedivergentai/β¦c-skillsGitHub Stars
319
First Seen
Feb 10, 2026
Security Audits