se-dev-server-code
SE Dev Server Code Skill
Allows reading the decompiled C# code of the Space Engineers Dedicated Server. The "game logic" of the server is largely the same as the game (client) is running. The entry point (main executable), some aspects of logging and configuration differ. Also, some of the libraries are not used by the server, but they may still present to provide the necessary data structures and some backend functionality.
⚠️ CRITICAL: Commands run in a UNIX shell. Use bash syntax. On Windows this is BusyBox; on Linux use the native shell.
Examples:
- ✅
test -f file.txt && echo exists - ✅
ls -la | head -10 - ❌
if exist file.txt (echo exists)- This will NOT work
Actions:
- prepare: Run the one-time preparation (
Prepare.baton Windows,prepare.shon Linux) - bash: Run UNIX shell commands via busybox
- search: Run code searches using
search_server_code.py - test: Test this skill by running
test_search_server_code.bat
Routing Decision
More from viktor-ferenczi/se-dev-skills
se-dev-mod
Mod development for Space Engineers version 1. Search mod code for examples and patterns.
52se-dev-game-code
Allows reading the decompiled C# code of Space Engineers version 1
47se-dev-script
In-game (programmable block, aka PB) script development for Space Engineers version 1. Search script code for examples and patterns.
44se-dev-plugin
Plugin development for Space Engineers version 1. Search plugin code from PluginHub for examples and patterns.
42