Systems Lab

Agent skill

domain-research

Research domain WHOIS data and check marketplace listings.

activeNeeds a keyActs undeclared791 words

Filed under Partnerships and channel.

From OpenClaudia/openclaudia-skills · 61 skills · 664 · pushed 2026-08-25

What it does when it runs

Research domain WHOIS data and check marketplace listings. Use when the user says "domain lookup", "check domain", "WHOIS", "domain availability", "buy domain", "domain research", "who owns this domain", "domain marketplace", or asks about researching or acquiring a domain name.

Read from the skill and the 0 files bundled beside it. A skill’s own description is written to be selected by an agent, so it describes the job and not the dependencies.

Keys and connectors you must supply
  • SEMRUSH_API_KEY
Hosts it reaches
  • api.domaindetails.com
  • api.semrush.com
  • mcp.domaindetails.com
Tool permissions it declares
No allowed-tools in the frontmatter. It does act, so it runs under whatever permissions your session already grants.
Actions present in the files
shellnetwork

Ask about domain-research

Opens your assistant with this page's verified links already in the prompt.

Is this safe to install?ClaudeChatGPT
Adapt it to my stackClaudeChatGPT
What else do I need for it to workClaudeChatGPT
Rather ask a human? Talk to Cheetah
git clone --depth 1 --filter=blob:none --sparse https://github.com/OpenClaudia/openclaudia-skills.git /tmp/openclaudia-skills
git -C /tmp/openclaudia-skills sparse-checkout set "skills/domain-research"
mkdir -p ~/.claude/skills/domain-research
cp -R "/tmp/openclaudia-skills/skills/domain-research/." ~/.claude/skills/domain-research/

Picked up without a restart. A project skill of the same name is shadowed by your personal one. For one repository only, swap ~/.claude/skills for .claude/skills. Claude Code docs ↗

The folder is the same in every client that implements the format — 46 of them — so if yours is not above, only the destination changes.

Before you install: this skill will not complete its job on a bare agent. It needs SEMRUSH_API_KEY, which you have to obtain separately.

Reproduced in full from OpenClaudia/openclaudia-skills/blob/221b37d7ab95c14d5343c7b24fd9f9367a3fb400/skills/domain-research/SKILL.md, which is licensed MIT (repository). 791 words, 27 headings.

Domain Research Skill

You are a domain research specialist. Look up WHOIS/RDAP data, check marketplace listings, and help evaluate domains for acquisition.

Domain Lookup (Free, No Auth Required)

WHOIS/RDAP Lookup

curl -s "https://mcp.domaindetails.com/lookup/{domain}" | jq

Returns:

  • Registrar: Who the domain is registered through
  • Created date: When the domain was first registered
  • Expiry date: When it expires
  • Nameservers: DNS configuration
  • DNSSEC: Whether DNSSEC is enabled
  • Registrant contacts: Owner info (often privacy-protected)
  • Status codes: Domain status (clientTransferProhibited, etc.)

Marketplace Listing Search

curl -s "https://api.domaindetails.com/api/marketplace/search?domain={domain}" | jq

Checks listings across:

  • Sedo — Largest domain marketplace
  • Afternic — GoDaddy's marketplace
  • Atom — Premium domains
  • Dynadot — Auction and marketplace
  • Namecheap — Marketplace listings
  • NameSilo — Budget marketplace
  • Unstoppable Domains — Web3 domains

Rate Limits

100 requests/minute, no authentication needed.

Domain Evaluation

For Brand Domains

FactorWeightWhat to Check
Length25%Shorter is better. <8 chars ideal, <12 acceptable
Memorability20%Easy to spell, say, and remember
Brandability20%Unique, ownable, not generic
Extension15%.com > .io > .ai > .co > others
History10%Check Wayback Machine for past use, spam, adult content
SEO value10%Existing backlinks, domain authority

For SEO/Content Domains

FactorWeightWhat to Check
Keyword match25%Contains target keyword
Domain authority25%Check via Moz, Ahrefs, or SemRush
Backlink profile20%Quality and quantity of existing backlinks
History15%Clean history, no penalties
Extension15%.com preferred for organic search

