Developer automation made simple.
A POSIX shell CLI for installing, managing, and sharing developer automation scripts.
curl -fsSL https://raw.githubusercontent.com/magic-scripts/ms/main/setup.sh | shThen install commands:
ms install portcheck # Check and kill processes by port
ms install pgadduser # Set up PostgreSQL users and databases
ms install mschecksum # Calculate SHA256 checksums| Command | Description |
|---|---|
| portcheck | Check and manage processes using specific ports |
| pgadduser | PostgreSQL user and database setup |
| mschecksum | SHA256 checksum calculator for Magic Scripts packages |
Commands are distributed as lightweight shell scripts via a 3-tier registry system:
ms.msreg → package.mspack → package.msver → script download
No binary dependencies. No build step. Just shell scripts.
ms pub pack init mycommand \
--description "What it does" \
--author "Your Name" \
--email "you@example.com" \
--category utilitiesSee the ms-template and developer guide to get started.
- ms — Core CLI and full documentation
- ms-template — Starter template for new commands