Open source · Free forever

The package manager
for Skript.

Install community Skript packages on your server
without touching a single file.

Manage Skript packages
from inside the game.

Drop the SKPM plugin into your server once. After that, every package is one command away.

1
Install the SKPM plugin Download SKPM.jar and drop it in your plugins/ folder, then restart. Download latest release →
2
Install packages from in-game That's it. No FTP, no file transfers, no manual reloads.
> /skpm install economy
[SKPM] Installing economy...
[SKPM] Installed economy@1.0.2

Commands

/skpm install <package>

Download, verify, and load a package from the skpm registry. Skript reloads automatically.

/skpm install spigotmc:<name|id>

Install any free Skript resource directly from SpigotMC — no manual download needed.

/skpm remove <package>

Uninstall a package and remove its scripts.

/skpm update [package]

Update a package to the latest version, or omit to update all.

/skpm search <query>

Search the registry for packages by name or description.

/skpm list

See every installed package and its version.

Install directly from
SpigotMC.

Thousands of free Skript resources on SpigotMC, one command away. No manual downloads, no FTP, no copy-pasting files.

1
Install by name skpm searches SpigotMC and installs the matching free Skript resource automatically.
> /skpm install spigotmc:friends
[SKPM] Installing spigotmc:friends...
[SKPM] Installed Friends (1.4.2) from SpigotMC
2
Multiple matches? Use the resource ID. If more than one resource shares a name, skpm lists them with their IDs so you can be precise.
> /skpm install spigotmc:economy
[SKPM] Multiple matches — use the resource ID:
#12345 — Economy Pro by AuthorA (2.1.0)
#67890 — SimpleEconomy by AuthorB (1.0.3)
> /skpm install spigotmc:12345
[SKPM] Installed Economy Pro (2.1.0) from SpigotMC

Publish your scripts
to the registry.

The skpm CLI handles versioning, packaging, and publishing. One command gets your script in front of every server running skpm.

1
Install the CLI
curl -fsSL https://raw.githubusercontent.com/skpm-dev/cli/main/install.sh | sh
2
Add a skpm.json to your project
{
  "name": "my-economy",
  "description": "A simple economy system",
  "version": "1.0.0",
  "files": ["economy.sk"]
}
3
Publish
skpm publish
skpm prompts for a version bump, then opens a pull request on the registry. Once merged, your package is live.
CLI documentation →

Secure by default.