Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/CarlosEduJs/SCAL-P/llms.txt

Use this file to discover all available pages before exploring further.

SCAL-P ships as a single static binary with no runtime dependencies. The fastest path is downloading a pre-built release for your platform. If you prefer to audit what you’re running, build from source — the entire build uses only the Go standard library and a single make command.
1

Download or build the binary

Choose your platform below. All pre-built binaries are compiled with CGO_ENABLED=0 for maximum portability.
curl -L https://github.com/CarlosEduJs/SCAL-P/releases/latest/download/scalp_linux_amd64.tar.gz | tar xz
sudo mv scalp /usr/local/bin/
2

Add scalp to your PATH (if needed)

If you moved the binary to /usr/local/bin/, it is already on your PATH on most systems. To confirm, open a new terminal and run:
which scalp
If the command is not found, add the directory containing the binary to your PATH. For example, to add ~/.local/bin:
export PATH="$HOME/.local/bin:$PATH"
Add that line to your shell profile (~/.bashrc, ~/.zshrc, etc.) to make it permanent.
3

Verify the installation

Confirm SCAL-P is installed and reporting a version:
scalp version
You should see output similar to:
INFO version version=0.2.0 commit=abc1234 date=2024-01-15T12:00:00Z
The version, commit, and date fields are injected at build time. If you see version=dev, you built from source without setting VERSION.

Verifying the binary (optional)

SCAL-P dogfoods its own release verification. You can verify a downloaded binary against the published checksums using scalp verify:
scalp checksum scalp_linux_amd64.tar.gz > checksums.txt
scalp verify --artifact scalp_linux_amd64.tar.gz --checksum checksums.txt --ci
The --ci flag causes scalp verify to exit 1 on any mismatch. See binary verification for a complete walkthrough.

Available platforms

Releases are built for the following targets by GoReleaser:
OSArchitectureArchive format
Linuxamd64.tar.gz
Linuxarm64.tar.gz
macOSamd64.tar.gz
macOSarm64.tar.gz
Windowsamd64.zip
Windowsarm64.zip
Windows binaries are provided but not tested in CI. Community feedback on Windows usage is welcome via the GitHub issue tracker.

What’s next

Quickstart

Run your first guarded install and generate your first CI report.

Commands

Full reference for every SCAL-P command and flag.

Build docs developers (and LLMs) love