Glowbom OSS was previously called Glowby OSS. Existing projects and transition commands remain supported.
Build anything locally.
Glowbom OSS helps you build production-ready software with coding agents. It is an open source coding agent workflow for real projects. It is built primarily for Glowbom projects, but the workflow can also work with other project structures.
- Make software projects and prototypes production-ready with coding agents
- Use the providers and models already configured in OpenCode
We believe that you should own your code and data. Every line of code Glowbom OSS generates lives on your machine, in standard project files you can open with any editor. No vendor lock-in.
Install the Glowbom CLI:
curl -fsSL https://raw.githubusercontent.com/glowbom/glowbom-oss/main/scripts/install.sh | sudo shFor Windows, we recommend using WSL and running the install command inside Ubuntu.
Then clone the repo and enter it:
git clone https://github.com/glowbom/glowbom-oss.git
cd glowbom-ossGlowbom OSS needs these tools available on your PATH:
Run the built-in environment check and launch Glowbom OSS:
glowbom doctor
glowbom startGlowbom OSS uses your local OpenCode setup for provider access. We recommend signing in to ChatGPT through OpenCode:
opencode auth loginChoose OpenAI, then choose ChatGPT Plus/Pro and finish the browser login. You can use the same OpenCode command to configure another provider instead.
Run those commands from the Glowbom OSS repo root, where backend/ and web/ live side by side.
glowbom start hardens the local stack by default:
- Glowbom OSS services bind to loopback (
127.0.0.1) instead of all interfaces - the backend API requires a per-run bearer token
- the OpenCode bridge runs with
OPENCODE_SERVER_PASSWORD
To view the generated credentials for the current session, start Glowbom OSS with glowbom start --show-local-auth.
If you launch the stack manually, set equivalent env vars yourself:
export GLOWBOM_BIND_HOST=127.0.0.1
export GLOWBOM_SERVER_TOKEN="$(openssl rand -hex 32)"
export OPENCODE_SERVER_PASSWORD="$(openssl rand -hex 32)"Then run the backend with those env vars, and start the web app with:
export VITE_GLOWBOM_SERVER_TOKEN="$GLOWBOM_SERVER_TOKEN"The previous GLOWBY_* variables remain accepted during the rename transition.
- Open
http://localhost:4572 - Load a local project
- Choose the model from your OpenCode setup, or keep its configured default
- Start a refine run
You can build with Glowbom OSS for free. OpenCode can use local models on your computer, free cloud models, or a paid provider account that you configure directly in OpenCode.
If glowbom doctor reports missing tools, install them first and confirm they are available on your PATH:
go version
bun --version
opencode --versionIf any command is not found, restart your terminal first. If it still does not work, add the tool's install location to your PATH or reinstall it using the tool's recommended installer.
On macOS, a common fix is to add the tool's bin directory to your shell profile (usually ~/.zshrc) and then reload it:
# Common PATH fixes on macOS
echo 'export PATH="/usr/local/go/bin:$PATH"' >> ~/.zshrc
echo 'export BUN_INSTALL="$HOME/.bun"' >> ~/.zshrc
echo 'export PATH="$BUN_INSTALL/bin:$PATH"' >> ~/.zshrc
# Add the directory that contains the opencode binary
echo 'export PATH="/path/to/opencode/bin:$PATH"' >> ~/.zshrc
source ~/.zshrcIf you use Bash instead of zsh, update ~/.bash_profile or ~/.bashrc instead.
If you prefer to launch the stack without the CLI, run the backend and web app separately:
cd backend
go run .The backend runs on http://localhost:4569.
cd web
bun install
bun run devThe web app runs on http://localhost:4572.
This repo includes a ready-to-use Glowbom default project in project/.
You can use project/ as your main starting template without logging in to Glowbom.com or downloading a project export first. Just copy the folder, rename it if you want, and start customizing it locally.
The bundled project includes:
project/prototype/- reference design and assetsproject/apple/- Apple app projectproject/android/- Android app projectproject/web/- web app projectproject/glowbom.json- project manifest
If you only need some targets, remove the platform folders you do not want:
- Delete
project/apple/if you do not need Apple platforms - Delete
project/android/if you do not need Android - Delete
project/web/if you do not need web - Keep all of them if you want to build every platform in sync from one Glowbom project
backend/- Go backendcli/- Glowbom command-line tooldocs/- documentation websiteproject/- bundled default Glowbom project templatescripts/- installation scriptsweb/- React + Vite web applegacy/- older Glowby code kept for historical reference