mlclaw 0.4.4 → 0.4.5
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/.agents/skills/mlclaw/SKILL.md +2 -2
- package/Dockerfile +2 -2
- package/README.md +1 -1
- package/dist/mlclaw.mjs +1 -1
- package/package.json +2 -2
|
@@ -25,7 +25,7 @@ An ML Claw deployment has:
|
|
|
25
25
|
- no explicit Space hardware request by default; Hugging Face assigns the
|
|
26
26
|
default free CPU hardware unless `--hardware` or a feature requiring paid
|
|
27
27
|
hardware is used;
|
|
28
|
-
- a prebuilt `ghcr.io/
|
|
28
|
+
- a prebuilt `ghcr.io/huggingface/mlclaw` runtime image by default;
|
|
29
29
|
- Hugging Face OAuth enabled on the Space;
|
|
30
30
|
- automatic Hugging Face MCP and Research Agent integrations authorized by an
|
|
31
31
|
admin-only OAuth step after ordinary Hugging Face sign-in;
|
|
@@ -126,7 +126,7 @@ Hugging Face account. The Space server proxies authenticated browser traffic to
|
|
|
126
126
|
OpenClaw on loopback using trusted-proxy auth. Do not ask the user for an
|
|
127
127
|
OpenClaw gateway token for the browser Space path.
|
|
128
128
|
|
|
129
|
-
Generated Spaces use the prebuilt `ghcr.io/
|
|
129
|
+
Generated Spaces use the prebuilt `ghcr.io/huggingface/mlclaw:<package>-openclaw-<version>`
|
|
130
130
|
image by default. Use `--bundled-runtime` only for development or emergency
|
|
131
131
|
fallbacks where the Space must build all runtime files directly from the
|
|
132
132
|
uploaded Space repository.
|
package/Dockerfile
CHANGED
|
@@ -2,7 +2,7 @@ ARG OPENCLAW_VERSION=2026.7.1
|
|
|
2
2
|
ARG OPENCLAW_BASE_IMAGE=ghcr.io/openclaw/openclaw:${OPENCLAW_VERSION}
|
|
3
3
|
ARG BROKERKIT_PLUGIN_VERSION=0.3.1
|
|
4
4
|
ARG BROKERKIT_VERSION=hf-broker/v0.4.0
|
|
5
|
-
ARG MLCLAW_RUNTIME_IMAGE=ghcr.io/
|
|
5
|
+
ARG MLCLAW_RUNTIME_IMAGE=ghcr.io/huggingface/mlclaw:0.4.5-openclaw-2026.7.1
|
|
6
6
|
|
|
7
7
|
FROM golang:1.26.5-bookworm AS hf-broker-build
|
|
8
8
|
ARG BROKERKIT_VERSION
|
|
@@ -32,7 +32,7 @@ RUN npm ci --no-audit --no-fund && npm run build
|
|
|
32
32
|
|
|
33
33
|
FROM ${OPENCLAW_BASE_IMAGE}
|
|
34
34
|
|
|
35
|
-
LABEL org.opencontainers.image.source="https://github.com/
|
|
35
|
+
LABEL org.opencontainers.image.source="https://github.com/huggingface/mlclaw"
|
|
36
36
|
LABEL org.opencontainers.image.description="ML Claw runtime for OpenClaw on Hugging Face"
|
|
37
37
|
|
|
38
38
|
USER root
|
package/README.md
CHANGED
|
@@ -76,7 +76,7 @@ This creates:
|
|
|
76
76
|
- a private Docker Space for the browser gateway when the account can host it;
|
|
77
77
|
- a private Storage Bucket for OpenClaw state after the Space is accepted;
|
|
78
78
|
- no explicit Space hardware request unless you pass `--hardware`;
|
|
79
|
-
- a Docker Space that starts from the prebuilt `ghcr.io/
|
|
79
|
+
- a Docker Space that starts from the prebuilt `ghcr.io/huggingface/mlclaw` image;
|
|
80
80
|
- Hugging Face OAuth metadata for browser auth, Hugging Face MCP, and Research
|
|
81
81
|
Agent access in the Space README;
|
|
82
82
|
- Space variables, a bucket volume mount for state sync, and separate
|
package/dist/mlclaw.mjs
CHANGED
|
@@ -15377,7 +15377,7 @@ import { fileURLToPath as fileURLToPath2 } from "node:url";
|
|
|
15377
15377
|
var DEFAULT_OPENCLAW_VERSION = "2026.7.1";
|
|
15378
15378
|
var DEFAULT_BROKERKIT_PLUGIN_VERSION = "0.3.1";
|
|
15379
15379
|
var DEFAULT_BROKERKIT_VERSION = "hf-broker/v0.4.0";
|
|
15380
|
-
var DEFAULT_RUNTIME_IMAGE_REPOSITORY = "ghcr.io/
|
|
15380
|
+
var DEFAULT_RUNTIME_IMAGE_REPOSITORY = "ghcr.io/huggingface/mlclaw";
|
|
15381
15381
|
var PACKAGE_METADATA = readPackageMetadata();
|
|
15382
15382
|
var PACKAGE_VERSION = packageString("version", "unknown");
|
|
15383
15383
|
var OPENCLAW_VERSION = packageConfigString("openclawVersion", DEFAULT_OPENCLAW_VERSION);
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mlclaw",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.5",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"config": {
|
|
6
6
|
"openclawVersion": "2026.7.1",
|
|
7
7
|
"brokerkitVersion": "hf-broker/v0.4.0",
|
|
8
8
|
"brokerkitPluginVersion": "0.3.1",
|
|
9
|
-
"runtimeImageRepository": "ghcr.io/
|
|
9
|
+
"runtimeImageRepository": "ghcr.io/huggingface/mlclaw"
|
|
10
10
|
},
|
|
11
11
|
"repository": {
|
|
12
12
|
"type": "git",
|