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

Use Inletsctl

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

Creates and manages inlets tunnel exit-servers on cloud VMs using inletsctl. Use when asked to provision, create, or delete tunnel servers on cloud providers like DigitalOcean, AWS EC2, GCE, Azure, Linode, Hetzner, Scaleway, OVH, or Vultr.

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

Install

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

✓ 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-inletsctl)

Reliability & compatibility

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

About

Using inletsctl

Automate provisioning of inlets exit-servers (tunnel servers) on cloud infrastructure.

Docs: https://docs.inlets.dev/reference/inletsctl/ Source: https://github.com/inlets/inletsctl

Download inlets-pro binary

inletsctl download

# Specific version
inletsctl download --version 0.9.40

Creating Exit-Servers

Either --letsencrypt-domain (for HTTPS) or --tcp (for TCP) must be specified.

HTTPS tunnel with Let's Encrypt

Terminates TLS at the exit-server with automatic Let's Encrypt certificates:

inletsctl create my-tunnel \
  --provider digitalocean \
  --region lon1 \
  --access-token-file $HOME/do-access-token \
  --letsencrypt-domain app.example.com \
  --letsencrypt-issuer prod

Multiple domains on the same tunnel:

inletsctl create my-tunnel \
  --letsencrypt-domain app1.example.com \
  --letsencrypt-domain app2.example.com

TCP tunnel

For raw TCP traffic (SSH, databases, etc.):

inletsctl create my-tcp-tunnel \
  --tcp \
  --provider digitalocean \
  --region lon1 \
  --access-token-file $HOME/do-access-token

If no name argument is given, a random name is generated.

After creation, inletsctl prints a connection command with the server IP and auth token. Run that command locally, updating --upstream and --ports as needed.

Deleting Exit-Servers

Delete by ID or IP (both are printed at creation time):

# By ID
inletsctl delete --provider digitalocean \
  --access-token-file $HOME/do-access-token \
  --id 164857028

# By IP
inletsctl delete --provider digitalocean \
  --access-token-file $HOME/do-access-token \
  --ip 209.97.131.180

Forwarding Kubernetes Services Locally

Forward a Kubernetes service to your local machine:

# HTTP service
inletsctl kfwd --from my-service:8080 --if 192.168.0.14

# TCP service
inletsctl kfwd --from nats:4222 --if 192.168.0.14 --tcp

--if must be an IP on your machine reachable from the cluster. Use --namespace for non-default namespaces.

Supported Providers and Defaults

| Provider | --provider | Default Region | Default Plan | Default OS | |---|---|---|---|---| | DigitalOcean | digitalocean | lon1 | s-1vcpu-512mb-10gb | debian-13-x64 | | AWS EC2 | ec2 | eu-west-1 | t3.nano | Ubuntu 22.04 amd64 | | Google Compute Engine | gce | (required) | f1-micro | Ubuntu Minimal 22.04 | | Azure | azure | (required) | Standard_B1ls | Ubuntu 22.04 LTS Gen2 | | Linode | linode | eu-west | g6-nanode-1 | linode/ubuntu22.04 | | Hetzner | hetzner | hel1 | cx23 | debian-13 | | Scaleway | scaleway | fr-par-1 | DEV1-S | ubuntu-jammy | | OVHcloud | ovh | DE1 | s1-2 | Ubuntu 22.04 | | Vultr | vultr | LHR | 201 (1GB/25GB) | Ubuntu 22.04 x64 |

Provider-Specific Configuration

DigitalOcean

inletsctl create my-tunnel \
  --provider digitalocean \
  --region lon1 \
  --access-token-file $HOME/do-access-token \
  --tcp

AWS EC2

Required: --access-token-file (access key) and --secret-key-file (secret key).

inletsctl create my-tunnel \
  --provider ec2 \
  --region eu-west-1 \
  --access-token-file ./access-key.txt \
  --secret-key-file ./secret-key.txt \
  --tcp

With temporary credentials (STS), add --session-token-file ./session-token.txt.

Optional: --vpc-id and --subnet-id (both must be set together), --aws-key-name.

Google Compute Engine (GCE)

Required: --project-id and --region (no default region). --access-token-file takes a service account key JSON.

inletsctl create my-tunnel \
  --provider gce \
  --project-id $PROJECTID \
  --region us-central1 \
  --access-token-file key.json \
  --zone us-central1-a \
  --tcp

Default zone: us-central1-a. GCE VMs get ephemeral IPs — reserve a static IP for a stable tunnel address.

Azure

Required: --subscription-id. --access-token-file takes a service principal JSON (az ad sp create-for-rbac --sdk-auth).

inletsctl create my-tunnel \
  --provider azure \
  --region eastus \
  --subscription-id $SUBSCRIPTION_ID \
  --access-token-file ~/client_credentials.json \
  --tcp

Linode

inletsctl create my-tunnel \
  --provider linode \
  --region us-east \
  --access-token $TOKEN \
  --tcp

Hetzner

Regions: hel1 (Helsinki, default), nur1 (Nuremberg), fsn1 (Falkenstein).

inletsctl create my-tunnel \
  --provider hetzner \
  --region hel1 \
  --access-token $TOKEN \
  --tcp

Scaleway

Required: --secret-key and --organisation-id. Region fixed to fr-par-1.

inletsctl create my-tunnel \
  --provider scaleway \
  --access-token $TOKEN \
  --secret-key $SECRET_KEY \
  --organisation-id $ORG_ID \
  --tcp

OVHcloud

Required: --secret-key, --consumer-key, and --project-id.

Endpoints: ovh-eu (default), ovh-us, ovh-ca, soyoustart-eu, soyoustart-ca, kimsufi-eu, kimsufi-ca.

inletsctl create my-tunnel \
  --provider ovh \
  --access-token $APPLICATION_KEY \
  --secret-key $APPLICATION_SECRET \
  --consumer-key $CONSUMER_KEY \
  --project-id $PROJECT_ID \
  --endpoint ovh-eu \
  --tcp

Vultr

Default region: LHR (London).

inletsctl create my-tunnel \
  --provider vultr \
  --region LHR \
  --access-token $TOKEN \
  --tcp

Key Flags Reference

| Flag | Description | |---|---| | --provider / -p | Cloud provider (default: digitalocean) | | --region / -r | Cloud region (provider-specific default) | | --plan / -s | Override default VM plan/size | | --zone / -z | Zone (GCE only, default: us-central1-a) | | --access-token / -a | Access token inline | | --access-token-file / -f | Read access token from file | | --tcp | Create a TCP tunnel server | | --letsencrypt-domain | Domain for Let's Encrypt cert (repeatable) | | --letsencrypt-issuer | prod (default) or staging | | --inlets-token / -t | Custom auth token (auto-generated if omitted) | | --inlets-version | inlets binary version (default: 0.11.8) | | --poll / -n | Poll interval for provisioning status (default: 2s) |

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.