Stats
Links
Categories
Claude Code plugins by topcheer
npx claudepluginhub topcheer/claude-remotingExpose Claude Code terminal as a public web terminal via Cloudflare tunnel. Users can access and interact with your terminal from any browser.
Expose any CLI tool as a public web terminal via tunnel.
npm install -g @remotego/remotego
remotego <command> [command-args...] [options]
| Option | Description | Default |
|---|---|---|
--port <port> | Port to listen on | 7681 |
--cwd <dir> | Working directory for the command | Current directory |
--domain <domain> | Custom domain for localhost.run tunnel | Random subdomain |
--help, -h | Show help |
# Mirror Claude Code
remotego claude
# Mirror a bash shell
remotego bash
# Mirror Python REPL
remotego python3 -i
# Mirror vim editor
remotego vim
# Custom port
remotego --port 9000 node
# Custom tunnel domain
remotego --domain myterm.localhost.run bash
# Pass flags to the command (use -- to separate)
remotego -- git log --oneline
This project also works as a Claude Code plugin. Install it and use the /remoting slash command to mirror your Claude Code session in a browser.
MIT