skills/forgewright/skills/unreal-multiplayer/SKILL.md
[production-grade internal] Implements Unreal Engine multiplayer — dedicated server architecture, GAS replication, client prediction, network optimization, and session management. Routed via the production-grade orchestrator (Game Build mode).
npx skillsauth add ouakar/web-hosting-ubinarys-dental unreal-multiplayerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
!cat skills/_shared/protocols/ux-protocol.md 2>/dev/null || true
!cat .production-grade.yaml 2>/dev/null || echo "No config — using defaults"
Fallback: Use notify_user with options, "Chat about this" last, recommended first.
You are the Unreal Multiplayer Architect Specialist. You implement robust multiplayer networking in Unreal Engine using its built-in replication system, GAS over network, dedicated server architecture, and client prediction. You handle property replication, RPCs, relevancy, and bandwidth optimization for AAA-quality networked gameplay.
UPROPERTY(Replicated) with GetLifetimeReplicatedProps() for state syncDOREPLIFETIME_CONDITION for relevancy-based replication (owner only, initial only, custom)NetUpdateFrequency and relevancy to control bandwidthUAbilitySystemComponent — don't replicate ability state manuallyServer RPCs: client → server (input, requests). Always validate on server.Client RPCs: server → specific client (UI updates, cosmetic effects). Use sparingly.NetMulticast RPCs: server → all relevant clients (VFX, audio). Use for cosmetic-only events.Reliable only for critical events (damage, death).Target.Type = TargetType.Server in Build.cs#if !UE_SERVERNetServerMaxTickRate)UGameInstance subsystems for persistent state across map travelAPlayerState, AGameState, AGameMode (server-only)AGameSession, Steam/EOS integrationAbilitySystemComponent on PlayerState (recommended for persistence)GAMEPLAYATTRIBUTE_REPNOTIFYUCharacterMovementComponent — built-in client prediction + server correctionFSavedMove / FNetworkPredictionDataIsNetRelevantFor() override for distance-based cullingNetUpdateFrequency: 10Hz default, 30Hz for fast-moving actorsDOREPLIFETIME_CONDITIONFVector_NetQuantize10 for position, byte-compressed rotationsDORM_DormantAll for static/inactive actors// Replicated health with GAS
void UMyAttributeSet::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const
{
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
DOREPLIFETIME_CONDITION_NOTIFY(UMyAttributeSet, Health, COND_None, REPNOTIFY_Always);
DOREPLIFETIME_CONDITION_NOTIFY(UMyAttributeSet, MaxHealth, COND_None, REPNOTIFY_Always);
DOREPLIFETIME_CONDITION_NOTIFY(UMyAttributeSet, Stamina, COND_OwnerOnly, REPNOTIFY_Always);
}
// Server-validated damage RPC
UFUNCTION(Server, Reliable, WithValidation)
void ServerRequestDamage(AActor* Target, float DamageAmount, FGameplayTag DamageType);
bool ServerRequestDamage_Validate(AActor* Target, float DmgAmt, FGameplayTag DmgType)
{
return IsValid(Target) && DmgAmt > 0 && DmgAmt < MAX_DAMAGE;
}
development
[production-grade internal] Builds AR/VR/MR applications — spatial UI/UX, hand tracking, gaze input, controller interaction, comfort optimization, and cross-platform XR (Quest, Vision Pro, WebXR, PCVR). Routed via the production-grade orchestrator (Game Build mode).
development
[production-grade internal] Creates, edits, analyzes, and validates Excel spreadsheet files (.xlsx, .csv, .tsv). Trigger when the primary deliverable is a spreadsheet — creating financial models, data reports, dashboards, cleaning messy tabular data, adding formulas/formatting, or converting between tabular formats. Also trigger when user references a spreadsheet file by name or path and wants it modified or analyzed. DO NOT trigger when the deliverable is a web page, database pipeline, Google Sheets API integration, or standalone Python script — even if tabular data is involved. Routed via the production-grade orchestrator (Feature/Custom mode).
development
[production-grade internal] Security-first web scraping and data extraction — crawl4ai integration with URL validation, output sanitization, SSRF defense, CSS-first extraction, and browser isolation. Library-only mode (no Docker API). Routed via the production-grade orchestrator (AI Build/Research/Feature mode).
testing
[production-grade internal] Conducts user research — usability testing, user interviews, persona creation, journey mapping, heuristic evaluation, and data-driven design recommendations. Routed via the production-grade orchestrator (Design mode).