Domain strategy

Plan, manage, and optimize a domain portfolio.

Domain strategy — Creative Direction skill highlight diagram. Navy header card reads 'Impactful Creative Direction' with the subtitle… (from the rampstackco/claude-skills README)

From the rampstackco/claude-skills README — shows the whole collection, not only this skill. · view on GitHub

How to use it

Claude Code
  1. Run the line below. It pulls the whole folder into ~/.claude/skills/domain-strategy.
  2. Describe your job in plain words. Claude Code follows the skill from there.
Claude Code — installs the whole folder, not just SKILL.md
npx degit rampstackco/claude-skills/skills/domain-strategy#main ~/.claude/skills/domain-strategy

For one project only, change the path to .claude/skills/domain-strategy.

Claude (web or desktop app)
  1. On this page open ⋯ → Download .md.
  2. Save it as SKILL.md in a folder, zip the folder, then Customize → Skills → + → Create skill → Upload a skill.
  3. Pick the file and Save. Claude shows the name and description and runs a security scan.
  4. Check the skill is switched on.
  5. Start a new chat and describe your job in plain words. The AI follows the skill from there.
ChatGPT or another app
  1. ChatGPT: make a Project and paste it into Instructions.
  2. Neither? Paste it at the top of a new chat — it works for that chat.
Not working?
  • Check which app you pasted it into — the steps above name the right one.
  • Some skills need the paid tier of Claude or ChatGPT.
Step-by-step guide with screenshots · Ask in the forum

Paste into Claude, ChatGPT or Cursor.

Source of Domain strategy

Show the full text219 lines
namedescriptioncategorycatalog_summarydisplay_order
domain-strategyPlan, manage, and optimize a domain portfolio. Use this skill for DNS architecture decisions, redirect strategies, registrar choice, parking unused domains, multi-site setups, and domain consolidation or split planning. Triggers on DNS, domain, registrar, redirect, parking, subdomain, apex, www vs non-www, multi-site, portfolio, hreflang setup, domain migration. Also triggers when planning a new site that needs domain decisions made before launch.operationsDNS architecture, redirects, registrars, multi-domain portfolios4

Domain Strategy

Decide how domains, subdomains, and DNS work across a portfolio. Stack-agnostic. Works for one site or one hundred.


When to use

  • Setting up DNS for a new site (apex vs www, primary vs aliases)
  • Choosing or switching registrars
  • Planning redirects across multiple domains (parked, retired, consolidated)
  • Deciding subdomain vs subfolder vs separate domain for a new product line
  • Consolidating multiple sites into one
  • Splitting one site into multiple
  • Setting up DNS for email, security records, third-party services

When NOT to use

  • Migrating content between platforms with URL changes (use content-migration)
  • Email authentication setup specifically (use email-deliverability)
  • Security headers or HTTPS config (use security-baseline)
  • Internationalization domain choices (use internationalization)

Required inputs

  • Current domain inventory (every domain you own or operate)
  • Status of each (live, parked, redirected, retired)
  • Strategic role of each (primary brand, sub-brand, defensive registration, campaign)
  • Current DNS provider and registrar for each
  • Email and third-party service dependencies

The framework: 5 decisions

Every domain decision falls into one of these buckets. Address them in order.

Decision 1: Apex vs www as canonical

Pick one. Redirect the other to it. Pick before launch. Changing later is painful.

  • Apex (example.com): cleaner, more memorable, the modern default.
  • www (www.example.com): historically standard, easier to add CDN-level CNAME records (apex CNAME is technically forbidden but most providers offer ALIAS or ANAME).

Whichever you pick, the other must 301 to it. Both serving content is duplicate content and a soft signal of poor setup.

Decision 2: Subdomain vs subfolder vs separate domain

For a new product, blog, or content section:

Pattern Use when
Subfolder (example.com/blog) Same brand, want SEO equity to flow, default choice
Subdomain (blog.example.com) Different stack or platform, organizationally separate but related
Separate domain (exampleblog.com) Different brand, different audience, intentional separation

Default to subfolder. The case for subdomain or separate domain has to be made.

Decision 3: Registrar strategy

The registrar is where the domain is registered. The DNS provider is where DNS records live. They can be the same or different.

Decisions:

  • Single registrar vs multiple: single is simpler. Multiple makes sense for redundancy at scale.
  • Lock and 2FA: non-negotiable. Domain hijacking is real and costly.
  • Auto-renew: on for everything you care about. Off only for intentional drops.
  • WHOIS privacy: on by default. Free at most modern registrars.
  • Transfer lock: on except during planned transfers.
Decision 4: DNS provider

