Lown clones Git repositories into ~/.lown/apps/, executes native Go or Rust builds, and links binaries to ~/.lown/bin/. Fallback shell scripts are supported.
System Architecture
~/.lown/: binaries in bin/, source repos in apps/, and configuration in ~/.config/lown/config.toml.lown.toml. Runs go build -o or cargo build --release natively, or executes scripts.install with LOWN_BIN and LOWN_APP_ROOT set in the process environment.lown sync pulls latest changes across repos in ~/.lown/apps/ and triggers recompilation if the HEAD commit SHA or package version changes.Manifest Format
lown.toml schema[package]
name = "script-tool"
version = "0.1.0"
executable = "script-tool"
[scripts]
install = "install.sh"
uninstall = "uninstall.sh"