Task-oriented snippets for the clutchcall CLI. Each snippet does one thing.
Env vars below use <P> for your CLI’s brand prefix. The prefix is the binary name in uppercase.

Expose a local web app at a public URL

This is the headline move. One command gives you a public HTTPS URL with no inbound port.

Reserve a stable subdomain

Claim a handle once. Every http run then reuses it instead of a random slug.

Run multiple named tunnels off one handle

Use --name to suffix the reserved handle, so each service gets its own URL.

Receive a webhook on your laptop

Point the provider’s webhook at your public URL. Deliveries reach localhost without a deployed server.
Streaming and chunked responses (SSE, long-poll) pass through unchanged. Each public connection is its own QUIC stream, so one slow request never blocks others.

Tunnel a raw-TCP service (SSH, Postgres)

The raw-TCP type maps a remote endpoint to a local port with no HTTP parsing. It is a good fit for SSH or a database. Use the P2P direct form for a private link. Use the public form for an internet-reachable port.

Point a remote shell at a box behind NAT

Use the same P2P flow for SSH. The box only dials out. No inbound rule is necessary.

Connect two boxes on the same LAN

On one subnet, discovery is automatic. The edge stays fully out of the path.

Punch through NATs with STUN

Across networks, set a STUN reflector so each side gathers its public candidate before punching.
Cone NATs punch directly. Symmetric NATs fall back to the relayed path automatically.

Pick a region / specific edge PoP

Override the edge that the data plane dials, for example to test a region or a self-hosted PoP.

Point at a self-hosted control plane

To run against your own control plane, override the API base.

Check usage, devices, and egress

See your plan, device slots, wallet balance, and this-month egress.

Free a device slot

The free plan permits a maximum of 5 devices. Remove an old device to make room.

Use a custom engine binary

If the QUIC data-plane engine is not next to the CLI, point at it explicitly.

Enable remote desktop over the QUIC relay

QuickDesk uses this relay for transport instead of its own rendezvous/relay. Point it at the relay in its network settings:
The controlled box registers its device id as a slug and parks streams. The controller dials it by slug. QuickDesk’s own end-to-end encryption is unchanged. See the QuickDesk docs for the full product.

Run as a long-lived background tunnel

http runs in the foreground until you interrupt it. Use your process manager to keep it up across reboots.