The DNS provider controls how domains resolve. Critical for performance, reliability, and security.

Pick a provider that gives you:

  • Fast global resolution (anycast network)
  • DNSSEC support
  • API access for automation
  • Reasonable record limits
  • Good audit logs

Default DNS records every domain needs:

  • A or AAAA records (or CNAME) for the apex and www
  • MX records (even just nullified if no email)
  • TXT for domain verification, SPF
  • CAA records (locks down which certificate authorities can issue certs for the domain)
Decision 5: Parked domain strategy

Domains you own but aren't actively using. Three valid strategies:

  1. Redirect to a primary site. Best for defensively registered domains close to your main brand. 301 every path to the primary's homepage or matching path.
  2. Hold blank. A simple page or DNS NXDOMAIN. Acceptable for domains you may use later.
  3. Park with a landing page. Generic "coming soon" page. Lowest value. Avoid registrar default parking pages (often serve ads against your brand).

Anti-pattern: letting parked domains serve duplicate or near-duplicate content from your main site. This is an SEO liability.


Workflow

Step 1: Inventory

Pull every domain you own from every registrar. Build a single sheet:

Domain Registrar DNS provider Status Role Renewal date Notes

If you can't account for every domain, the strategy can't be accurate.

Step 2: Classify by role

Each domain gets one role:

  • Primary (the main site for a brand)
  • Alias (redirects to a primary)
  • Defensive (registered to prevent others from getting it; usually parked)
  • Campaign (short-term, specific use)
  • Retired (no longer active; either drop at expiry or redirect permanently)

The classification drives the configuration.

Step 3: Audit current configuration

For each domain check:

  • Is the canonical (apex vs www) consistent with the strategy?
  • Are redirects 301 (permanent) where intended?
  • Is HTTPS enforced on every variant?
  • Are DNS records minimal and intentional?
  • Is the registrar locked?
  • Is auto-renew on?
  • Is 2FA on the registrar account?

Document gaps. Each gap is a ticket.

Step 4: Set the canonical pattern

For new domains and any that need fixing:

  • Pick apex or www as canonical
  • Configure 301 redirect for the non-canonical
  • Force HTTPS for both
  • Verify with curl: curl -I http://example.com, curl -I http://www.example.com, curl -I https://www.example.com. All should chain to a single 200 on the canonical.
Step 5: Document the redirect map

Across the portfolio, document every redirect:

Source Destination Type Reason Date set

This is invaluable when something breaks or when planning consolidations.

Step 6: Set up monitoring

Monitor:

  • DNS resolution (alert on NXDOMAIN or wrong IP)
  • HTTPS certificate expiration (alert at 30, 14, 7 days out)
  • Redirect chains (alert if a 301 starts returning 200 or 404)
  • Renewal dates (alert at 90, 30, 7 days out)

This is the bridge between domain strategy and monitoring-and-alerting.

Step 7: Document and revisit

Domain strategy is a quarterly review topic. Renewals, consolidations, and new launches change the picture. Without scheduled review, the portfolio drifts.


Failure patterns

Both apex and www serve content. Duplicate content. Pick one, redirect the other.

302 redirects where 301 was intended. 302 is temporary. 301 is permanent. SEO equity passes through 301, not (reliably) through 302.

HTTPS not enforced. HTTP variant serving content alongside HTTPS. Force HTTPS at the edge or the load balancer.

Registrar default parking pages. Parked domains serving registrar ads. Free for the registrar, bad for you. Replace with a redirect or your own page.

Domains in multiple registrars by accident. Migrations that didn't fully complete. Consolidate.

No CAA records. Anyone with a misconfigured ACME client can issue a cert for your domain. CAA limits which CAs can issue. Add it.

Auto-renew off "to save money." Domain accidentally drops, gets snapped up, costs ten times more (or is unrecoverable). Auto-renew is cheap insurance.

Subdomains used where subfolders would have been better. SEO equity gets fragmented across hostnames. The case for a subdomain has to be made; the default is subfolder.

Parked domains with thin content "for SEO." Search engines don't reward this. They penalize doorway pages. Either redirect or leave blank.


Output format

A domain strategy document includes:

  • Inventory: the spreadsheet of every domain
  • Classification: the role of each
  • Canonical decisions: apex vs www, locked
  • Redirect map: every redirect in the portfolio
  • DNS standards: the default record set
  • Registrar standards: locked, 2FA, auto-renew
  • Monitoring: what's watched, where alerts go
  • Renewal calendar: the next 12 months
  • Review cadence: when this gets revisited

