Agent skill

domain-hunter

Search domains, compare prices, find promo codes, get purchase recommendations. Use when user wants to buy a domain, check domain prices, find domain deals, compare registrars, or search for .ai/.com domains.

ReScienceLabgithub.com/ReScienceLabGitHub ↗
claude-codeApache-2.0
Install
npx skills add ReScienceLab/opc-skills --skill domain-hunter --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 5
SKILL.md size: 4 KB
Bundled scripts: none
Path: skills/domain-hunter/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,192
Language: Python

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Domain Hunter Skill Help users find and purchase domain names at the best price. ## Workflow ### Step 1: Generate Domain Ideas & Check Availability Based on the user's project description, generate 5-10 creative domain name suggestions. **Guidelines:** - Keep names short (under 15 characters) - Make them memorable and brandable - Consider: `{action}{noun}`, `{noun}{suffix}`, `{prefix}{keyword}` - Common suffixes: app, io, hq, ly, ify, now, hub **CRITICAL: Always check availability before presenting domains to user!** Use one of these methods to verify availability: **Method 1: WHOIS check (most reliable)** ```bash # 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: ```bash open "https://www.spaceship.com/domains/?search={domain}.{tld}" ``` **Method 3: Bulk check via Namecheap/Dynadot** - https://www.namecheap.com/domains/registration/results/?domain={domain} - https://www.dynadot.com/domain/search?domain={domain} **IMPORTANT:** - Only present domains that are confirmed A

What's inside
Steps it walks through
  1. Workflow
  2. Step 1: Generate Domain Ideas & Check Availability
  3. Step 2: Compare Prices
  4. Step 3: Find Promo Codes
  5. Step 4: Recommend
  6. Important Notes
  7. References
Ships with 4 files
  • .claude-plugin/plugin.json
  • examples/auto-video-editing-domain.md
  • references/registrars.md
  • references/spaceship-api.md
Commands it runs
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"
open "https://www.spaceship.com/domains/?search={domain}.{tld}"
cd <twitter_skill_directory>
python3 scripts/search_tweets.py "from:{registrar} promo code" --type Latest --limit 15
python3 scripts/search_tweets.py "{registrar} promo code coupon" --type Latest --limit 15
cd <reddit_skill_directory>
python3 scripts/search_posts.py "{registrar} promo code" --limit 15
python3 scripts/search_posts.py "{registrar} coupon discount" --subreddit Domains --limit 10
More from opc-skills
All skills →
About this skill
What does the domain-hunter skill do?

Search domains, compare prices, find promo codes, get purchase recommendations. Use when user wants to buy a domain, check domain prices, find domain deals, compare registrars, or search for .ai/.com domains.

How do I install it?

Run `npx skills add ReScienceLab/opc-skills --skill domain-hunter --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From ReScienceLab/opc-skills, a repository with 1,192 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going