Installation
Install ucharm on macOS or Linux
Installation
ucharm is available as a single binary for macOS and Linux.
macOS (Homebrew)
The easiest way to install on macOS:
brew install ucharmdev/tap/ucharmLinux / macOS (Direct Download)
Download the latest release from GitHub:
# Linux (x86_64)
curl -L https://github.com/ucharmdev/ucharm/releases/latest/download/ucharm-linux-x86_64 -o ucharm
chmod +x ucharm
sudo mv ucharm /usr/local/bin/
# Linux (ARM64)
curl -L https://github.com/ucharmdev/ucharm/releases/latest/download/ucharm-linux-aarch64 -o ucharm
chmod +x ucharm
sudo mv ucharm /usr/local/bin/
# macOS (Universal)
curl -L https://github.com/ucharmdev/ucharm/releases/latest/download/ucharm-macos-universal -o ucharm
chmod +x ucharm
sudo mv ucharm /usr/local/bin/Verify Installation
ucharm --versionYou should see output like:
μcharm v0.4.0Editor Setup
For the best development experience, run ucharm init in your project directory:
mkdir my-cli && cd my-cli
ucharm initThis creates:
- Type stubs for IDE autocomplete
- AI instructions for Claude Code, Cursor, Copilot, etc.