Agent skill
unreal-networking
Unreal Engine networking skill for replication, RPCs, relevancy, and dedicated server architecture.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/unreal-networking
SKILL.md
Unreal Networking Skill
Multiplayer networking for Unreal Engine.
Overview
This skill provides capabilities for implementing multiplayer games using Unreal's built-in networking system.
Capabilities
Replication
- Configure replicated properties
- Handle replication conditions
- Manage replication priorities
- Implement custom replication
Remote Procedure Calls
- Implement Server RPCs
- Create Client RPCs
- Handle Multicast RPCs
- Manage RPC reliability
Authority and Relevancy
- Handle server authority
- Configure network relevancy
- Manage actor ownership
- Implement client prediction
Dedicated Servers
- Build dedicated server targets
- Handle headless mode
- Manage server performance
- Implement session management
Prerequisites
- Unreal Engine 5.0+
- Network knowledge
Usage Patterns
Replicated Property
UPROPERTY(ReplicatedUsing=OnRep_Health)
float Health;
UFUNCTION()
void OnRep_Health()
{
// Called on clients when Health changes
UpdateHealthUI();
}
void GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const
{
DOREPLIFETIME(AMyCharacter, Health);
}
RPC Implementation
UFUNCTION(Server, Reliable, WithValidation)
void Server_Fire(FVector Location, FRotator Rotation);
bool Server_Fire_Validate(FVector Location, FRotator Rotation)
{
return true; // Add validation
}
void Server_Fire_Implementation(FVector Location, FRotator Rotation)
{
// Execute on server
}
Best Practices
- Validate all server RPCs
- Minimize replicated properties
- Use relevancy wisely
- Test with simulated lag
- Profile network bandwidth
References
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?