Satisfactory

Mods that I've made for Satisfactory, and some libraries I made that help with modding UE5 games more generally as well.
Resource Roulette
Beef's Resource Roulette allows you to randomize the locations of resource nodes in the gameworld.
More Lighting Options
Beef's More Lighting Options mod gives you additional control over lighting in the game.
ModLog Library
Custom Log Library to allow writing clean log files for your mod
Rather than finding your mod issues in the UE5 log file, this allows you to output to a custom logfile that's easier for your to parse.
Includes blueprint callable logging functions as well, including the ability to override the log output to revert back to using UE_LOG so you can change the behavior of logging before packaging your mod.
ModProfile Library
Custom Profiling Library is a simple header-only lib to allow simple profiling of C++ methods within your mod
I wasn't really happy with Unreal Insights or Jetbrains profiling tools as they tend to take more time to get the information I need in a modding context. This is much simpler and straightforwards.
This library simply outputs the method name and the execution time into the UE Log or if you're also using the ModLog lib the custom logging file. If you don't intend to use the ModLog lib comment it out in the include.
Example Log Output:
UResourceRouletteManager::InitMeshesToDestroy executed in 0.01 ms
Persistent callback for tagging new actors has been registered.
UResourceCollectionManager::CollectWorldResources executed in 6.06 ms
UResourcePurityManager::CollectOriginalPurities executed in 0.01 ms
Cached new Original Resource node data.
Resource Scan from Save.
UResourceRouletteManager::ScanWorldResourceNodes executed in 13.04 ms
UResourceRouletteManager::RandomizeWorldResourceNodes executed in 0.01 ms
Number of nodes to spawn: 621
UResourceNodeSpawner::SpawnWorldResources executed in 54.50 ms
UResourceRouletteUtility::AssociateExtractorsWithNodes executed in 0.01 ms
Resources Spawning completed successfully.