Hytale Server

PassAudited by ClawScan on May 1, 2026.

Overview

The skill is coherent for managing a local Hytale server, with disclosed use of an external downloader, credentials file, and a background screen session.

This skill appears benign for its stated purpose. Before installing, make sure you are comfortable running a local game server, using a user-provided Hytale downloader binary, and storing the downloader credentials file under `~/hytale_server`.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

You will be trusting the downloaded Hytale downloader binary to update server files.

Why it was flagged

The skill depends on an external executable that is not included in the reviewed files and is not pinned by checksum or signature, though the dependency is disclosed and purpose-aligned.

Skill content
Get the zip from: `https://downloader.hytale.com/hytale-downloader.zip` ... place `hytale-downloader-linux-amd64` in `~/hytale_server/`.
Recommendation

Download the downloader only from the stated official source and verify it if Hytale provides checksums or signatures.

What this means

Running `hytale update` executes the local Hytale downloader in `~/hytale_server`.

Why it was flagged

The update command marks the downloader executable and runs it. This is central to the skill's stated update function, but it executes code outside the skill package.

Skill content
chmod +x "$DOWNLOADER"
    "$DOWNLOADER" -download-path "$SERVER_DIR" $CRED_ARG
Recommendation

Make sure the downloader file in `~/hytale_server` is the official one you intended to run before using the update command.

What this means

Your Hytale downloader credentials may be used by the updater command.

Why it was flagged

The script passes a user-provided credentials file to the downloader when present. This credential use is disclosed in SKILL.md and appears aligned with downloading server files.

Skill content
if [ -f "hytale-downloader-credentials.json" ]; then
        CRED_ARG="-credentials-path hytale-downloader-credentials.json"
    fi
Recommendation

Store only the intended Hytale downloader credentials in `~/hytale_server/hytale-downloader-credentials.json` and avoid sharing that directory.

NoteHigh Confidence
ASI10: Rogue Agents
What this means

The server can keep running in the background until it is stopped.

Why it was flagged

The start command launches the server in a detached screen session, so it continues running after the command returns. This is disclosed and expected for a local game server.

Skill content
screen -dmS "$SCREEN_NAME" java -Xmx4G -jar "$JAR_NAME"
Recommendation

Use the provided stop command when you no longer want the server running, and monitor resource usage if needed.