Reference files

  • references/dns-record-reference.md: Common DNS records explained, with the syntax for the most useful ones (A, AAAA, CNAME, MX, TXT, CAA, SRV, etc.) and when each is needed.
1---
2name: domain-strategy
3description: "Plan, manage, and optimize a domain portfolio. Use this skill for DNS architecture decisions, redirect strategies, registrar choice, parking unused domains, multi-site setups, and domain consolidation or split planning. Triggers on DNS, domain, registrar, redirect, parking, subdomain, apex, www vs non-www, multi-site, portfolio, hreflang setup, domain migration. Also triggers when planning a new site that needs domain decisions made before launch."
4category: operations
5catalog_summary: "DNS architecture, redirects, registrars, multi-domain portfolios"
6display_order: 4
7---
8 
9# Domain Strategy
10 
11Decide how domains, subdomains, and DNS work across a portfolio. Stack-agnostic. Works for one site or one hundred.
12 
13---
14 
15## When to use
16 
17- Setting up DNS for a new site (apex vs www, primary vs aliases)
18- Choosing or switching registrars
19- Planning redirects across multiple domains (parked, retired, consolidated)
20- Deciding subdomain vs subfolder vs separate domain for a new product line
21- Consolidating multiple sites into one
22- Splitting one site into multiple
23- Setting up DNS for email, security records, third-party services
24 
25## When NOT to use
26 
27- Migrating content between platforms with URL changes (use `content-migration`)
28- Email authentication setup specifically (use `email-deliverability`)
29- Security headers or HTTPS config (use `security-baseline`)
30- Internationalization domain choices (use `internationalization`)
31 
32---
33 
34## Required inputs
35 
36- Current domain inventory (every domain you own or operate)
37- Status of each (live, parked, redirected, retired)
38- Strategic role of each (primary brand, sub-brand, defensive registration, campaign)
39- Current DNS provider and registrar for each
40- Email and third-party service dependencies
41 
42---
43 
44## The framework: 5 decisions
45 
46Every domain decision falls into one of these buckets. Address them in order.
47 
48### Decision 1: Apex vs www as canonical
49 
50Pick one. Redirect the other to it. Pick before launch. Changing later is painful.
51 
52- **Apex (example.com):** cleaner, more memorable, the modern default.
53- **www (www.example.com):** historically standard, easier to add CDN-level CNAME records (apex CNAME is technically forbidden but most providers offer ALIAS or ANAME).
54 
55Whichever you pick, the other must 301 to it. Both serving content is duplicate content and a soft signal of poor setup.
56 
57### Decision 2: Subdomain vs subfolder vs separate domain
58 
59For a new product, blog, or content section:
60 
61| Pattern | Use when |
62|---|---|
63| Subfolder (`example.com/blog`) | Same brand, want SEO equity to flow, default choice |
64| Subdomain (`blog.example.com`) | Different stack or platform, organizationally separate but related |
65| Separate domain (`exampleblog.com`) | Different brand, different audience, intentional separation |
66 
67Default to subfolder. The case for subdomain or separate domain has to be made.
68 
69### Decision 3: Registrar strategy
70 
71The registrar is where the domain is registered. The DNS provider is where DNS records live. They can be the same or different.
72 
73Decisions:
74- **Single registrar vs multiple:** single is simpler. Multiple makes sense for redundancy at scale.
75- **Lock and 2FA:** non-negotiable. Domain hijacking is real and costly.
76- **Auto-renew:** on for everything you care about. Off only for intentional drops.
77- **WHOIS privacy:** on by default. Free at most modern registrars.
78- **Transfer lock:** on except during planned transfers.
79 
80### Decision 4: DNS provider
81 
82The DNS provider controls how domains resolve. Critical for performance, reliability, and security.
83 
84Pick a provider that gives you:
85- Fast global resolution (anycast network)
86- DNSSEC support
87- API access for automation
88- Reasonable record limits
89- Good audit logs
90 
91Default DNS records every domain needs:
92- A or AAAA records (or CNAME) for the apex and www
93- MX records (even just nullified if no email)
94- TXT for domain verification, SPF
95- CAA records (locks down which certificate authorities can issue certs for the domain)
96 
97### Decision 5: Parked domain strategy
98 
99Domains you own but aren't actively using. Three valid strategies:
100 
1011. **Redirect to a primary site.** Best for defensively registered domains close to your main brand. 301 every path to the primary's homepage or matching path.
1022. **Hold blank.** A simple page or DNS NXDOMAIN. Acceptable for domains you may use later.
1033. **Park with a landing page.** Generic "coming soon" page. Lowest value. Avoid registrar default parking pages (often serve ads against your brand).
104 
105Anti-pattern: letting parked domains serve duplicate or near-duplicate content from your main site. This is an SEO liability.
106 
107---
108 
109## Workflow
110 
111### Step 1: Inventory
112 
113Pull every domain you own from every registrar. Build a single sheet:
114 
115| Domain | Registrar | DNS provider | Status | Role | Renewal date | Notes |
116|---|---|---|---|---|---|---|
117 
118If you can't account for every domain, the strategy can't be accurate.
119 
120### Step 2: Classify by role
121 
122Each domain gets one role:
123- **Primary** (the main site for a brand)
124- **Alias** (redirects to a primary)
125- **Defensive** (registered to prevent others from getting it; usually parked)
126- **Campaign** (short-term, specific use)
127- **Retired** (no longer active; either drop at expiry or redirect permanently)
128 
129The classification drives the configuration.
130 
131### Step 3: Audit current configuration
132 
133For each domain check:
134- Is the canonical (apex vs www) consistent with the strategy?
135- Are redirects 301 (permanent) where intended?
136- Is HTTPS enforced on every variant?
137- Are DNS records minimal and intentional?
138- Is the registrar locked?
139- Is auto-renew on?
140- Is 2FA on the registrar account?
141 
142Document gaps. Each gap is a ticket.
143 
144### Step 4: Set the canonical pattern
145 
146For new domains and any that need fixing:
147 
148- Pick apex or www as canonical
149- Configure 301 redirect for the non-canonical
150- Force HTTPS for both
151- Verify with curl: `curl -I http://example.com`, `curl -I http://www.example.com`, `curl -I https://www.example.com`. All should chain to a single 200 on the canonical.
152 
153### Step 5: Document the redirect map
154 
155Across the portfolio, document every redirect:
156 
157| Source | Destination | Type | Reason | Date set |
158|---|---|---|---|---|
159 
160This is invaluable when something breaks or when planning consolidations.
161 
162### Step 6: Set up monitoring
163 
164Monitor:
165- DNS resolution (alert on NXDOMAIN or wrong IP)
166- HTTPS certificate expiration (alert at 30, 14, 7 days out)
167- Redirect chains (alert if a 301 starts returning 200 or 404)
168- Renewal dates (alert at 90, 30, 7 days out)
169 
170This is the bridge between domain strategy and `monitoring-and-alerting`.
171 
172### Step 7: Document and revisit
173 
174Domain strategy is a quarterly review topic. Renewals, consolidations, and new launches change the picture. Without scheduled review, the portfolio drifts.
175 
176---
177 
178## Failure patterns
179 
180**Both apex and www serve content.** Duplicate content. Pick one, redirect the other.
181 
182**302 redirects where 301 was intended.** 302 is temporary. 301 is permanent. SEO equity passes through 301, not (reliably) through 302.
183 
184**HTTPS not enforced.** HTTP variant serving content alongside HTTPS. Force HTTPS at the edge or the load balancer.
185 
186**Registrar default parking pages.** Parked domains serving registrar ads. Free for the registrar, bad for you. Replace with a redirect or your own page.
187 
188**Domains in multiple registrars by accident.** Migrations that didn't fully complete. Consolidate.
189 
190**No CAA records.** Anyone with a misconfigured ACME client can issue a cert for your domain. CAA limits which CAs can issue. Add it.
191 
192**Auto-renew off "to save money."** Domain accidentally drops, gets snapped up, costs ten times more (or is unrecoverable). Auto-renew is cheap insurance.
193 
194**Subdomains used where subfolders would have been better.** SEO equity gets fragmented across hostnames. The case for a subdomain has to be made; the default is subfolder.
195 
196**Parked domains with thin content "for SEO."** Search engines don't reward this. They penalize doorway pages. Either redirect or leave blank.
197 
198---
199 
200## Output format
201 
202A domain strategy document includes:
203 
204- **Inventory:** the spreadsheet of every domain
205- **Classification:** the role of each
206- **Canonical decisions:** apex vs www, locked
207- **Redirect map:** every redirect in the portfolio
208- **DNS standards:** the default record set
209- **Registrar standards:** locked, 2FA, auto-renew
210- **Monitoring:** what's watched, where alerts go
211- **Renewal calendar:** the next 12 months
212- **Review cadence:** when this gets revisited
213 
214---
215 
216## Reference files
217 
218- [`references/dns-record-reference.md`](references/dns-record-reference.md): Common DNS records explained, with the syntax for the most useful ones (A, AAAA, CNAME, MX, TXT, CAA, SRV, etc.) and when each is needed.
219 

Discussion

Alternatives

Also in Roadmap & prioritiesSee all 277 in Product →