AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Public Tunnel

skill-sinedied-agent-skills-public-tunnel · by sinedied

Create temporary public tunnels to expose local application ports for demos or sharing work in progress. Use when the user asks to share a local app, create a public URL for a port, set up a tunnel, or make a local server temporarily accessible from the internet.

No reviews yet
0 installs
19 views
0.0% view→install

Install

$ agentstack add skill-sinedied-agent-skills-public-tunnel

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-sinedied-agent-skills-public-tunnel)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Public Tunnel? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Public Tunnel (tunnelmole)

Create temporary public URLs that forward to local application ports using tunnelmole. No account needed, no password — just a clean public URL.

Usage

When a user asks to expose a local port or create a public URL for a running application:

  1. Confirm the local port number (must be > 1024 for security)
  2. Start a tunnel using npx tunnelmole as a background process
  3. Parse the generated *.tunnelmole.net URL from the output
  4. Report the public URL back to the user

Important Rules

  • Port restriction: Only expose ports > 1024. Refuse to tunnel privileged ports (0-1024) to prevent exposing sensitive services.
  • Single tunnel per port: Don't create duplicate tunnels for the same port.
  • No password needed: Tunnelmole URLs are directly accessible — no IP/password prompt.

Example

User: "Create a tunnel for my app on port 5173"

  1. Start the tunnel as a background process
  2. Read the output to get the *.tunnelmole.net URL
  3. Send the user the URL

Response example: > Your app is now publicly accessible at: https://f38fg.tunnelmole.net > The tunnel will automatically close in 15 minutes.

Implementation Notes

Run tunnelmole via npx as a detached background process. The URL appears in stdout after a few seconds.

# Start tunnel (run as detached background process)
npx -y tunnelmole 

The output contains a line like:

https://f38fg.tunnelmole.net is forwarding to localhost:5173

Parse the https://*.tunnelmole.net URL from the output.

To close the tunnel, kill the tunnelmole process for the corresponding port.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.