Skip to content

loom 0.6.5

Choose a tag to compare

@github-actions github-actions released this 06 Sep 20:39
· 35 commits to main since this release

loom 0.6.5

Installation

The binary alone is not a working loom install. Loom's agents, skills, commands, hooks and orchestration rules are embedded in it and get written to ~/.claude/ and ~/.codex/ by loom install-assets, which the installer below runs for you.

Recommended (Linux x86_64 and macOS Apple Silicon):

curl -fsSL https://raw.githubusercontent.com/cosmix/loom/main/install.sh | bash

This downloads the signed binary for your platform to ~/.local/bin/loom (make sure that directory is on your PATH) and runs loom install-assets. Requires jq; ripgrep and fd are recommended.

Windows (WSL2): supported — the installer above picks the Linux x86_64 binary. Run stages on the
tmux backend (loom run --backend tmux); a stock WSL install ships no Linux GUI stack,
so the native backend has no terminal emulator to detect. Details:
Running under WSL.

Manual, pinned to this release (Linux x86_64):

mkdir -p ~/.local/bin
curl -fsSL https://github.com/cosmix/loom/releases/download/v0.6.5/loom-linux-x86_64 -o ~/.local/bin/loom
chmod +x ~/.local/bin/loom
~/.local/bin/loom install-assets

Manual, pinned to this release (macOS Apple Silicon):

mkdir -p ~/.local/bin
curl -fsSL https://github.com/cosmix/loom/releases/download/v0.6.5/loom-darwin-arm64 -o ~/.local/bin/loom
chmod +x ~/.local/bin/loom
~/.local/bin/loom install-assets

Verify Signature

Each binary ships with a minisign signature, already checked in CI against
the public key loom update has embedded. Later upgrades via loom update verify the signature automatically.

minisign -Vm loom-linux-x86_64 -P RWTHfjV12CKdjuXF6DPYXsOoneV6zG4nt4Qd1DFe7JzSIXTXKfRJPHjJ

Checksums

# Linux
sha256sum -c SHA256SUMS.txt --ignore-missing

# macOS - check the one binary you downloaded
grep loom-darwin-arm64 SHA256SUMS.txt | shasum -a 256 -c

Changelog

CHANGELOG.md

Full Changelog: v0.6.4...v0.6.5