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

Use Inlets Cloud

skill-inlets-agent-skills-use-inlets-cloud · by inlets

Creates and manages inlets cloud tunnels (HTTP and ingress) using the inlets-pro cloud CLI. Use when asked to expose a service, create a tunnel, or manage tunnels with inlets cloud.

— No reviews yet
0 installs
20 views
0.0% view→install

Install

$ agentstack add skill-inlets-agent-skills-use-inlets-cloud

✓ 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-inlets-agent-skills-use-inlets-cloud)

Reliability & compatibility

✓ Security review passed
0 installs to date
— no reviews yet
○ 5mo 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 Use Inlets Cloud? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Using Inlets Cloud

Manage tunnels on Inlets Cloud using inlets-pro cloud.

Docs: https://docs.inlets.dev/cloud/

Authentication

Log in before any other command:

inlets-pro cloud auth login --token TOKEN

Check current user:

inlets-pro cloud auth whoami

Regions

List available regions:

inlets-pro cloud region list

The --region flag defaults to eu-west-1. Run region list to see current options.

Custom Domains

Before using a custom domain with an HTTP tunnel, register and verify it:

# Add an apex domain
inlets-pro cloud domain add example.com

# Get verification challenge (TXT record)
inlets-pro cloud domain get example.com

# Verify after creating the TXT record
inlets-pro cloud domain verify example.com

List registered domains:

inlets-pro cloud domain list

Creating Tunnels

HTTP tunnel with generated domain (tryinlets.dev)

Quick way to get a HTTPS URL with a random subdomain:

inlets-pro cloud tunnel create my-tunnel --generated --region cambs1

HTTP tunnel with custom domain

Expose a service on your own domain (domain must be verified first):

inlets-pro cloud tunnel create my-tunnel --domain app.example.com --region cambs1

Ingress tunnel

Expose ports 80 and 443 with TCP pass-through to a local reverse proxy or Kubernetes Ingress Controller:

inlets-pro cloud tunnel create ingress my-tunnel --domain app.example.com --region cambs1

Multiple domains can be attached:

inlets-pro cloud tunnel create ingress my-tunnel \
  --domain app.example.com \
  --domain api.example.com \
  --region cambs1

Connecting to a Tunnel

Get the connection command for a tunnel:

# CLI connection string
inlets-pro cloud tunnel connect my-tunnel

# Kubernetes YAML
inlets-pro cloud tunnel connect my-tunnel --format k8s --upstream UPSTREAM

# systemd unit
inlets-pro cloud tunnel connect my-tunnel --format systemd --upstream UPSTREAM

The --upstream flag specifies the local target, e.g. --upstream http://127.0.0.1:8080.

For Kubernetes format, --namespace and --inlets-version can also be set.

Listing and Deleting Tunnels

# List all tunnels
inlets-pro cloud tunnel list

# List with RX/TX metrics (slower)
inlets-pro cloud tunnel list -v

# Delete a tunnel by name or domain
inlets-pro cloud tunnel delete my-tunnel

Managing Ingress Tunnel Domains

Attach or detach domains on an existing ingress tunnel:

# Add a domain
inlets-pro cloud tunnel domain add my-tunnel blog.example.com

# Remove a domain
inlets-pro cloud tunnel domain remove my-tunnel blog.example.com

Proxy Protocol (Ingress Tunnels)

Enable proxy protocol to preserve client IP addresses:

# Set proxy protocol (none, v1, v2)
inlets-pro cloud tunnel proxy-protocol set my-tunnel v2

The tunneled service must be configured to accept the proxy protocol header.

ACLs (IP Filtering)

Restrict access to a tunnel by IP/CIDR:

# List current ACL entries
inlets-pro cloud acl list my-tunnel

# Set allowed IPs (replaces existing entries)
inlets-pro cloud acl set my-tunnel --allow 203.0.113.0/24 --allow 198.51.100.5

Common Workflows

Expose a local web app with HTTPS

inlets-pro cloud tunnel create my-app --generated --region cambs1
inlets-pro cloud tunnel connect my-app --upstream http://127.0.0.1:3000
# Run the printed inlets-pro uplink client command

Expose a Kubernetes Ingress Controller

inlets-pro cloud domain add example.com
inlets-pro cloud domain verify example.com
inlets-pro cloud tunnel create ingress k8s-ingress --domain app.example.com --region cambs1
inlets-pro cloud tunnel connect k8s-ingress --format k8s --upstream http://ingress-nginx-controller.ingress-nginx:80
# Apply the generated YAML to your cluster

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.