CLI

Install

Prebuilt binary

Grab the latest release from the Forgejo releases page:

https://git.reseam.app/reseam/reseam/releases

Download the archive for your platform, extract reseam, and put it on your PATH:

chmod +x reseam
mv reseam ~/.local/bin/

From source

The CLI is a workspace crate. From the repo root:

cargo build --release -p reseam-cli

The binary lands at target/release/reseam. To install into ~/.cargo/bin:

cargo install --path crates/cli

Check it works

reseam --help
reseam patch --help

Every subcommand supports --help.

Logging

Logs go to stderr through tracing-subscriber. The default filter is:

reseam=info,reseam_cli=info,reseam_patcher=info,reseam_apk=info,reseam_sign=info

Override with RUST_LOG to dig into one crate:

RUST_LOG=reseam_patcher=debug reseam patch app.apk --bundle patches.reseam
Reseam Reseam © 2026 Reseam Team