Pre-built Living UI applications for CraftBot. Browse and install instantly from the CraftBot browser interface.
- Open CraftBot browser interface
- Click "Add Living UI" in the sidebar
- Browse the Marketplace tab
- Click "Add" on any app
- Wait for download and installation
- App appears in your sidebar, ready to use
To add a new app to the marketplace:
- Create a folder at the repo root with your app name (e.g.
my-app/) - Build a complete Living UI app (backend + frontend) with a
LIVING_UI.mdspec - Use
{{PORT}},{{BACKEND_PORT}},{{PROJECT_ID}},{{PROJECT_NAME}}placeholders in config - Add your app entry to
catalogue.jsonat the repo root - Submit a pull request
You can build a new Living UI directly with an AI coding agent, without running CraftBot's agent runtime. Two artifacts in this repo make that work:
_template/— empty Living UI scaffold. Copy it (don't edit it) when starting a new app.LIVING_UI_GUIDE.md— full workflow for the agent to follow. It's a port of skills/living-ui-creator/SKILL.md adapted for the no-runtime setting (nosend_message, noliving_ui_notify_ready; verifies viasetup_local.py+pytest+npm run buildinstead).NEW_APP_PROMPT.md— fill-in prompt template you can paste into a new agent session to kick off a build.
Quick start: open NEW_APP_PROMPT.md, fill in your requirement, paste the whole thing into a fresh agent session running in this repo, and the agent will copy _template/, run the Phase 0 questionnaire, build features test-first, and add a catalogue.json entry.
Sibling-layout requirement: LIVING_UI_GUIDE.md references the CraftBot repo's standards via ../CraftBot/... paths, so this repo and the CraftBot repo must live as siblings under the same parent folder for those links to resolve.