mlclaw 0.4.5 → 0.4.6

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 CHANGED
@@ -1,8 +1,8 @@
1
1
  ARG OPENCLAW_VERSION=2026.7.1
2
2
  ARG OPENCLAW_BASE_IMAGE=ghcr.io/openclaw/openclaw:${OPENCLAW_VERSION}
3
- ARG BROKERKIT_PLUGIN_VERSION=0.3.1
3
+ ARG BROKERKIT_PLUGIN_VERSION=0.3.2
4
4
  ARG BROKERKIT_VERSION=hf-broker/v0.4.0
5
- ARG MLCLAW_RUNTIME_IMAGE=ghcr.io/huggingface/mlclaw:0.4.5-openclaw-2026.7.1
5
+ ARG MLCLAW_RUNTIME_IMAGE=ghcr.io/huggingface/mlclaw:0.4.6-openclaw-2026.7.1
6
6
 
7
7
  FROM golang:1.26.5-bookworm AS hf-broker-build
8
8
  ARG BROKERKIT_VERSION
package/README.md CHANGED
@@ -8,6 +8,10 @@ ML Claw deploys an OpenClaw agent on Hugging Face with durable state in a
8
8
  private Storage Bucket. The default deployment is a private Hugging Face Space
9
9
  with a browser gateway protected by Hugging Face OAuth.
10
10
 
11
+ [ml-intern](https://github.com/huggingface/ml-intern) is Hugging Face's
12
+ open-source ML engineer for reading papers, training models, and shipping
13
+ models.
14
+
11
15
  The browser never receives an OpenClaw gateway token. ML Claw authenticates the
12
16
  signed-in Hugging Face user, then proxies HTTP and WebSocket traffic to
13
17
  OpenClaw on loopback using OpenClaw trusted-proxy auth.
@@ -386,12 +390,6 @@ Local gateways pass the broad credential only to the trusted state-sync
386
390
  supervisor for bucket I/O and to the trusted MCP integration proxy through a
387
391
  protected token file. Neither path passes it to OpenClaw.
388
392
 
389
- ## Related
390
-
391
- [ml-intern](https://github.com/huggingface/ml-intern) is Hugging Face's
392
- open-source ML engineer for reading papers, training models, and shipping
393
- models.
394
-
395
393
  ## Costs
396
394
 
397
395
  - Browser Space gateway: `cpu-basic` is enough for the default browser gateway.
@@ -10348,6 +10348,7 @@ function safeErrorClass(error) {
10348
10348
  }
10349
10349
  function delegatedHeaders(c) {
10350
10350
  c.header("access-control-allow-origin", "null");
10351
+ c.header("access-control-allow-credentials", "true");
10351
10352
  c.header("cache-control", "no-store");
10352
10353
  c.header("vary", "origin");
10353
10354
  c.header("x-content-type-options", "nosniff");
package/dist/mlclaw.mjs CHANGED
@@ -15375,7 +15375,7 @@ import fs12 from "node:fs";
15375
15375
  import path13 from "node:path";
15376
15376
  import { fileURLToPath as fileURLToPath2 } from "node:url";
15377
15377
  var DEFAULT_OPENCLAW_VERSION = "2026.7.1";
15378
- var DEFAULT_BROKERKIT_PLUGIN_VERSION = "0.3.1";
15378
+ var DEFAULT_BROKERKIT_PLUGIN_VERSION = "0.3.2";
15379
15379
  var DEFAULT_BROKERKIT_VERSION = "hf-broker/v0.4.0";
15380
15380
  var DEFAULT_RUNTIME_IMAGE_REPOSITORY = "ghcr.io/huggingface/mlclaw";
15381
15381
  var PACKAGE_METADATA = readPackageMetadata();
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "mlclaw",
3
- "version": "0.4.5",
3
+ "version": "0.4.6",
4
4
  "license": "MIT",
5
5
  "config": {
6
6
  "openclawVersion": "2026.7.1",
7
7
  "brokerkitVersion": "hf-broker/v0.4.0",
8
- "brokerkitPluginVersion": "0.3.1",
8
+ "brokerkitPluginVersion": "0.3.2",
9
9
  "runtimeImageRepository": "ghcr.io/huggingface/mlclaw"
10
10
  },
11
11
  "repository": {