skills$openclaw/workspace-explorer
mrbeandev7.8kā˜…

by mrbeandev

workspace-explorer – OpenClaw Skill

workspace-explorer is an OpenClaw Skills integration for security workflows. Securely share your workspace with your owner via a remote VS Code environment. Use when (1) the owner requests to view or inspect your working files, (2) you need to give the owner live access to browse your codebase, (3) the owner wants to install extensions or use IDE features to explore files, or (4) you need a temporary secure tunnel for remote workspace inspection.

7.8k stars6.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026security

Skill Snapshot

nameworkspace-explorer
descriptionSecurely share your workspace with your owner via a remote VS Code environment. Use when (1) the owner requests to view or inspect your working files, (2) you need to give the owner live access to browse your codebase, (3) the owner wants to install extensions or use IDE features to explore files, or (4) you need a temporary secure tunnel for remote workspace inspection. OpenClaw Skills integration.
ownermrbeandev
repositorymrbeandev/workspace-explorer
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrbeandev/workspace-explorer
last updatedFeb 7, 2026

Maintainer

mrbeandev

mrbeandev

Maintains workspace-explorer in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
469 B
HEARTBEAT.md
868 B
SKILL.md
2.4 KB
SKILL.md

name: workspace-explorer description: Securely share your workspace with your owner via a remote VS Code environment. Use when (1) the owner requests to view or inspect your working files, (2) you need to give the owner live access to browse your codebase, (3) the owner wants to install extensions or use IDE features to explore files, or (4) you need a temporary secure tunnel for remote workspace inspection. homepage: https://github.com/mrbeandev/workspace-explorer user-invocable: true

Workspace Explorer

Provide secure, temporary access to your workspace via code-server (VS Code in browser) tunneled through Cloudflare.

Repository: https://github.com/mrbeandev/workspace-explorer

Installation

git clone https://github.com/mrbeandev/workspace-explorer.git

Usage

Run the start script with the workspace path:

python3 {baseDir}/scripts/start_workspace.py /path/to/workspace

The script will:

  1. Download binaries on first run (code-server + cloudflared)
  2. Start code-server on localhost
  3. Create a Cloudflare tunnel
  4. Print the public URL and password directly to terminal (Note: Wait 15-30s for the URL to become active)

Example output:

============================================================
āœ… WORKSPACE READY!
============================================================
🌐 URL:      https://random-words.trycloudflare.com
šŸ”‘ Password: xY7kL9mN2pQ4
============================================================

šŸ’” Share the URL and password with your owner.
   Press Ctrl+C to terminate the session.

Options

python3 {baseDir}/scripts/start_workspace.py /path/to/workspace --port 9000
OptionDefaultDescription
workspace(required)Path to directory to serve
--port8080Local port for code-server
--status(flag)Check if workspace is running

Heartbeat Support

This project includes a HEARTBEAT.md file. When installed as an OpenClaw skill, the agent will periodically check if the tunnel is active and remind you if it's left running for too long.

Termination

Press Ctrl+C to stop the session. Both code-server and the tunnel will be terminated.

Security

  • Each session generates a unique cryptographically secure password
  • Tunnel URLs are temporary .trycloudflare.com domains
  • No ports need to be opened on firewall
  • Session ends when script is terminated
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

- Each session generates a unique cryptographically secure password - Tunnel URLs are temporary `.trycloudflare.com` domains - No ports need to be opened on firewall - Session ends when script is terminated

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install workspace-explorer?

Run openclaw add @mrbeandev/workspace-explorer in your terminal. This installs workspace-explorer into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrbeandev/workspace-explorer. Review commits and README documentation before installing.