@creative567145 Thanks, that log was enough to identify it. This is a different issue from the earlier gateway status detection bug.
The fresh install was hanging before supervisor started because start.sh ran:
npx agent-browser install
without forcing non-interactive mode. On a new /app/data volume, npx prompts with “Ok to proceed? (y)”, but Cloudron has no TTY there, so startup never reaches supervisor and port 8000 never binds.
I pushed package version 0.4.32 with the fix:
npm_config_yes=true npx --yes agent-browser install
So fresh installs should no longer block at that prompt. Existing installs where the browser runtime is already seeded were likely unaffected, which is why this showed up on a clean installation.