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

Add Custom Domain

skill-gotempsh-temps-add-custom-domain · by gotempsh

|

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

Install

$ agentstack add skill-gotempsh-temps-add-custom-domain

✓ 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-gotempsh-temps-add-custom-domain)

Reliability & compatibility

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

About

Add a Custom Domain

Add a custom domain to a Temps project and get automatic HTTPS. This skill drives the whole flow from the CLI; the human equivalent is Project → Domains → Add Domain in the dashboard.

When to use

The user wants their own domain (e.g. app.example.com) serving a Temps project, with an SSL certificate, instead of the auto-assigned subdomain.

Prerequisites

  • The Temps CLI is authenticated. Verify, and log in to the user's instance if needed

(login is a top-level command; the instance URL is the positional argument): ``bash bunx @temps-sdk/cli whoami || bunx @temps-sdk/cli login "" ``

  • The user knows the domain to add and which project it belongs to.
  • The user can edit DNS for the domain (or has a DNS provider connected in Temps

for DNS-01 / wildcard).

Steps

  1. Identify the project. If the user gave a name but not an ID, list projects

and resolve it: ``bash bunx @temps-sdk/cli projects list --json ` Note the numeric id of the target project. Use it as ` below.

  1. Create the DNS record at the user's DNS provider so the domain points at

the Temps server. Tell the user exactly what to add (you cannot create this for them unless a DNS provider is connected in Temps):

  • Subdomain (app.example.com): A record, name app, value = the

server's public IP. A CNAME to the server hostname also works.

  • Apex (example.com): A record, name @, value = the server's IP.

(CNAMEs are not allowed at the zone root.)

  • If the user is on Cloudflare, have them set the record to DNS only

(grey cloud) during issuance so Temps' Let's Encrypt challenge isn't proxied.

  1. Add the domain to the project. Default is the HTTP-01 challenge, handled

automatically: ``bash bunx @temps-sdk/cli custom-domains create --project-id -d app.example.com -y ``

  • Apex + Cloudflare/another provider connected, or port 80 not reachable:

use DNS-01 instead (see Wildcard below) — confirm a DNS provider is connected in Settings → DNS Providers first.

  1. Wildcard domains (*.example.com) require DNS-01 and a connected DNS

provider. Confirm the provider is connected, then add the wildcard the same way: ``bash bunx @temps-sdk/cli custom-domains create --project-id -d "*.example.com" -y ` Temps creates the _acme-challenge` TXT record automatically via the provider.

Verify

bunx @temps-sdk/cli custom-domains list --project-id 

The domain should progress to active once DNS propagates and the certificate is issued (usually under a minute for HTTP-01). You can confirm DNS independently:

dig +short app.example.com A

If the domain stays pending: verify the DNS record resolves to the server, that port 80 is reachable (HTTP-01), and — on Cloudflare — that the proxy is off during issuance. Certificates renew automatically ~30 days before expiry.

Related

  • Dashboard path: Project → Domains → Add Domain
  • Doc: https://temps.sh/docs/add-a-custom-domain
  • CLI group: bunx @temps-sdk/cli custom-domains --help
  • Full CLI reference: the temps-cli skill covers all 440+ bunx @temps-sdk/cli

commands.

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.