Skip to content
Musher Docs

Musher CLI

musher is the publishing CLI for the Musher platform. Use it to create, validate, and publish bundles to the registry.

Installation

Download and install the latest release:

bash
curl -fsSL https://get.musher.dev | sh

The installer detects your platform and places the binary in your PATH.

Verify the installation:

bash
musher --version

Quick Start

Initialize a bundle

Scaffold a new bundle project in the current directory:

bash
musher init

Validate your bundle

Check that your bundle structure and assets are valid before publishing:

bash
musher validate

Publish to the registry

Publish an immutable version of your bundle:

bash
musher publish --version 1.0.0

Next Steps