This repository contains the Möbius product site and Möbius Launch. It also publishes the app catalog and documentation for people building Möbius apps.
Launch Möbius · Browse apps · Build an app · Platform source
Möbius is a community-built AGI app platform. A capable coding agent can build an app beside the conversation, then leave it in the same workspace where you use it.
Apps are the main surface. Personalization carries useful context, preferences, files, and themes across the workspace. Memory and Reflection help turn repeated friction into a better default, a skill, or an app change.
Möbius saves context and working patterns so the next task starts with more of what it needs.
Editor keeps the files behind your apps close at hand. Browse the project and change its source on a computer. Open the same code on your phone without setting up another development environment.
![]() |
![]() |
| Desktop: browse files, inspect repository state, and edit the source. | Phone: browse the same project and follow a change wherever you are. |
Community apps cover work, learning, planning, and reflection. Install one as it is, inspect its repository, or change it for your own workflow.
![]() |
![]() |
| Tandem: read generated material in two languages at your chosen level. | Beat Machine: sketch a beat, shape the sound, and add your own recordings. |
The current catalog includes tools for notes, tasks, memory, news, skills, reflection, development, and more.
Themes control how the workspace looks. Memory connects useful notes, decisions, preferences, and projects so other apps and agents can draw on them. Reflection can flag a pattern that keeps costing time.
![]() |
![]() |
| Memory: see how the context you keep is connected. | Themes: make the whole workspace feel like your own. |
The platform grows through work inside real apps:
- Build an app for a problem in your own workflow
- Notice a pattern that other apps could reuse
- Review and test the change with the community
- Carry the useful part into the platform
Personal changes can stay private. Reusable work can go back to the community as an app, skill, or platform capability.
Möbius Launch provisions infrastructure without proxying the personal workspace:
- Sign in to Möbius Launch
- Connect a Railway workspace you own
- Review and create the deployment
- Open, inspect, update, or remove the instance from the launcher
Conversations, files, apps, databases, and agent activity stay inside the deployed Möbius instance. The launcher stores only the account and infrastructure data needed to provision and manage that instance. See the data transparency page for the current field-level description.
index.htmlandstyle.css: product landing pageassets/product/: product screenshots used by the site and READMEapps/: generated catalog and app detail pagesspec/anddocs/: manifest reference and contributor documentationbuild/: catalog generation scripts and templatesservices/mobius_launch/: Flask service for sign-in, Railway connection, provisioning, and deployment managementservices/deploy/: Caddy and Docker Compose production stack
Edit the landing page and documentation directly. The .github/workflows/build-site.yml workflow regenerates apps/index.html and each apps/<id>.html page from the curated repositories' mobius.json manifests. It runs nightly and after pushes to main.
To preview a catalog change:
- Add the app repository slug to
CURATED_REPOSinbuild/build_apps.py - Run
python build/build_apps.py - Open
apps/index.htmlin a local server
An app repository can request an immediate refresh by dispatching the manifest-changed event. The workflow needs a fine-grained SITE_DISPATCH_TOKEN with contents: write access to this repository.
on:
push:
branches: [main]
paths: [mobius.json]
jobs:
refresh-site:
runs-on: ubuntu-latest
steps:
- run: |
curl -fsS -X POST \
-H "Authorization: Bearer ${{ secrets.SITE_DISPATCH_TOKEN }}" \
-H "Accept: application/vnd.github+json" \
https://api.github.com/repos/mobius-os/mobius-os.github.io/dispatches \
-d '{"event_type":"manifest-changed"}'The nightly workflow remains the default path when an app repository does not dispatch the event.
Read Build a Möbius app for the manifest schema, storage application programming interface (API), theme tokens, sandbox constraints, and navigation protocol. A Möbius app is an ordinary public repository with a mobius.json manifest, so people and agents can inspect the same contract.
For launch-service deployment and operations, read Deploy Möbius Launch.







