mulmoclaude 1.13.0 → 1.13.2

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.
Files changed (36) hide show
  1. package/Dockerfile.sandbox +7 -1
  2. package/client/assets/{PluginScopedRoot-BESZE9iW.js → PluginScopedRoot-BAcowr3C.js} +9 -9
  3. package/client/assets/index-CikuUgRu.css +2 -0
  4. package/client/assets/{index-BE-0FoQi.js → index-DqCPJNcf.js} +219 -219
  5. package/client/index.html +3 -3
  6. package/package.json +11 -11
  7. package/server/agent/activeTools.ts +5 -2
  8. package/server/agent/backend/claude-code.ts +75 -28
  9. package/server/agent/brokerReadiness.ts +93 -0
  10. package/server/agent/config.ts +82 -9
  11. package/server/agent/index.ts +40 -6
  12. package/server/agent/mcp-server.ts +30 -0
  13. package/server/agent/skillEvents.ts +22 -0
  14. package/server/agent/webPush.ts +94 -18
  15. package/server/api/routes/agent.ts +47 -7
  16. package/server/api/routes/mcpBrokerReady.ts +100 -0
  17. package/server/build/mcp-server.mjs +482 -479
  18. package/server/events/collection-change.ts +18 -8
  19. package/server/index.ts +15 -0
  20. package/server/remoteHost/handlers/listAccountingBooks.ts +20 -3
  21. package/server/remoteHost/session.ts +22 -0
  22. package/server/system/docker.ts +91 -15
  23. package/server/system/env.ts +4 -0
  24. package/server/system/logger/config.ts +39 -0
  25. package/server/system/logger/formatters.ts +11 -2
  26. package/server/system/logger/index.ts +1 -0
  27. package/server/system/logger/types.ts +5 -0
  28. package/server/system/sandboxImageInfo.ts +147 -0
  29. package/server/workspace/chat-index/indexer.ts +25 -13
  30. package/server/workspace/collections/configure.ts +4 -1
  31. package/server/workspace/memory/migrate.ts +4 -1
  32. package/src/composables/collections/uiHost.ts +69 -3
  33. package/src/config/apiRoutes.ts +9 -0
  34. package/src/config/pubsubChannels.ts +33 -2
  35. package/src/utils/id.ts +2 -2
  36. package/client/assets/index-CbrGF_JV.css +0 -2
@@ -89,7 +89,13 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
89
89
  less \
90
90
  && rm -rf /var/lib/apt/lists/*
91
91
 
92
- RUN npm install -g @anthropic-ai/claude-code tsx
92
+ # Resolved on the host at build time and recorded as an image label, so "which
93
+ # CLI is in this image" is answerable without running it (#2842). Naming the
94
+ # exact version also invalidates this layer when the CLI moves, which a bare
95
+ # `latest` does not — a rebuild would otherwise reuse a cached CLI. The default
96
+ # keeps a plain `docker build -f Dockerfile.sandbox .` working.
97
+ ARG CLAUDE_CODE_VERSION=latest
98
+ RUN npm install -g @anthropic-ai/claude-code@${CLAUDE_CODE_VERSION} tsx
93
99
 
94
100
  COPY sandbox-entrypoint.sh /sandbox-entrypoint.sh
95
101
  RUN chmod +x /sandbox-entrypoint.sh