godot-signal-architecture
Installation
SKILL.md
Signal Architecture
Signal Up/Call Down pattern, typed signals, and event buses define decoupled, maintainable architectures.
Available Scripts
signal_up_call_down_pattern.gd
Clean implementation of decoupled hierarchy communication: children signal up, parents call down.
global_signal_bus_router.gd
Expert AutoLoad event bus for system-level event routing (Achievements, UI, Saving).
callable_bind_context.gd
Injecting extra static context into signal callbacks using Callable.bind().
unbind_unwanted_args.gd
Cleaning up function signatures by discarding unneeded signal arguments with unbind().