agentsclimarketplace

Affix domains

Skill soulmachine/skills/affix-domains

Skills shared by soulmachine for improving daily work efficiency with AI Agents (Claude Code, Codex, etc.)

Install
npx -y skills add soulmachine/skills --skill affix-domains

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 3 stars3 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Attach popular brand prefixes/suffixes to a seed word and check each `.com` via Verisign RDAP. Use when the user names a word and asks for prefix/suffix `.com` variants, or wants domains generated by adding endings like -ly/-ify/-hub or beginnings like open-/get-/go-.

SKILL.md

5.2 KB, as published. Nobody here has run it

affix-domains

Affix a seed word with common brand prefixes and suffixes, check each .com live, and prompt the user to register the free ones.

Steps

  1. Generate candidates. For seed W, produce W + each suffix and each prefix + W from the catalog below. Lowercase. Dedupe. Drop any combination that spells an existing English word (e.g. getup, openbox) — its .com is almost certainly taken and burns an RDAP call. If the user hints a style (playful, techy, marketplace…), weight the matching categories; default is every category.

  2. Check .com availability via Verisign RDAP (authoritative for .com):

    for d in cand1.com cand2.com ...; do
      code=$(curl -s -o /dev/null -w "%{http_code}" --max-time 10 \
        "https://rdap.verisign.com/com/v1/domain/${d}")
      # 404 = AVAILABLE, 200 = TAKEN
    done
    

    For >15 candidates parallelize with xargs -P 8. Treat only 404 as available; anything else means taken or ambiguous.

  3. Surface the survivors grouped by the catalog category that produced them. One line per free .com.

  4. Prompt the user to register. Ask which they want to take. Point them to Cloudflare Registrar (or their preferred one). Do not enter payment on their behalf — registration is the user's action.

Suffix catalog

Verbifier — "does X as a service"

AffixFeel · exemplars
-ifyturns the word into a service (Spotify, Shopify)
-izesystematize (Rentalize)
-ateautomate/activate (Automate)

Short & modern

AffixFeel · exemplars
-lySaaS all-rounder (Bitly, Calendly, Grammarly)
-rdrop-vowel web-2.0 (Tumblr, Flickr)
-ycute, casual (Etsy)

Doer

AffixFeel · exemplars
-eractor/agent (Uber, Tinder)
-ormechanical (Vector)
-istspecialist (Stylist)

Companion

AffixFeel · exemplars
-buddyfriendly helper (GasBuddy)
-paltrusted friend (PayPal)
-matesidekick (Mailmate)
-botautomated agent

Tool & hub

AffixFeel · exemplars
-hubgathering point (GitHub)
-basefoundation/platform (Coinbase, Firebase, Supabase)
-boxpackaged tool (Dropbox)
-kittoolkit (ConvertKit)
-padworkspace (Launchpad)
-spaceroom to work (Squarespace)
-stacktech stack (Substack)
-labsR&D shop (Bell Labs)
-worksworkshop (SolidWorks)

Vowel endings — playful, globally pronounceable

AffixFeel · exemplars
-ooround, cute (Yahoo)
-eesoft (Renee-like)
-opunchy (Venmo)
-asmooth (Tesla, Zara)
-ianame-like (Nvidia, Expedia)
-oraelegant Latin (Pandora)
-usLatin gravitas (Prius)
-exsharp, techy (FedEx)
-ixtechy (Netflix)

Stylized & meme

AffixFeel · exemplars
-zillamonster-big (Mozilla)
-maticmachine-magic (Instamatic)
-aroobouncy-cute (Kangaroo)
-versea whole universe (metaverse)

Vertical positioning

AffixFeel · exemplars
-baymarketplace (eBay)
-castmedia/broadcast (Podcast)
-appapplication (Cash App)

Prefix catalog

Call-to-action

AffixFeel · exemplars
get-grab it (GetResponse)
go-momentum (GoDaddy, GoPro)
use-utility (Usebutton)
try-low-commitment invite
join-community invite
meet-introduction (MeetUp-style)
hey-friendly hail (Hey.com)

Possessive

AffixFeel · exemplars
my-personal (MySpace, MyFitnessPal)
the-definitive (TheVerge)

Scale & depth

AffixFeel · exemplars
deep-serious tech (DeepMind, DeepSeek)
ever-permanence (Evernote)
every-universality (Everlane-like)
super-boosted (Superhuman)
ultra-extreme
up-rising (Upwork)

Newness & openness

AffixFeel · exemplars
open-transparent/community (OpenAI, OpenTable)
neo-new wave (Neobank)
meta-beyond (Meta)
next-successor (NextDoor)
real-authentic (RealPage)
live-real-time (LiveChat)

Speed & ease

AffixFeel · exemplars
fast-velocity (Fastly)
quick-instant (QuickBooks)
easy-frictionless (EasyJet)
smart-intelligent (SmartThings)

AI & agents

AffixFeel · exemplars
ai-AI-native signal (AI21)
chat-conversational (ChatGPT)
agent-autonomous doer (Agentforce)
agentic-agent-native workflows (agentic AI wave)

Rules

  • Live RDAP only — never claim availability from cached knowledge or prior turns of this conversation. Domains get registered between checks.
  • .com only — this skill's contract. If everything is taken, note that other TLDs are out of scope and offer a companion check.
  • No payment on the user's behalf. Prompt them to register; they check out.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.