High-performance Balatro seed search engine using JAML (JSON-Augmented Markup Language) and native C# filters. Vectorized, multi-threaded, and AOT-compilable for desktop and browser.
This repository is the MotelyJAML fork (from tacodiva/Motely) used by Balatro Seed Oracle as a git submodule for all seed searching. BSO is an Avalonia UI application that AOT compiles to desktop and browser; Motely’s browser WASM (AOT) support unblocks the BSO browser build.
- Motely – Core library: JAML/JSON parsing, filter execution, seed analysis, SIMD vectorization
- Motely.Orchestration – Search orchestration, native filter executor, batch search
- motely-wasm – npm package (Bootsharp): JS loader + Vite/Next.js plugins for in-browser search
- Motely.CLI – Command-line interface (JAML/JSON filters, seed analysis)
- Motely.API – Optional HTTP API and static UIs
- Motely.TUI – Terminal UI (optional)
- Motely.DistributedWorker –
MotelyWorkerexecutable: claims blocks from a Jammy/Seed Finder pool API and submits results - JamlFilters/ – Example and test JAML filter files
Connects to POST /api/search/helper on a deployed Jammy app (e.g. seedfinder.app). Requires an active distributed search on the server so there is work in the pool.
# From this repo root
dotnet run --project Motely.DistributedWorker/Motely.DistributedWorker.csproj -- --pool https://www.seedfinder.appPublish (AOT): dotnet publish Motely.DistributedWorker/Motely.DistributedWorker.csproj -c Release -r linux-x64 (or win-x64). Run the MotelyWorker binary from the publish folder with the same --pool flag.
--threads, --worker-id, --filter, --local-db: see the Community worker (MotelyWorker) section in the Jammy README (consumer app docs).
dotnet run -p Motely.CLI -- --helpSee project docs and Motely.CLI for full CLI options (filters, batch size, output format, etc.).
Balatro Seed Oracle (BSO) depends on this repo as a submodule at external/Motely. After cloning BSO:
git submodule update --init --recursiveBSO’s Avalonia app then uses Motely for:
- Desktop: in-process .NET search (AOT optional)
- Browser:
motely-wasm(Bootsharp WASM bundle) for in-browser JAML search and seed analysis
- motely-wasm – Bootsharp-powered npm package consumed by React/Next.js/Vite (or any JS app) for in-browser search.
See motely-wasm/README.md for installation and Vite/Next.js setup.
See LICENSE in this repository.