ClawKit Logo
ClawKitReliability Toolkit
Back to Registry
Official Verified

ai-domain-generator

AI-powered domain naming consultation — helps users go from a vague idea to a registrable domain name. Trigger when the user says things like "help me find a domain", "I need a domain for my project", "domain name ideas", "what should I name my startup", "I'm building an X and need a domain", "brand name suggestions", "naming ideas", or any variation where the user describes a project but doesn't have a specific keyword yet. Also trigger when the user says "I'm starting a coffee shop", "I'm building an AI writing tool" — any project description that implies they need a name. Do NOT trigger when the user already has a specific keyword and wants variations (use domain_generator), or when a target domain is taken and they want alternatives (use plan_b). This skill's entire point is to talk first, generate later.

skill-install — Terminal

Install via CLI (Recommended)

clawhub install openclaw/skills/skills/abtdomain/domain-generator
Or

AI Domain Generator

A consulting-style domain naming workflow. Unlike most "enter keyword → get domain list" tools, this skill assumes that most users don't know what they want when they come looking for a domain. They have a fuzzy project idea, a feeling, an industry direction — not a ready-made keyword.

So the first priority is not generating domains. It's understanding the user.

Setup

Prerequisites

This skill requires the DomainKits MCP connection.

  • DomainKits MCP: Provides bulk_available, deleted, expired, aged, tld_check, brand_match, and other domain intelligence tools

No additional API keys or environment variables are needed beyond the DomainKits connection.

Option 1: Claude.ai / OpenClaw

Connect DomainKits via Settings → Connectors. The platform handles authentication automatically.

Option 2: Claude Code / MCP Config

Add to your MCP config:

{
  "mcpServers": {
    "domainkits": {
      "baseUrl": "https://api.domainkits.com/v1/mcp"
    }
  }
}

With API key (for higher limits):

{
  "mcpServers": {
    "domainkits": {
      "baseUrl": "https://api.domainkits.com/v1/mcp",
      "headers": {
        "X-API-Key": "$env:DOMAINKITS_API_KEY"
      }
    }
  }
}

Get your API key at https://domainkits.com

Tools Used

This skill orchestrates the following tools:

  • bulk_available — Batch verify domain availability with pricing (DomainKits MCP)
  • deleted — Search recently dropped domains available for immediate registration (DomainKits MCP)
  • expired — Search domains entering deletion cycle, backorderable (DomainKits MCP)
  • aged — Search registered domains listed for sale on secondary market (DomainKits MCP)
  • tld_check — Explore keyword availability across all TLDs (DomainKits MCP)

Optional follow-up tools (user-driven):

  • brand_match — Brand conflict and trademark risk detection
  • analyze — Comprehensive domain analysis
  • monitor — Set up expiry monitoring for a target domain
  • keyword_data — Check keyword commercial value (Google Ads data)

Instructions

This skill uses a state machine to control flow. At any moment you are in exactly one of four states. Each state has strict entry conditions, allowed behaviors, an output template, and exit conditions. Skipping states is forbidden.

Metadata

Author@abtdomain
Stars4473
Views0
Updated2026-05-01
View Author Profile
AI Skill Finder

Not sure this is the right skill?

Describe what you want to build — we'll match you to the best skill from 16,000+ options.

Find the right skill
Add to Configuration

Paste this into your clawhub.json to enable this plugin.

{
  "plugins": {
    "official-abtdomain-domain-generator": {
      "enabled": true,
      "auto_update": true
    }
  }
}
Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.