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.
- package/Dockerfile.sandbox +7 -1
- package/client/assets/{PluginScopedRoot-BESZE9iW.js → PluginScopedRoot-BAcowr3C.js} +9 -9
- package/client/assets/index-CikuUgRu.css +2 -0
- package/client/assets/{index-BE-0FoQi.js → index-DqCPJNcf.js} +219 -219
- package/client/index.html +3 -3
- package/package.json +11 -11
- package/server/agent/activeTools.ts +5 -2
- package/server/agent/backend/claude-code.ts +75 -28
- package/server/agent/brokerReadiness.ts +93 -0
- package/server/agent/config.ts +82 -9
- package/server/agent/index.ts +40 -6
- package/server/agent/mcp-server.ts +30 -0
- package/server/agent/skillEvents.ts +22 -0
- package/server/agent/webPush.ts +94 -18
- package/server/api/routes/agent.ts +47 -7
- package/server/api/routes/mcpBrokerReady.ts +100 -0
- package/server/build/mcp-server.mjs +482 -479
- package/server/events/collection-change.ts +18 -8
- package/server/index.ts +15 -0
- package/server/remoteHost/handlers/listAccountingBooks.ts +20 -3
- package/server/remoteHost/session.ts +22 -0
- package/server/system/docker.ts +91 -15
- package/server/system/env.ts +4 -0
- package/server/system/logger/config.ts +39 -0
- package/server/system/logger/formatters.ts +11 -2
- package/server/system/logger/index.ts +1 -0
- package/server/system/logger/types.ts +5 -0
- package/server/system/sandboxImageInfo.ts +147 -0
- package/server/workspace/chat-index/indexer.ts +25 -13
- package/server/workspace/collections/configure.ts +4 -1
- package/server/workspace/memory/migrate.ts +4 -1
- package/src/composables/collections/uiHost.ts +69 -3
- package/src/config/apiRoutes.ts +9 -0
- package/src/config/pubsubChannels.ts +33 -2
- package/src/utils/id.ts +2 -2
- package/client/assets/index-CbrGF_JV.css +0 -2
package/Dockerfile.sandbox
CHANGED
|
@@ -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
|
-
|
|
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
|