GordoGitHubCursor AgentLuke The DevElias PfefferClaude Sonnet 4.6copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>Greg Clarkiamlukethedev
4e552967d9 [PRIORITY][FEAT] merge runtime profiles, office systems, doctor, and vera lane convergence (#109)
* fix: include kanbanImmersive in immersiveOverlayActive calculation

When Kanban board is open, HUD elements (camera preset buttons, edit toolbar, overlays) should be suppressed. The kanbanImmersive flag was defined but not included in the immersiveOverlayActive condition, causing HUD elements to remain visible.

This fix adds kanbanImmersive to the immersiveOverlayActive calculation so HUD elements are properly hidden when the Kanban board is open.

Co-authored-by: Luke The Dev <iamlukethedev@users.noreply.github.com>

* Fix: Hide mini status bar when Kanban immersive overlay is open

Wraps the bottom-left mini status bar (showing agent stats, vibe score, and
control hints) with !immersiveOverlayActive check to match the behavior of
other HUD elements like camera controls and toolbar.

This ensures the status bar is properly hidden when the Kanban board or any
other immersive overlay is active, maintaining a clean immersive experience.

Co-authored-by: Luke The Dev <iamlukethedev@users.noreply.github.com>

* chore: drop unrelated package-lock line from branch

Co-authored-by: Luke The Dev <iamlukethedev@users.noreply.github.com>

* universal-backend-plan

* backend-neutral runtime seam

* package.json update

* feat: add Hermes gateway adapter as alternative to OpenClaw

Adds a WebSocket adapter that lets Claw3D connect to a Hermes AI agent
runtime without any changes to the frontend. The adapter implements the
full Claw3D gateway protocol and bridges it to the Hermes HTTP API.

Changes:
- server/hermes-gateway-adapter.js: WebSocket bridge implementing the
  Claw3D gateway protocol against the Hermes HTTP API. Supports all
  core methods (agents, sessions, chat streaming, cron, config, files,
  approvals) and multi-agent orchestration via spawn_agent/delegate_task
  tools. Persists conversation history to ~/.hermes/clawd3d-history.json.
- scripts/clawd3d-start.sh: All-in-one startup script that launches
  Hermes, the adapter, and the Next.js dev server with auto port
  conflict resolution. Alias as `claw3d` for convenience.
- src/features/office/hooks/useCronAgents.ts: Hook that polls the
  gateway for cron-scheduled agents and surfaces them in the 3D office.
- package.json: adds `hermes-adapter` npm script
- .env.example: documents Hermes config vars
- docs/hermes-gateway.md: setup guide and protocol reference

Usage:
  npm run hermes-adapter   # start adapter (connect to http://localhost:8642)
  npm run dev              # start Claw3D, point browser at localhost:3000
  # or: bash scripts/clawd3d-start.sh  (starts everything automatically)

Both OpenClaw and Hermes are supported simultaneously — the gateway URL
in NEXT_PUBLIC_GATEWAY_URL determines which backend Claw3D connects to.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* feat: add read_agent_context tool for cross-agent coordination

Agents can now read each other's conversation history via the
read_agent_context tool, enabling the orchestrator to check what
a sub-agent has done before re-delegating work.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* feat: wire Hermes office UX and role-aware runtime updates

* feature update - demomode & hermes adapter

* fix lint blockers

* lintfix #2

* fix: stabilize retro office camera preset callbacks

* Initial plan

* fix: stabilize retro office overview preset hooks

Agent-Logs-Url: https://github.com/gsknnft/Claw3D/sessions/9cc71555-591e-44cf-aec4-25affbdcb405

Co-authored-by: gsknnft <123185582+gsknnft@users.noreply.github.com>

* feat: add truthful backend selection, Hermes adapter hardening, and demo gateway mode

* fix: address bugbot review and finalize backend selection

* fixed - onboarding and hermes calls

* office systems roadmap

* feat specs in docs

* specs ready

* feat: continue custom runtime seam and gateway alignment

* custom lane wired

* feat: add custom runtime provider path and office runtime alignment

* office_sys prep

* tighten multi-floor runtime spec

* multi-floor v1 implementation

* moved floor nav

* runtime architecture specs

* claw3doctor specs

* feat: add first pass claw3doctor diagnostics

* docs: align roadmap with runtime profiles and office systems priorities

* feat: expand claw3doctor provider diagnostics and json output

* feat: improve claw3doctor formatting and multi-runtime diagnostics

* feat: formalize runtime profile resolution

* feat: expand claw3doctor profile health diagnostics

* feat: polish claw3doctor output and tunnel remediation

* feat: add claw3doctor profile scoping and failure classification

* docs: define claw3doctor v1 boundary and v2 backlog

* test: fix stale claw3doctor branch expectations

* test: fix stale expectations on claw3doctor branch

* fix(claw3doctor): scope provider-specific checks to --profile / --all-profiles flags

PR #101 finding:
- Medium: --profile <adapter> and --all-profiles only scoped the profile health
  probe loop; OpenClaw/Hermes/Demo/Custom check blocks still ran based on the
  selected adapter type in runtimeContext, making CLI output misleading.

Fix: introduce adapterInScope(adapterType, defaultBehavior) helper in main().
  - --profile <adapter>  -> only that adapter's checks run
  - --all-profiles       -> all adapter checks run
  - no flag              -> falls back to existing shouldRun* predicate (unchanged)

Also:
- Export parseDoctorArgs from claw3doctor-core.mjs (removed duplicate in script)
- Add test suites: parseDoctorArgs flag parsing (6 cases) and
  adapterInScope scoping semantics (4 cases) — 10 new tests, all green

* fix(office): persist per-floor selectedAgentId on focusLocalAgent + wire officeFloors runtime state

PR #96 findings:
- Medium #1: focusLocalAgent now writes selectedAgentId back to floorRosterCache
  so handleSelectFloor restores the agent the user last picked on each floor
  rather than snapping back to the hydration-time suggestion.
- Medium #2: Add useEffect that calls settingsCoordinator.schedulePatch with
  officeFloors[activeFloorId] patch on every status/gatewayUrl change, writing
  status, gatewayUrl, lastKnownGoodAt, lastErrorCode, and lastErrorMessage so
  the persisted floor runtime state actually tracks live connection transitions.

* fix unkept changes

* fix audit findings - cross-floor misattribution & officefloors silent drops

* pushed changes

* multi-agentic runtime & chat bubble fix

* partial parity with office-sys-next

* claw3doctor parity

* partial parity with v_lane

* merged feat/office-systems-next -> merge_sys

* parity across PR branches

* rm *.orig postmerge

* full parity across unmerged PRs & main

* fix lukes findings

* fix findings - bigger chatbox

* real local upload path

* fixed file upload, MIME integgration

* minor fix

* fix lukess findings

* deleted *.orig

* three bugs fixed - gatewayclient, coord, claw3doctor

* address findings

* fix lukes findings

* fix findings #2

* fix: ignore temporary skill-agent names during identity recovery

* fix: preserve stable identity names during temp-name recovery

* fix(gateway): correct disconnect race and token-blanking on adapter switch

- disconnect() now checks actual connection status rather than selectedAdapterType,
  which may already reflect the target adapter when the effect fires. Prevents stale
  WebSocket clients from persisting after switching to local/claw3d/custom backends.
- setSelectedAdapterType() falls back to loadedGatewaySettings.current.profiles token
  when the in-memory adapterProfiles entry has an empty token (sanitized API form).
  Prevents saved tokens from being cleared when switching between backends.

Closes Luke findings: High (stale gateway on floor switch), Medium (token blanking).

Authored-By: GSKNNFT

* feat(gateway): loopback bypass, control-ui remap, operator.read scope, 75ms connect

Cherry-picked clean additions from pr/gsknnft-2 (fix/reduce-gateway-connect-delay):

- proxy-url.ts: resolveStudioProxyGatewayUrl() now accepts optional upstreamGatewayUrl;
  loopback hosts (localhost/127.0.0.1/::1) bypass the Studio proxy and connect directly
- gateway-proxy.js: remap unauthenticated openclaw-control-ui connections to webchat-ui
  client ID so OpenClaw doesn't reject them as unknown clients
- GatewayBrowserClient.ts + nodeGatewayClient.ts: add operator.read scope to both
  browser and Node gateway clients for expanded access control
- GatewayBrowserClient.ts: reduce socket open→connect delay from 750ms to 75ms

GatewayClient.ts rewrites from that PR were intentionally excluded — they would
regress our disconnect-race fix, token-blanking fix, broken-regex fix, local/claw3d
adapter support, adapterProfiles type export, and private envelope path.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>

* fix(floor-nav): show only available floors per active adapter; block hang on unconfigured runtime

- floors.ts: add paperclip to FloorProvider; add listAvailableFloorsForAdapter() —
  lobby always visible, runtime floors only shown when their provider matches the
  active adapter, so demo-only users only see Lobby
- OfficeFloorNav: accept activeAdapterType prop, filter floor list via
  listAvailableFloorsForAdapter(); fall back displayActiveFloorId to lobby if current
  floor is no longer in the available set
- OfficeScreen: pass selectedAdapterType to OfficeFloorNav; add guard in
  handleSelectFloor — bail back to lobby immediately when a runtime floor has no
  gateway URL configured, preventing the connect-hang limbo state

Authored-By: GSKNNFT

* hardening: drop unsafe-eval in production CSP; add TRUSTED_PROXY IP resolution

next.config.ts:
- unsafe-eval removed from production script-src (Next.js dev/HMR needs it, but
  production build does not; React and Three.js make no use of eval)
- connect-src intentionally kept broad with note: gateway URLs are user-configured
  at runtime, cannot be enumerated at build time

server/access-gate.js:
- Add resolveClientIp() helper: when TRUSTED_PROXY=1 env var is set, prefer the
  first value of X-Forwarded-For for rate-limiter keying (correct behavior behind
  nginx/Caddy/Vercel edge). Without the flag, remoteAddress is used (safe default
  for direct exposure — prevents X-Forwarded-For spoofing by untrusted clients).

Authored-By: GSKNNFT

* fix(security): remove upstream tokens from browser API; propagate abort to custom runtime

HIGH — /api/studio: strip gatewayPrivate and localGatewayDefaultsPrivate from GET and
PUT responses. Upstream tokens must not cross the browser API boundary. The Studio
proxy (server/gateway-proxy.js) already injects the server-side token into connect
frames when the browser sends an empty token, so the browser never needed raw tokens.
GatewayClient.ts and OfficeScreen.tsx updated to work from sanitized public settings only.

MEDIUM — /api/runtime/custom route: pass request.signal to the upstream fetch() call.
Client abort (e.g. hitting Stop) now cancels the upstream runtime request instead of
leaving it running after the browser fetch resolves.

Authored By: GSKNNFT

* fix(security): preserve stored token through empty-token UI state; handle non-JSON health responses

GatewayClient.ts — autosave effects no longer overwrite persisted gateway tokens with
empty strings. When the in-memory token is empty (proxy handles auth server-side),
the patch omits the token field (undefined) so mergeGatewaySettings/mergeGatewayProfiles
treats it as "leave unchanged". adapterProfiles updater also preserves the existing
stored token when the new token is empty, preventing floor-switch from erasing tokens.

runtime/custom/http.ts — requestCustomRuntime() checks the response Content-Type before
calling response.json(). Non-JSON responses (e.g. plain-text /health "OK") are returned
as-is instead of throwing a JSON parse error, making the custom/local/claw3d health
probe path reliable for runtimes that return plain text.

Authored By: GSKNNFT

* fix(bug): avoid overwriting stored tokens with an empty UI value

GatewayClient.ts:944 → token: "" || undefined = undefined → omitted from patch
mergeGatewayConnectionState: patch.token === undefined → patchedToken = undefined → nextToken = undefined || current?.token ?? "" = "abc123" ✓

scenarionn- user explicitly clears token (empty string patch):

mergeGatewayConnectionState: patchedToken = "" → nextToken = "" || current?.token ?? "" = falls back to existing stored token

Authored By: GSKNNFT

* fix ongoing findings issue

* test: update gateway connection persistence expectations

Co-authored-by: Luke The Dev <iamlukethedev@users.noreply.github.com>

* fix: tighten ts.net hostname matching in doctor

Co-authored-by: Luke The Dev <iamlukethedev@users.noreply.github.com>

* chore(release): prepare v0.1.4

Pin in-repo app version to 0.1.4 to match the planned GitHub release
tag, and document the convergence release in CHANGELOG.md with verified
0.1.3 and 0.1.4 entries covering runtime profiles, multi-floor offices,
remote messaging/handoffs, file uploads, security hardening, and the
claw3doctor diagnostics CLI.

Made-with: Cursor

---------

Co-authored-by: Cursor Agent <cursoragent@cursor.com>
Co-authored-by: Luke The Dev <iamlukethedev@users.noreply.github.com>
Co-authored-by: Elias Pfeffer <eliaspfeffer@gmail.com>
Co-authored-by: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
Co-authored-by: Greg Clark <greg.clark@gmail.com>
Co-authored-by: iamlukethedev <lucas.guilherme@smartwayslfl.com>
2026-04-23 18:29:20 -05:00
2026-04-07 17:53:38 -05:00
2026-03-19 23:14:04 -05:00
2026-04-07 17:53:38 -05:00
2026-03-17 23:38:53 -05:00
2026-03-17 23:37:48 -05:00
2026-03-19 23:14:04 -05:00
2026-03-17 23:42:14 -05:00
2026-03-23 11:44:25 -05:00
2026-03-19 23:14:04 -05:00
2026-03-19 23:14:04 -05:00
2026-03-19 23:14:04 -05:00
2026-03-17 23:37:20 -05:00
2026-03-19 23:14:04 -05:00
2026-03-17 23:40:08 -05:00
2026-03-19 23:14:04 -05:00
2026-03-19 23:14:04 -05:00
2026-03-19 23:14:04 -05:00
2026-03-19 23:14:04 -05:00
2026-03-19 23:14:04 -05:00
2026-03-19 23:14:04 -05:00
2026-03-17 23:36:19 -05:00
2026-03-19 23:14:04 -05:00

Claw3D

A 3D workspace for AI agents.

Unofficial project: Claw3D is an independent community project and is not affiliated with, endorsed by, or maintained by the OpenClaw team. OpenClaw is a separate project, and this repository is not the official OpenClaw repository.

Claw3D turns AI automation into a visual workplace where agents collaborate, review code, run tests, train skills, and execute tasks inside a shared 3D environment.

Built and maintained by LukeTheDev. Follow on X: @iamlukethedev.

Think of it as:

An office for your AI team.

What you can do with Claw3D

• Watch your AI agents work in real time • Run standups with agents connected to GitHub and Jira • Review pull requests from inside the office • Monitor QA pipelines and logs • Train agents in the gym to develop new skills • Reset sessions and clean context with the janitor system

Instead of managing automation through dashboards and logs…

You walk through your AI workplace.

Vision · Architecture · Contributing · Security

What Claw3D Is

Claw3D is the visualization and interaction layer.

Today it can sit on top of:

  • OpenClaw through the existing gateway flow
  • Hermes through the bundled WebSocket adapter
  • a direct HTTP custom runtime provider for orchestrator-backed stacks
  • a built-in demo gateway for office exploration without a real agent framework

In practical terms, this app gives you:

  • a live /office retro-office environment where agents appear as workers moving through a shared 3D world
  • an /office/builder surface for editing and publishing office layouts
  • a gateway-first architecture that keeps runtime state in the connected backend while Studio stores local UI preferences
  • a backend-neutral runtime seam inside Studio so additional providers can be integrated without rewriting the whole UI

This repository does not build the upstream runtimes themselves. It is the frontend, Studio, and adapter/proxy layer that connects to a runtime speaking the Claw3D gateway protocol.

Why It Exists

AI systems are becoming more capable, but their work is still usually hidden behind logs, terminal output, and dashboards.

Claw3D exists to make agent systems visible:

  • inspect what agents are doing in real time
  • monitor runs, approvals, history, and activity from one place
  • interact with agents through chat and immersive UI surfaces
  • move toward a world where AI systems are understandable through space, motion, and presence

For the broader direction of the project, see VISION.md.

What Exists Today

The current app already includes a substantial Claw3D surface:

  • Fleet management and agent chat with runtime updates streamed from the gateway.
  • Agent creation, settings, session controls, approvals, and gateway-backed configuration editing.
  • A 3D retro office with desks, rooms, navigation, animations, and event-driven activity cues.
  • Immersive operational spaces for standups, GitHub review flows, analytics, and system monitoring.
  • Local Studio persistence for gateway connection details, focused-agent preferences, desk assignments, office state, and related UI settings.
  • A custom same-origin WebSocket proxy so the browser talks to Studio, and Studio talks to the upstream OpenClaw Gateway.

Quick Start

Requirements:

  • Node.js 20+ recommended.
  • npm 10+ recommended.
  • One of:
    • a working OpenClaw installation with a reachable Gateway URL and token
    • Hermes with the bundled adapter
    • the built-in demo gateway for local exploration

Prerequisite:

  • Claw3D does not install or build OpenClaw or Hermes for you.
  • Before starting Claw3D against a real backend, make sure your chosen runtime is already running and that you know the gateway URL and token Studio should use.
  • For a no-framework local office demo, run the bundled demo gateway instead.
  • If you need a full cross-machine setup guide (OpenClaw + Tailscale + Claw3D), follow TUTORIAL.md.

Run from source:

git clone <your-public-repo-url> claw3d
cd claw3d
npm install
cp .env.example .env
npm run dev

Then open http://localhost:3000 and configure the gateway URL and token in Studio. Studio now also persists the selected backend mode (OpenClaw, Hermes, Demo, Local, Claw3D, or Custom) and shows the active backend reported by the connected gateway.

Runtime profiles

If you are integrating an orchestrator-backed runtime through the direct HTTP runtime seam, start your runtime first, then start Claw3D:

npm run dev

Then open http://localhost:3000, choose Local runtime, Claw3D runtime, or Custom backend, and point the upstream URL at your runtime boundary. Typical examples:

http://127.0.0.1:7770
http://localhost:3000/api/runtime/custom

Current direct-runtime expectations:

  • GET /health
  • GET /state
  • GET /registry
  • POST /v1/chat/completions

The browser does not call that runtime directly. Claw3D proxies the custom provider through its own same-origin route at /api/runtime/custom, which avoids browser-side CORS problems and keeps the provider transport separate from the OpenClaw/Hermes gateway path.

Demo mode

If you only want to see the office and agent interactions without installing OpenClaw or Hermes:

npm run demo-gateway
npm run dev

Then connect Studio to:

ws://localhost:18789

This starts a mock local gateway with demo agents, streaming chat, session previews, and office presence. In the connect screen, choose Demo backend, then connect.

Hermes adapter

If you want to use Hermes instead of OpenClaw:

npm run hermes-adapter
npm run dev

See docs/hermes-gateway.md for setup details and current scope.

For a local gateway on the same machine, the usual upstream URL is:

ws://localhost:18789

In the connect screen, choose Hermes backend, then connect.

How It Connects

Claw3D uses two separate network hops:

  1. Browser -> Studio over HTTP and a same-origin WebSocket at /api/gateway/ws.
  2. Studio -> OpenClaw Gateway over a second WebSocket opened by the Studio server.

That means ws://localhost:18789 always refers to the gateway reachable from the Studio host, not necessarily from the browser device.

This design keeps gateway settings persisted on the Studio host and lets Studio open the upstream connection server-side. The current UI still loads the configured upstream URL/token into browser memory at runtime, so treat the browser as part of the active trust boundary.

Common Setups

Gateway local, Studio local

  1. Start Studio with npm run dev.
  2. Open http://localhost:3000.
  3. Use ws://localhost:18789 plus your OpenClaw gateway token.

Gateway remote, Studio local

Use any gateway URL your machine can reach.

Recommended with Tailscale:

  1. On the gateway host, run tailscale serve --yes --bg --https 443 http://127.0.0.1:18789.
  2. In Studio, use wss://<gateway-host>.ts.net.

Alternative with SSH:

  1. Run ssh -L 18789:127.0.0.1:18789 user@<gateway-host>.
  2. In Studio, use ws://localhost:18789.

Studio remote, Gateway remote

  1. Run Studio on the remote host.
  2. Expose Studio on a private network or over Tailscale.
  3. Set STUDIO_ACCESS_TOKEN if Studio binds to a public host.
  4. Configure the gateway URL and token inside Studio.

Studio on LAN or Tailscale for other devices

  1. Start Studio with HOST=0.0.0.0 (or a specific LAN/Tailscale host).
  2. Set STUDIO_ACCESS_TOKEN before exposing Studio beyond localhost.
  3. Open Claw3D from the LAN/Tailscale address instead of localhost.
  4. If you are connecting to a remote OpenClaw gateway, remember device approval is per browser/device. A new browser may still require:
openclaw devices approve --latest

Tech Stack

  • Next.js App Router, React, and TypeScript for the main web application.
  • A custom Node server for the Studio-side WebSocket proxy.
  • Three.js, React Three Fiber, and Drei for the 3D office experience.
  • Phaser for office/viewer-builder workflows and related interactive surfaces.
  • Vitest for unit tests and Playwright for end-to-end coverage.

Configuration

Important runtime paths:

  • OpenClaw config: ~/.openclaw/openclaw.json
  • Studio settings: ~/.openclaw/claw3d/settings.json

Common environment variables:

  • HOST and PORT control the Studio server bind address and port.
  • STUDIO_ACCESS_TOKEN protects Studio when binding to a public host.
  • UPSTREAM_ALLOWLIST restricts which upstream gateway hosts Studio may proxy to. Set this in production.
  • CUSTOM_RUNTIME_ALLOWLIST restricts which hosts /api/runtime/custom may fetch. If unset, it falls back to UPSTREAM_ALLOWLIST.
  • NEXT_PUBLIC_GATEWAY_URL provides the default upstream gateway URL when Studio settings are empty. Note: this is a build-time variable — changes require npm run build to take effect.
  • CLAW3D_GATEWAY_URL and CLAW3D_GATEWAY_TOKEN provide a runtime alternative to NEXT_PUBLIC_GATEWAY_URL that takes effect on server restart without a rebuild.
  • CLAW3D_GATEWAY_ADAPTER_TYPE can pair with CLAW3D_GATEWAY_URL to mark those runtime defaults as openclaw, hermes, demo, local, claw3d, or custom.
  • If CLAW3D_GATEWAY_URL is not set, Studio can still surface local Hermes or demo adapter defaults from HERMES_ADAPTER_PORT / DEMO_ADAPTER_PORT.
  • OpenClaw file defaults still come from ~/.openclaw/openclaw.json when present.
  • OPENCLAW_STATE_DIR and OPENCLAW_CONFIG_PATH override the default OpenClaw paths.
  • OPENCLAW_GATEWAY_SSH_TARGET, OPENCLAW_GATEWAY_SSH_USER, OPENCLAW_GATEWAY_SSH_PORT, and OPENCLAW_GATEWAY_SSH_STRICT_HOST_KEY_CHECKING support advanced gateway-host operations over SSH when needed.
  • ELEVENLABS_API_KEY, ELEVENLABS_VOICE_ID, and ELEVENLABS_MODEL_ID enable voice reply integration.

See .env.example for the full local development template.

Scripts

  • npm run dev starts the Studio dev server.
  • npm run hermes-adapter starts the Hermes WebSocket adapter.
  • npm run demo-gateway starts the built-in mock gateway for demo mode.
  • npm run build builds the production Next.js app.
  • npm run start starts the production server.
  • npm run lint runs ESLint.
  • npm run typecheck runs TypeScript without emitting output.
  • npm run test runs unit tests with Vitest.
  • npm run e2e runs Playwright tests.
  • npm run studio:setup prepares common local Studio prerequisites.
  • npm run smoke:dev-server runs a basic dev-server smoke check.

Documentation

Current Limitations

  • The immersive retro office (/office) and the Phaser builder (/office/builder) are related but still separate stacks.
  • The app keeps gateway secrets out of browser persistent storage, but the current connection flow still loads the upstream URL/token into browser memory at runtime.
  • Local Spotify auth for SOUNDCLAW currently stores an access token only. Refresh-token handling is not implemented yet, so local Spotify auth may need to be repeated after the token expires.

Troubleshooting

If the UI loads but Connect fails, the problem is usually on the Studio -> Gateway side:

  • Confirm the upstream URL and token in Studio settings.
  • EPROTO or wrong version number usually means wss:// was used against a non-TLS endpoint.
  • INVALID_REQUEST errors mentioning minProtocol or maxProtocol usually mean the gateway is too old for Claw3D protocol v3. Upgrade OpenClaw, use the Hermes adapter, or run npm run demo-gateway.
  • 401 Studio access token required usually means STUDIO_ACCESS_TOKEN is enabled and the request is missing the expected studio_access cookie.
  • If /api/runtime/custom returns a blocked-host error in production, set CUSTOM_RUNTIME_ALLOWLIST or include the runtime host in UPSTREAM_ALLOWLIST.
  • Helpful proxy error codes include studio.gateway_url_missing, studio.gateway_token_missing, studio.upstream_error, and studio.upstream_closed.

Marketplace skill installs now use a gateway-native workspace flow and do not require enabling SSH on the user machine.

Spotify auth on localhost

If you are testing the SOUNDCLAW jukebox locally and Spotify OAuth does not accept your localhost callback, use an ngrok callback bridge:

  1. Keep Claw3D running locally on http://localhost:3000.
  2. Start ngrok for the local Studio server, for example ngrok http 3000.
  3. In the jukebox setup UI, paste your public ngrok URL into the ngrok Public URL field.
  4. In the Spotify developer dashboard, register https://<your-ngrok-host>/spotify/callback as the redirect URI.
  5. Complete Spotify sign-in from the jukebox panel.

How it works:

  • The main Claw3D app stays on localhost, so your normal local office state and agent state remain intact.
  • Spotify redirects to the ngrok callback URL.
  • The callback page passes the auth code back to the open local Claw3D window.

Current local limitation:

  • Because only the Spotify access token is stored right now, you may need to repeat the ngrok auth flow when that token expires during local development.

If you use other advanced gateway-host operations over SSH:

  • macOS: enable System Settings -> General -> Sharing -> Remote Login, and make sure the target user is allowed.
  • Windows: enable the OpenSSH Server optional feature, start the sshd service, and allow it through the firewall.
  • Linux: make sure sshd is installed, running, and reachable from the Studio machine.

For first-time SSH connections, Claw3D uses StrictHostKeyChecking=accept-new by default so a new host key can be trusted automatically. If you need stricter behavior, set OPENCLAW_GATEWAY_SSH_STRICT_HOST_KEY_CHECKING=yes, or set it to no only if you explicitly want to skip host key checks.

Contributing

Keep pull requests focused, run npm run lint, npm run typecheck, and npm run test before opening a PR, and update docs when behavior or architecture changes.

AI Editing Guardrails

If you use Cursor or another AI-assisted workflow, review the committed project guardrails in .cursor/rules/claw3d-project-guardrails.mdc.

That rule file captures the shared editing expectations for this repository, including the Claw3D-vs-OpenClaw boundary, code placement conventions, office-stack distinctions, and documentation/test update expectations.

Community expectations live in CODE_OF_CONDUCT.md. Security reporting instructions live in SECURITY.md.

Languages
TypeScript 95.3%
JavaScript 3.5%
CSS 1.1%
Shell 0.1%