LAPSUS is a small local app — it sits in front of the model you already run, and joins you to the community network. Packaged one-click downloads for macOS, Windows and Linux are on the way; until then it runs from source.
The agent app is open and runs locally with Elixir while packaged builds are prepared:
# Run from source — needs Elixir + Rust.
git clone https://github.com/pythononwheels/lapsus.git
cd lapsus && mix deps.get
LAPSUS_COORDINATOR_URL=wss://lapsus.pyrates.io mix lapsus.app # opens the local app
# Or a self-contained binary (bundles the runtime, defaults to the live
# network — no Elixir needed to run it):
MIX_ENV=prod mix release lapsus
LAPSUS_RUN=1 _build/prod/rel/lapsus/bin/lapsus start
The app talks to the community coordinator at wss://lapsus.pyrates.io. Prompts
and answers never pass through it — they go directly peer to peer.