Search and install extra software: App Store / Play wasm with wpm, Sileo debs on jailbroken iOS (rootless/rootful), Termux debs on sideloaded Android. Termux is not jailbreak. Two catalogs, never one list.

Extra software on Wawona comes from two catalogs. They do not share an index. App Store / Play compliance is wasm only. Store wpm never sees .deb. Sileo never installs WASI blobs from /wasm/v1.

Start at repo.wawona.io/search. That page is a chooser. Pick a lane before you search.

LaneWebsiteInstall withWho
Wasm/search/?channel=wasmwpm in the Wawona shellApp Store / Play (store compliance). macOS wpm too.
Sileo debs/search/?channel=debSileo / Zebra, or apt in NewTermJailbroken iOS / iPadOS. Rootless and rootful. Not Termux. Not App Store.
Termux debs/termux/Termux aptSideloaded Android. Not jailbreak. Not Play.

Sileo and Termux share the APT source https://repo.wawona.io/ (Packages). Architecture splits them: iphoneos-arm64 / iphoneos-arm for Sileo, aarch64 for Termux.

Machine APIs stay split: /wasm/v1 for wpm, /Packages for APT. The website lists each catalog. It does not mix them into one results list.

Search on the website

  1. Open repo.wawona.io/search.
  2. Choose App Store / Play wasm or the deb catalog. Bookmarks: /wasm/, /deb/, /jailbreak/ (Sileo iOS), /termux/ (Termux Android). APT source URL stays https://repo.wawona.io/.
  3. Type a name. Expand a card for install commands, digest, and maintainers.
  4. Copy the command for that audience. Do not paste a Sileo URL into wpm, and do not paste a wpm install line into apt.

OpenSearch (browser search) also lands on the chooser so you pick a lane first.

Wasm with wpm (App Store / Play)

Use this path in the store Wawona app (App Store, Play). Packages are WASI bytecode. This is the only extra-software channel that is store-compliant. It is not apt, not Sileo, and not Termux.

  1. Browse /search/?channel=wasm.
  2. In the on-device shell:
wpm search hello
wpm install hello-wasi
wpm list
wasm hello-wasi

Or drop tool.wasm into Wawona Documents (Files.app, iTunes File Sharing, or scp) and run:

wasm ./tool.wasm hello
./tool.wasm hello

Default registry: https://repo.wawona.io/wasm/v1. Same index.json the website reads. Store builds must never probe /jailbreak/, /termux/, or /Packages.

See WASM / WASI and On-device shell.

Sileo debs (jailbroken iOS)

Use this path on a jailbroken iPhone / iPad. These are .deb packages for Sileo / Zebra. Rootless (iphoneos-arm64) and rootful (iphoneos-arm). Optional RootHide (iphoneos-arm64e). Not Termux. Not App Store.

  1. Open repo.wawona.io (the Sileo landing page).
  2. Tap Add to Sileo or Add to Zebra, or add the source by hand:
https://repo.wawona.io/
  1. Refresh sources. Search in Sileo, or browse /search/?channel=deb and filter iphoneos-*.
  2. Install from Sileo. The website card copies apt install <name> for NewTerm.
sudo apt edit-sources
# add: deb https://repo.wawona.io/ stable main

sudo apt update
sudo apt install com.aspauldingcode.hello

Host APT and Mode B IPA extras (Desktop, LockScreen, Swinging Bridge) are Sileo Mode B only. See Mode A and Mode B.

Termux debs (sideloaded Android)

Use this path in sideloaded Termux on Android. These are .deb packages for Termux apt. This is not jailbreak, not Magisk, and not Play Store. Play Wawona still uses wasm + wpm only.

apt edit-sources
# add: deb https://repo.wawona.io/ stable main

apt update
apt install com.aspauldingcode.hello

Bookmark: /termux/. Same APT URL as Sileo. Filter architecture aarch64.

Do not mix

  • One website list with both .wasm and .deb: the chooser forbids it.
  • wpm install of a .deb, or apt install of a wasm package.
  • Teaching store wpm to read /jailbreak/, /termux/, or /Packages.
  • Calling Termux debs jailbreak, or putting Sileo URLs inside the App Store / Play app.

Wasm stays store-safe data. Sileo debs stay jailbroken iOS APT. Termux debs stay sideloaded Android APT. WASM / WASI is the Runtime story. This page is how you find and install software from each audience.