From tim-skills
Check domain-name availability and brainstorm brandable names to buy. Use when the user wants to know if a domain is available/taken, find an available name for a project, compare names across TLDs (.com/.ai/.io/...), or pick a product/company/brand name. Triggers: "is X.com available", "find a domain", "check these domains", "available domain names", "name this project/product/company", "brainstorm a brand name", "domain availability".
How this skill is triggered — by the user, by Claude, or both
Slash command
/tim-skills:domain-searchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Brainstorm brandable names and check which domains are actually available to register.
Brainstorm brandable names and check which domains are actually available to register.
Availability is determined with RDAP — the official IETF successor to WHOIS (RFC 9082/9083).
Query https://rdap.org/domain/<fqdn>, which routes to the responsible registry and returns:
This is authoritative and free. It is more reliable than scraping Instant Domain Search / GoDaddy, whose public endpoints change and rate-limit. RDAP tells you registered or not; it does not price premium/reserved names — confirm the final price at a registrar.
.io historically had no RDAP, and some ccTLDs still don't.
UNKNOWN means "couldn't determine" — never report it as available..com, .ai, .net, .org, .app, .dev, .co work well via RDAP.scripts/check-domains.sh — batch checker. Always pass it as an explicit list (zsh does not
word-split unquoted variables, so loop over arrays or pass args directly).
# Names × TLDs (cartesian):
bash scripts/check-domains.sh --tlds com,ai,app myname otherword
# Explicit FQDNs:
bash scripts/check-domains.sh acme.com acme.ai foo.io
# Machine-readable (for further processing):
bash scripts/check-domains.sh --json --tlds com,ai myname
Output uses ✅ AVAILABLE / ❌ taken / ❓ unknown.
verb+suffix (-ly, -ify, -ish). Short single words are almost always
taken on .com; compounds and coined words are where .com wins are found..com,.ai)..com and .ai; add .app/.io/.dev for developer-facing tools.Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub thattimc/skills --plugin tim-skills