borghei/domain-name-brainstormer
> Generate and score candidate brand, product, and domain names for memorability and pronounceability. Use when naming a new product, company, or feature, brainstorming brand names, or finding an available .com.
npx skills add https://github.com/borghei/Claude-Skills --skill domain-name-brainstormer
Generate and score candidate brand / domain names from seed words using common naming patterns. The script does not check live registration — it produces candidates fast so you can spend your time evaluating the best ones.
domain, domain name, naming, brand naming, product name, company name, .com, brainstorm, naming brainstorm, brand identity, naming strategy
Before generating names, confirm these inputs. If any is unknown or vague, ASK — do not assume:
tld_suffix pattern appliesStop rule: ask only the 2-3 that most change the output. If the user says "just draft it," proceed and list your assumptions at the top of the artifact.
python scripts/name_generator.py "data,insight,signal" --count 200
Then:
Goal: Convert a few keywords describing the product into 100+ ranked candidates.
Steps:
python scripts/name_generator.py "seed1,seed2,seed3" --count 200references/naming_framework.mdExpected Output: Ranked list of candidates with scores, classified by pattern (vowel-drop, blend, prefix-suffix, TLD-as-suffix).
Time Estimate: 5-10 minutes.
Goal: Get more of one specific pattern (e.g., only blends, or only TLD-as-suffix names).
Steps:
python scripts/name_generator.py "fast,ship" --pattern blend --count 100vowel_drop, prefix_suffix, blend, tld_suffix, repeat, allExpected Output: Pattern-specific list.
Time Estimate: 5 minutes per pattern variation.
Goal: Avoid wasting energy on names that are obviously taken.
Steps:
> The script does not automate registrar lookups — those need real network calls and rate-limited APIs. Doing this step manually for a 10-name shortlist takes 10-15 minutes.
Generates candidate names by applying naming patterns to seed words and scores each on length, pronounceability, and uniqueness.
# Default: 100 candidates, all patterns
python scripts/name_generator.py "data,signal,insight"
# More results
python scripts/name_generator.py "data,signal" --count 300
# One pattern only
python scripts/name_generator.py "data,signal" --pattern vowel_drop
# JSON for programmatic use
python scripts/name_generator.py "data,signal" --json
Patterns implemented:
vowel_drop — Remove inner vowels: "data" → "dta", "insight" → "nsght"prefix_suffix — Add common naming prefixes/suffixes: "ly", "ify", "io", "lab", "labs", "hq", "co", "stack", "kit", "app"blend — Combine two seeds: "data" + "signal" → "dasignal", "datignal"tld_suffix — Treat TLD as part of the name: "send.fast" reads as "sendfast"repeat — Doubling pattern: "data" → "datadata"Score (0-100) factors:
references/naming_framework.md — Why names matter, the elimination filter, naming-pattern playbook, common pitfalls.io or .ai is fine for most B2B products in 2026; .com matters less than it did a decade ago.marketing/brand-strategist/ for brand-narrative workmarketing/landing-page-generator/ for messaging once a name is chosenc-level-advisor/ workflows during company / product launchesTake borghei/domain-name-brainstormer from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.