@beastmode-develeap/beastmode 0.1.36 → 0.1.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -7318,7 +7318,13 @@ function generateComposeYaml(tag) {
7318
7318
  - ./config:/app/config
7319
7319
  - ./runs:/app/runs
7320
7320
  - ./daemon/logs:/app/daemon/logs:ro
7321
- - \${HOME}/.claude:/root/.claude:ro
7321
+ # Claude credentials for the chat feature. Target /home/appuser/.claude
7322
+ # matches the ui image's USER appuser (cli/Dockerfile sets HOME to
7323
+ # /home/appuser); the entrypoint restores .claude.json from the
7324
+ # newest backup in this dir at startup so chat works across container
7325
+ # restarts. Pre-2026-04-15 this used /root/.claude, which silently
7326
+ # broke chat because appuser couldn't read those files.
7327
+ - \${HOME}/.claude:/home/appuser/.claude:ro
7322
7328
  depends_on:
7323
7329
  board:
7324
7330
  condition: service_healthy
@@ -7337,6 +7343,15 @@ function generateComposeYaml(tag) {
7337
7343
  - BEASTMODE_ROOT=/app
7338
7344
  - BEASTMODE_BOARD_URL=http://board:8080
7339
7345
  volumes:
7346
+ # Factory state (projects, extensions, deploy strategies). Shared
7347
+ # with the ui container so Settings UI edits AND daemon-side
7348
+ # template seeding (from project-templates/) both land in the same
7349
+ # bind-mounted location. Pre-2026-04-15 this mount was missing
7350
+ # from the daemon service, which silently caused the daemon's
7351
+ # template-seeding logic to write to ephemeral in-container
7352
+ # storage \u2014 the seeded files were invisible to the ui and lost
7353
+ # on restart.
7354
+ - ./.beastmode:/app/.beastmode
7340
7355
  # Daemon config files. Mounted from the host so Settings UI writes
7341
7356
  # (to beastmode.docker.json) are picked up on daemon restart without
7342
7357
  # rebuilding the image.