skills$openclaw/exe-dev
bjesuiter7.3k

by bjesuiter

exe-dev – OpenClaw Skill

exe-dev is an OpenClaw Skills integration for coding workflows. Manage persistent VMs on exe.dev. Create VMs, configure HTTP proxies, share access, and set up custom domains. Use when working with exe.dev VMs for hosting, development, or running persistent services.

7.3k stars6.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

nameexe-dev
descriptionManage persistent VMs on exe.dev. Create VMs, configure HTTP proxies, share access, and set up custom domains. Use when working with exe.dev VMs for hosting, development, or running persistent services. OpenClaw Skills integration.
ownerbjesuiter
repositorybjesuiter/exe-dev
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @bjesuiter/exe-dev
last updatedFeb 7, 2026

Maintainer

bjesuiter

bjesuiter

Maintains exe-dev in the OpenClaw Skills directory.

View GitHub profile
File Explorer
4 files
.
references
exe-dev-vm-service.md
2.4 KB
_meta.json
269 B
SKILL.md
1.8 KB
SKILL.md

name: exe-dev description: Manage persistent VMs on exe.dev. Create VMs, configure HTTP proxies, share access, and set up custom domains. Use when working with exe.dev VMs for hosting, development, or running persistent services. author: Benjamin Jesuiter

⚠️ Warning: This skill was auto-built by clawdbot from the exe.dev markdown documentation. It's not tested yet — use with caution! I plan to test it soon. 🔜

exe.dev VM Management

Quick Commands

TaskCommand
List VMsssh exe.dev ls --json
Create VMssh exe.dev new
Make publicssh exe.dev share set-public <vm>
Change portssh exe.dev share port <vm> <port>
Add userssh exe.dev share add <vm> <email>
Share linkssh exe.dev share add-link <vm>

Access URLs

  • VM: https://<vmname>.exe.xyz/
  • Shelley agent: https://<vmname>.exe.xyz:9999/
  • VSCode: vscode://vscode-remote/ssh-remote+<vmname>.exe.xyz/home/exedev

Proxy Configuration

Default port is auto-selected from Dockerfile EXPOSE. Change with:

ssh exe.dev share port <vmname> <port>

Access ports 3000-9999 via https://vmname.exe.xyz:<port>/

Authentication Headers

When users authenticate via exe.dev:

  • X-ExeDev-UserID — user identifier
  • X-ExeDev-Email — user email

For testing, use mitmproxy to inject headers:

mitmdump --mode reverse:http://localhost:8000 --listen-port 3000 \
  --set modify_headers='/~q/X-ExeDev-Email/user@example.com'

Custom Domains

  • Subdomains: CNAME app.example.comvmname.exe.xyz
  • Apex: ALIAS example.comexe.xyz + CNAME wwwvmname.exe.xyz

Full Reference

See references/exe-dev-vm-service.md for complete documentation including pricing, Shelley agent setup, SSH key config, and FAQ.

README.md

No README available.

Permissions & Security

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

- **VM**: `https://<vmname>.exe.xyz/` - **Shelley agent**: `https://<vmname>.exe.xyz:9999/` - **VSCode**: `vscode://vscode-remote/ssh-remote+<vmname>.exe.xyz/home/exedev`

Requirements

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

Configuration

Default port is auto-selected from Dockerfile EXPOSE. Change with: ```bash ssh exe.dev share port <vmname> <port> ``` Access ports 3000-9999 via `https://vmname.exe.xyz:<port>/`

FAQ

How do I install exe-dev?

Run openclaw add @bjesuiter/exe-dev in your terminal. This installs exe-dev 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/bjesuiter/exe-dev. Review commits and README documentation before installing.