namio
v0.0.3
Published
Brandable name generator + .com checker (Attio-inspired)
Downloads
322
Readme
namio
Brandable name generator + .com availability checker, inspired by Attio's naming process: https://attio.com/blog/how-we-chose-the-name-attio
Install / Run
This CLI is published to npm and runs on Node (no Bun required).
# one-off
pnpm dlx namio --help
# or
npx namio --helpCommands
# Generate pronounceable candidates
namio generate --count 500 --min 4 --max 6 --out generated-words.csv
# Check .com availability for a list
namio check --file generated-words.csv --out domain-check-results.csv
# Include "buy now" / auction listings up to a budget
namio check --file generated-words.csv --max-price 2500 --out domain-check-results.csv
# Generate + check until you find N available domains
namio hunt --count 50 --min 4 --max 6 --out domain-check-results.csv
# Same, but allow purchasable domains up to a budget
namio hunt --count 50 --min 4 --max 6 --max-price 2500 --out domain-check-results.csvNotes
- Domain checks use InstantDomainSearch's public API endpoint.
- Results are best-effort and may break if the upstream service changes.
