一键导入
wormhole
Use wormhole CLI to expose local dev servers to the internet via HTTPS tunnel — for sharing previews, testing webhooks, and mobile testing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use wormhole CLI to expose local dev servers to the internet via HTTPS tunnel — for sharing previews, testing webhooks, and mobile testing.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use Chrome Lite MCP to read and interact with web apps (Gmail, Discord, Zalo, Messenger, Slack), then push messages to am-server for persistent storage and querying.
Use start-vnc to run a virtual desktop with noVNC — share your screen over the internet so the user can watch browser activity in real time.
Use agent-browser CLI to interact with web pages — navigate, click, fill forms, take screenshots, inspect accessibility tree, and verify UI on a headless server.
| name | wormhole |
| description | Use wormhole CLI to expose local dev servers to the internet via HTTPS tunnel — for sharing previews, testing webhooks, and mobile testing. |
Wormhole is a tunneling CLI that exposes localhost to the internet with automatic HTTPS. Use it to share dev server previews, test webhooks, or access the app from a phone.
# Expose a local port (e.g., Next.js dev server on 3000)
wormhole http 3000
# Use a custom subdomain (requires `wormhole login` first)
wormhole http 3000 --subdomain my-preview
# Headless mode (no TUI, plain log output — best for background use)
wormhole http 3000 --headless
# Disable traffic inspector
wormhole http 3000 --no-inspect
# Custom inspector address
wormhole http 3000 --inspect 0.0.0.0:4040
wormhole login # GitHub OAuth — gives 3 custom subdomains
wormhole status # Check auth status
wormhole logout # Clear credentials
*.wormhole.bar HTTPS URL is assignedLatency: ~5-20ms to nearest Cloudflare edge + local processing.
By default, wormhole runs a traffic inspector at http://localhost:4040:
# Start your dev server
npm run dev &
# Expose it
wormhole http 3000
# → https://abc123.wormhole.bar
wormhole http 3000 --subdomain claw-webhook
# Configure webhook URL: https://claw-webhook.wormhole.bar/api/webhook
wormhole http 3000
# Open the wormhole URL on your phone
# Run in background with headless mode
nohup wormhole http 3000 --headless > /tmp/wormhole.log 2>&1 &
# Check the log for the public URL
cat /tmp/wormhole.log
Wormhole tunnels are publicly accessible — anyone with the URL can reach the exposed service. Before tunneling:
VNC_PASSWORD env var first--subdomain for predictable URLs that are easier to audit and revoke--subdomain (requires login)