A secure file system utility that executes file operations within a WebAssembly sandbox for enhanced privacy and control.
The fastest way to install a skill directly from the registry.
npx clawhub@latest install boxed-fs
Copy the skill folder to one of these locations
~/.openclaw/skills/ <project>/skills/ Priority: Workspace > Local > Bundled
Copy this prompt to OpenClaw to install it automatically.
Help me install boxed-fs using Clawhub. If Clawhub is not installed, install it first (npm i -g clawhub).
Get the raw skill files in a ZIP archive.
boxed-fs provides a robust layer of security for file system interactions by leveraging WebAssembly (WASM) sandboxing. It allows AI agents to perform standard operations like reading, writing, and listing files while strictly confining these actions to explicitly declared directories. This ensures that any file manipulation occurs within a controlled environment, preventing unauthorized access to sensitive system areas.
This skill is an essential component of the Openclaw Skills ecosystem for developers who prioritize security and isolation in their automated workflows. By utilizing a WASM component, it decouples the execution from the host system direct file API, offering a reliable sandbox for AI-driven file management.
To integrate boxed-fs into your Openclaw Skills environment, you must first download the WASM component and then invoke operations through the sandbox runner:
# Create the directory and download the WASM component
mkdir -p ~/.openclaw/skills/boxed-fs/files/
curl -L -o ~/.openclaw/skills/boxed-fs/files/boxed-fs-component.wasm https://raw.githubusercontent.com/guyoung/wasm-sandbox-openclaw-skills/main/boxed-fs/files/boxed-fs-component.wasm
# Example operation: List files in the workspace
# This is handled via the wasm-sandbox-run interface with args: ["list-dir", "--path", "."]
The boxed-fs skill interacts with files within a designated workspace. It supports the following core operations and parameters:
| Operation | Description | Required Arguments |
|---|---|---|
| read-file | Reads content from a file | --path |
| write-file | Writes content atomically | --path, --content |
| append-file | Appends data to a file | --path |
| copy-file | Copies a file within root | --path, --dest |
| list-dir | Lists directory contents | --path |
| remove-path | Deletes a file or directory | --path |
| mkdir-path | Creates a directory path | --path |
Loading
An AI-powered diagnostic tool for A-share companies that generates interactive financial reports across six key performance dimensions.

An immersive career planning system that generates high-fidelity HTML reports and facilitates emotional dialogues with a simulated future version of yourself.

A sophisticated AI skill designed to dissect academic PDFs and generate comprehensive structural and citation reports.

An automated B2B lead generation assistant that identifies competitors, mines potential customers, and generates personalized outreach materials.

A robust end-to-end speech recognition skill for converting local audio files into accurate text using Alibaba DashScope.

A sophisticated role orchestration skill for agent swarms that enables dynamic, capability-based assignment and hierarchical coordination.








































