Requirements
- Target platform
- OpenClaw
- Install method
- Manual import
- Extraction
- Extract archive
- Prerequisites
- OpenClaw
- Primary doc
- SKILL.md
Multi-user workspace management with sandbox permissions, user profiles, and relationship networks.
Multi-user workspace management with sandbox permissions, user profiles, and relationship networks.
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
Configure per-user sessions with sandbox isolation, friend profiles, and relationship awareness.
UserId: Lowercase unique identifier (e.g., alice, bob). Used in session keys, filenames, and cross-references. Session: One session per user, named agent:<agentId>:<mainKey> where mainKey typically contains the userId. Sandbox: Optional Docker isolation per session, configured in openclaw.json. FRIENDS/: User profile directory (one file per user, named {userId}.md). RELATIONS/: Relationship directory (files named {userId1}-{userId2}.md, alphabetically sorted, can be mutiple users).
workspace/ โโโ USER.md # User registry with permissions โโโ AGENTS.md # Multi-user guidance for assistant โโโ FRIENDS/ โ โโโ alice.md # alice's profile โ โโโ bob.md # bob's profile โโโ RELATIONS/ โ โโโ alice-bob.md # Relationship between alice and bob โโโ private/ # Admin-only files (optional) ...
Each user gets an isolated session with configurable sandbox and tool permissions. Configure via openclaw.json.
Full access, no sandbox restrictions: { agents: { defaults: { workspace: "~/.openclaw/workspace", }, list: [ { id: "main", // Administrator: no sandbox, all tools allowed sandbox: { mode: "off" }, }, ], }, bindings: [ // Route admin sessions to main agent without sandbox { agentId: "main", match: { session: { regex: "alice$" } } }, ], }
Sandboxed session with isolated workspace. Guest can read/write/execute in their own directory only: { agents: { defaults: { workspace: "~/.openclaw/workspace", }, list: [ { id: "main", // Guest: sandbox enabled, isolated directory sandbox: { mode: "all", scope: "session", workspaceAccess: "none", // Don't mount main workspace docker: { binds: [ // Mount guest's own directory as /workspace "~/.openclaw/workspace/guests/bob:/workspace:rw" ] } }, tools: { allow: ["read", "write", "edit", "exec", "process"], deny: ["browser", "canvas", "nodes", "cron", "gateway"], }, }, ], }, bindings: [ // Route guest sessions to sandboxed agent { agentId: "main", match: { session: { regex: "bob$" } } }, ], } Directory Setup: mkdir -p ~/.openclaw/workspace/guests/bob Notes: Guest sees /workspace as their root (isolated from main workspace) Can read/write/execute freely within their directory Cannot access USER.md, FRIENDS/, RELATIONS/, or other guests' data
Sandbox: mode: "off" | "all" โ Disable or enable sandbox scope: "session" โ One container per user session workspaceAccess: "none" | "ro" | "rw" โ Workspace file access Tools: allow: Array of permitted tool names deny: Array of prohibited tool names (overrides allow) Routing: bindings[].match.session.regex: Match session key pattern (e.g., alice$ matches sessions ending with "alice")
Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.
Largest current source with strong distribution and engagement signals.