Audit config
AI Minecraft server admin that audits configs, fixes lag, sets up proxies and permissions, picks plugin stacks, and learns any plugin's docs on demand. Works in Claude Code, Claude.ai, Codex, Antigravity, and Gemini CLI.
npx -y skills add Teddy563/mcwrench --skill audit-configAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Audits a Minecraft server's configuration tree for performance, security and footgun issues and reports a prioritised fix list. Use whenever the user asks to "audit my config", "check my server config", "review paper-global.yml", "why is my server set up wrong", "is this config safe", "lint my server", or points at a folder containing server.properties, paper-global.yml, paper-world-defaults.yml, paper-world.yml, spigot.yml, bukkit.yml, purpur.yml or velocity.toml. Also use proactively after the user shares any of those files or pastes their contents. Flags online-mode/forwarding mismatches, exposed RCON, YAML tab characters, view-distance/simulation-distance mismatches, missing entity limits, and unsafe unsupported-settings. Reports findings as critical, high, medium and low.
The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.
SKILL.md
4.9 KB, as published. Nobody here has run it
Audit Config
Scan a Minecraft server's config files and produce a prioritised, actionable report.
Procedure
- Locate the config tree. Look for, at the server root and per-world folders:
server.properties,bukkit.yml,spigot.yml,paper-global.yml,paper-world-defaults.yml,*/paper-world.yml,purpur.yml,velocity.toml,config/plugin folders. Use Glob/Grep/Read. If only pasted text is available, audit that. - Read each present file and check against the reference checklists:
references/paper-global-checklist.md— server-wide Paper settings + proxy forwarding.references/common-footguns.md— the high-frequency mistakes that crash or lag servers.
- Cross-file consistency (the part single-file linters miss):
online-modevs proxy forwarding: behind Velocity/Bungee the backend must runonline-mode=falseAND have modern forwarding configured, or skins/UUIDs break.- Never both
spigot.yml: bungeecord: trueandpaper-global.yml: proxies.velocity.enabled: true— the server won't start. view-distanceinserver.propertiesvsspigot.yml/paper-world.yml— the lower wins per-world; flag silent mismatches.proxies.velocity.secretpresent and not the literal default/empty;forwarding.secretmatches the proxy.
- Security pass:
- RCON: if
enable-rcon=true, confirm a strongrcon.passwordand that the port is firewalled / loopback-bound — never publicly exposed. (Critical if exposed.) online-mode=falsewithout a proxy in front = crackable server (high, unless intended).
- RCON: if
- Performance pass: view-distance/simulation-distance sanity for the player count,
entity-activation-range present, mob spawn limits set,
entity-per-chunk-save-limitcaps forexperience_orb/arrow/ender_pearl, hopper tuning. Defer deep tuning to theperformance-tuningskill but flag obvious wins here. - YAML hygiene: detect literal tab characters (YAML forbids tabs — a common silent breakage), duplicate keys, and values that should be quoted.
- Plugin conflict pass: run
check-conflicts.mjsto flag mutually exclusive plugins (two skyblock engines, two claim systems, ItemsAdder + Oraxen), missing deps (Vault without an economy, LibsDisguises without ProtocolLib), and proxy/Folia mismatches. Verify any hit withlearn-plugin-docsbefore recommending a removal.
Reporting format
Group findings by severity and give each a one-line fix:
CRITICAL — will crash or lose data
- [file:key] problem → fix
HIGH — lag or security
- …
MEDIUM — quality / maintainability
LOW — style / nitpick
End with a short "Looks good" list of things that are already correct, so the user trusts
the audit. If a referenced plugin's keys are unfamiliar, call the learn-plugin-docs
skill before judging them — do not invent keys.
Helper scripts
- Seed the audit by scanning the tree:
node "${CLAUDE_PLUGIN_ROOT}/skills/audit-config/scripts/scan-server-tree.mjs" <server-root> # detects software, config files, worlds, plugins, key settings, and tab-character warnings # add --json for machine-readable output - Find paper-world.yml overrides (you should only override keys you mean to):
node "${CLAUDE_PLUGIN_ROOT}/skills/audit-config/scripts/diff-against-defaults.mjs" \ <world>/paper-world.yml paper-world-defaults.yml - Check plugin conflicts / missing deps (uses
references/conflict-rules.json+ the profile):node "${CLAUDE_PLUGIN_ROOT}/skills/audit-config/scripts/check-conflicts.mjs" <server-root> # or --list "LuckPerms,EssentialsX,Vault" or --profile (add --json for machine output) - Write the server profile so later answers stop re-asking version/host/stack:
node "${CLAUDE_PLUGIN_ROOT}/skills/audit-config/scripts/scan-server-tree.mjs" <server-root> --write-profile
All are read-only on the scanned tree (only --write-profile writes, into mcwrench's _cache/) and
run on stock Node ≥18. Use them to orient, then read the flagged files.