Glowbom OSS
Glowbom OSS was previously called Glowby OSS. Existing projects and transition commands remain supported.
Build software like writing a book.
An open, local workflow where every project has a Project Book that people and coding agents can understand.
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.
What It Does
- Make software projects and prototypes production-ready with coding agents
- Use the providers and models already configured in OpenCode
- Try Cursor CLI as an optional coding agent for local builds
glowbomimages: and
legacy glowbyimages: prefixes. The singular forms glowbomimage: and
glowbyimage: also remain supported. They use the same approval and image
processing flow; existing projects do not need to be renamed.
Vision
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
Install the Glowbom CLI:
curl -fsSL https://raw.githubusercontent.com/glowbom/glowbom-oss/main/scripts/install.sh | sudo sh
For 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-oss
Quickstart
Glowbom OSS needs these tools available on your PATH:
- Go
- Bun
- OpenCode or Cursor CLI
glowbom doctor
glowbom start
Glowbom OSS uses your local OpenCode setup for provider access. We recommend signing in to ChatGPT through OpenCode:
opencode auth login
Choose 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.
Cursor agent (preview)
Install Cursor CLI on the computer
running the backend, then sign in using cursor-agent login. Check your login
with cursor-agent status.
In Glowbom OSS, open Settings, choose Cursor (preview) under **Coding
agent**, and refresh the checks. Leave the model blank to use Cursor's default,
or enter a model ID from cursor-agent models. Your Cursor account handles access
and usage. Glowbom does not copy its login tokens.
Glowbom looks for cursor-agent on PATH and in ~/.local/bin. If your install
uses the command agent, or a different location, set GLOWBOM_CURSOR_BIN to its
full executable path before starting the backend.
This integration supports streamed build progress, staged instructions and attachments, changed-file reporting, history, and continuing a Cursor session. Switching agents starts a separate session. Stop cancels the running CLI process group on macOS and Linux; edits already made remain in the project.
Build runs Cursor in headless mode with --force, allowing file edits and shell
commands without individual confirmation dialogs. Cursor's local permission and
workspace trust settings still apply. Open the project in Cursor CLI first if it
requires workspace trust. Automatic Glowbom media generation and interactive
OpenCode approval dialogs are not part of Cursor runs. Answer any questions with
a follow-up build.
The adapter is tested with a simulated CLI. A real Cursor account run still needs verification before this preview can be considered dependable.
Security Defaults
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
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.
Start Using Glowbom OSS
- Open
http://localhost:4572 - Load a local project
- Choose the model from your OpenCode setup, or keep its configured default
- Start a refine run
Cost
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.
Requirements And Setup
If glowbom doctor reports missing tools, install them first and confirm they are available on your PATH:
go version
bun --version
opencode --version
If 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 ~/.zshrc
If you use Bash instead of zsh, update ~/.bash_profile or ~/.bashrc instead.
Manual fallback
If you prefer to launch the stack without the CLI, run the backend and web app separately:
Backend
cd backend
go run .
The backend runs on http://localhost:4569.
Web app
cd web
bun install
bun run dev
The web app runs on http://localhost:4572.
Using the Bundled Default Project
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
- 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
Project Structure
An optional Buzz member lookup preview is available in Settings.
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