Skip to content

mobius-os/app-store

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

79 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

App Store

The in-Möbius browser for discovering, installing, and updating Möbius mini-apps. Lives at github.com/mobius-os/app-store.

What it is

A Möbius mini-app whose job is to install other Möbius mini-apps. It pulls a curated catalog from the mobius-os organization and can also install any public manifest URL — paste the URL, preview the manifest, confirm permissions, install.

The store is meta: it's an app whose Install button hits the atomic POST /api/apps/install endpoint with a manifest URL or manifest preview. The backend fetches the entry file, compiles it, seeds storage, uploads the icon, writes the editable source tree, and registers any cron schedule as one transaction.

How it's installed

The first time a Möbius container boots, the entrypoint script clones github.com/mobius-os/app-store and installs it via the standard manifest install path — same code path users will trigger from inside the store later. After that bootstrap, the store can update itself + install any number of community apps.

See Möbius ticket 061 for the bootstrap details.

The curated catalog

The default catalog is a hardcoded list of mobius-os/app-* repos in index.jsx's CATALOG constant. On Browse-view mount, the store fetches each entry's mobius.json from raw.githubusercontent.com and displays live name/description/version straight from the repo.

Naming convention

Manifest id == repo name minus the app- prefix == lowercased display name; renames set previous_id so installs migrate in place rather than duplicating.

Adding a new curated app

  1. Publish your app as mobius-os/app-<id> (public, MIT or compatible). Repo must contain a valid mobius.json per the manifest spec.
  2. Submit a PR to this repo adding an entry to CATALOG in index.jsx.

If you don't want PR-curation, that's fine too — anyone can install your app from a mobius.json URL using the From URL tab, no PR required.

Permissions

The store requests only manage_apps: true so it can install apps. It does not request cross_app_access — seeding storage into a newly-installed app's own scope is done server-side by the installer, so the store never needs cross-app write. It also does not request share_with_apps (other apps cannot read the store's storage).

License

MIT — see LICENSE.

About

Möbius app store mini-app — discover, install, and update curated apps from inside Möbius

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors