From digital-marketing
Searches domain availability via WHOIS, compares registrar prices, finds promo codes, and recommends best purchases. Use when buying domains or checking prices.
How this skill is triggered — by the user, by Claude, or both
Slash command
/digital-marketing:domain-hunterThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
<!-- upstream: ReScienceLab/opc-skills - skills/domain-hunter/SKILL.md -->
Help users find and purchase domain names at the best price.
Based on the user's project description, generate 5-10 creative domain name suggestions.
Guidelines:
{action}{noun}, {noun}{suffix}, {prefix}{keyword}CRITICAL: Always check availability before presenting domains to user!
Use one of these methods to verify availability:
Method 1: WHOIS check (most reliable)
# Check if domain is available via whois
whois {domain}.{tld} 2>/dev/null | grep -i "no match\|not found\|available\|no data found" && echo "AVAILABLE" || echo "TAKEN"
Method 2: Registrar search page Open the registrar's domain search in browser to verify:
open "https://www.spaceship.com/domains/?search={domain}.{tld}"
Method 3: Bulk check via Namecheap/Dynadot
IMPORTANT:
Use WebSearch to find current prices:
WebSearch: "cheapest .{tld} domain registrar 2026 site:tld-list.com"
WebSearch: ".{tld} domain price comparison tldes.com"
Key price comparison sites:
Use WebSearch to search registrar social accounts and communities for promo codes:
Twitter/X search - search registrar accounts for recent promos:
WebSearch: "site:x.com from:{registrar} promo code"
WebSearch: "site:x.com {registrar} promo code coupon"
Reddit search - search domain communities for deals:
WebSearch: "site:reddit.com r/Domains {registrar} promo code"
WebSearch: "site:reddit.com r/Domains {registrar} coupon discount"
Major registrar Twitter handles:
Present final recommendation in this format:
## Recommendation
**Domain:** example.ai
**Best Registrar:** Spaceship
**Price:** $68.98/year (2-year minimum = $137.96)
**Promo Code:** None available for .ai
**Purchase Link:** https://www.spaceship.com/
### Price Comparison
| Registrar | Year 1 | Renewal | 2-Year Total |
|-----------|--------|---------|--------------|
| Spaceship | $68.98 | $68.98 | $137.96 |
| Cloudflare| $70.00 | $70.00 | $140.00 |
| Porkbun | $71.40 | $72.40 | $143.80 |
If the user has configured API keys, use the domain checker script for bulk availability checks:
python scripts/domain_checker.py name1 name2 name3
The script checks .com, .app, .io, .co availability via WHOIS API. See scripts/domain_checker.py for setup instructions.
If no API key is available, fall back to WHOIS CLI checks (Step 1, Method 1) or WebSearch queries.
npx claudepluginhub acaprino/claude-code-daodan --plugin digital-marketingGuides completion of development work by verifying tests, detecting environment, and presenting structured options for merge, PR, or cleanup.
Guides creation and editing of skills using test-driven development with pressure scenarios and subagents to verify agent compliance.
Dispatches multiple subagents concurrently for independent tasks without shared state. Use when facing 2+ unrelated failures or subsystems that can be investigated in parallel.