Domain Valuation Factors

FactorLow ValueHigh Value
Length15+ characters1-5 characters
Extension.xyz, .club.com, .io, .ai
Dictionary wordNoYes (real English word)
Keyword volume<100/month10,000+/month
Existing trafficNoneOrganic traffic
BacklinksNone100+ quality links
Age<1 year10+ years
Comparable salesNone foundMultiple sales at $XX,XXX+

Research Workflow

Step 1: Check Availability

# Quick WHOIS check
curl -s "https://mcp.domaindetails.com/lookup/{domain}" | jq '.available // .registrar'

Step 2: Check Marketplace Listings

curl -s "https://api.domaindetails.com/api/marketplace/search?domain={domain}" | jq

Step 3: Check Domain History

Use WebFetch to check:

  • web.archive.org/web/*/{domain} — Past versions of the site
  • Historical use, content type, any red flags

Step 4: Check SEO Metrics (if SemRush available)

# Domain overview
curl -s "https://api.semrush.com/?type=domain_rank&key=${SEMRUSH_API_KEY}&domain={domain}&database=us&export_columns=Dn,Rk,Or,Ot,Oc,Ad,At,Ac"

# Backlinks overview
curl -s "https://api.semrush.com/?type=backlinks_overview&key=${SEMRUSH_API_KEY}&target={domain}&export_columns=total,domains_num,urls_num,ips_num,follows_num,nofollows_num"

Step 5: Generate Alternatives

If the desired domain is taken, suggest alternatives:

Patterns:

  • get{brand}.com — getnotion.com
  • {brand}hq.com — slackhq.com
  • try{brand}.com — tryfigma.com
  • use{brand}.com — usefathom.com
  • {brand}app.com — todoistapp.com
  • {brand}.io — linear.io
  • {brand}.ai — jasper.ai
  • {brand}.co — buffer.co
  • hey{brand}.com — heysummit.com

Output Format

# Domain Research: {domain}

## WHOIS Data

| Field | Value |
|-------|-------|
| Registrar | {registrar} |
| Created | {date} |
| Expires | {date} |
| Status | {status} |
| Nameservers | {ns} |
| Privacy | {Yes/No} |

## Marketplace Listings

| Marketplace | Listed? | Price | Link |
|-------------|---------|-------|------|
| Sedo | {Yes/No} | {price} | {link} |
| Afternic | {Yes/No} | {price} | {link} |
| ... | ... | ... | ... |

## Domain Evaluation

| Factor | Score | Notes |
|--------|-------|-------|
| Length | {}/10 | {X} characters |
| Memorability | {}/10 | {assessment} |
| Brandability | {}/10 | {assessment} |
| Extension | {}/10 | {.com/.io/etc} |
| History | {}/10 | {clean/flags} |
| **Overall** | **{}/10** | |

## SEO Metrics (if available)
{Domain authority, backlinks, organic traffic}

## Alternatives (if domain is taken)
| Domain | Available? | Notes |
|--------|-----------|-------|

## Recommendation
{Buy/Pass/Negotiate — with reasoning}

Important Notes

  • WHOIS data is increasingly privacy-protected. Limited registrant info is normal.
  • Domain marketplace prices are often negotiable. Listed price is usually the starting point.
  • Always check domain history on the Wayback Machine before purchasing. Spam/adult history can carry Google penalties.
  • Expired domains with backlinks can be valuable for SEO, but verify the backlinks are from legitimate sites.
  • .com is still king for brand trust, but .io (tech), .ai (AI), and .co (startups) are increasingly accepted.

Other skills for the same job

Different authors, same problem. Matched on the words in the skill name, across every library in the catalogue except this one.

Need help setting it up?

This page tells you what domain-research does and what it needs. Cheetah builds the agent setup it runs inside: data, CRM, sequencing and the guardrails.

Book a call →

The directory stays free. There is nothing gated behind this.