Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计通过

search-domain-validator搜索域验证器

Agent Skill

search-domain-validator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

2,521

周安装

102

GitHub Stars

21

下载量

792
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:search-domain-validator(搜索域验证器)
来源仓库:https://github.com/shipshitdev/library
仓库路径:skills/search-domain-validator
安装命令:
npx skills add https://github.com/shipshitdev/library --skill search-domain-validator
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/shipshitdev/library --skill search-domain-validator

简介

search-domain-validator 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词快速定位候选结果时使用。

  • 它可结合来源仓库、安装命令和原始 README 继续核验具体用法。
  • 安装前建议确认权限范围、维护状态,以及是否会触发联网或文件读写。
  • 适用于域名验证与搜索相关场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装。

SKILL.md

Search Domain Name Validator

Overview

This skill enables validation of domain name formats, checking domain availability status, and searching for available domain names based on keywords. It will implement domain validation logic, integrate with domain availability APIs, and provide domain search functionality.

When to Use This Skill

This skill activates automatically when users:

  • Need to validate domain name format or syntax
  • Want to check if a domain is available for registration
  • Need to search for available domain names based on keywords
  • Require domain validation in forms or applications
  • Need to verify domain name compliance with RFC standards
  • Want to implement domain suggestion features

Project Context Discovery

Before providing domain validation guidance, discover the project's context:

  1. Scan Project Documentation:

- Check for existing domain validation logic - Review form validation patterns - Look for API integration patterns - Check for environment variable usage

  1. Identify Existing Patterns:

- Review validation libraries in use - Check for API client patterns - Review error handling approaches - Check for domain-related utilities

  1. Use Project-Specific Skills:

- Check for [project]-domain-validator skill - Review project-specific validation patterns - Follow project's validation standards

Core Capabilities

1. Domain Format Validation

Validate domain names according to RFC 1035 and RFC 1123 standards.

Domain Name Rules:

  • Length: 1-253 characters total
  • Labels: Up to 63 characters each
  • Characters: Letters (a-z, A-Z), digits (0-9), hyphens (-)
  • Labels cannot start or end with hyphens
  • TLD (top-level domain) required
  • Cannot contain consecutive hyphens

Validation Implementation:

// TypeScript/JavaScript domain validation
function isValidDomain(domain: string): boolean {
  if (!domain || domain.length > 253) {
    return false;
  }

  // RFC 1035 compliant regex
  const domainRegex = /^(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?$/i;

  if (!domainRegex.test(domain)) {
    return false;
  }

  // Check label length (max 63 chars)
  const labels = domain.split('.');
  for (const label of labels) {
    if (label.length > 63 || label.length === 0) {
      return false;
    }
    // Labels cannot start or end with hyphen
    if (label.startsWith('-') || label.endsWith('-')) {
      return false;
    }
  }

  return true;
}

Python Validation:

import re

def is_valid_domain(domain: str) -> bool:
    """Validate domain name format according to RFC 1035 and RFC 1123."""
    if not domain or len(domain) > 253:
        return False

    # RFC 1035 compliant regex
    domain_pattern = r'^(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?$'

    if not re.match(domain_pattern, domain, re.IGNORECASE):
        return False

    # Check label length (max 63 chars)
    labels = domain.split('.')
    for label in labels:
        if len(label) > 63 or len(label) == 0:
            return False
        # Labels cannot start or end with hyphen
        if label.startswith('-') or label.endswith('-'):
            return False

    return True

NestJS Validation:

import { IsString, Matches, MaxLength, ValidateIf } from 'class-validator';

export class DomainDto {
  @IsString()
  @MaxLength(253)
  @Matches(
    /^(?:[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]{0,61}[a-z0-9])?$/i,
    {
      message: 'Invalid domain name format',
    }
  )
  domain: string;
}

2. Domain Availability Checking

Check if a domain is available for registration using domain availability APIs.

Common Domain Availability APIs:

  • Namecheap API
  • GoDaddy API
  • Name.com API
  • WHOIS lookups (for basic checks)

Namecheap API Integration:

// Namecheap domain availability check
async function checkDomainAvailability(domain: string): Promise<boolean> {
  const apiUser = process.env.NAMECHEAP_API_USER;
  const apiKey = process.env.NAMECHEAP_API_KEY;
  const clientIp = process.env.NAMECHEAP_CLIENT_IP;

  const url = `https://api.namecheap.com/xml.response?ApiUser=${apiUser}&ApiKey=${apiKey}&UserName=${apiUser}&Command=namecheap.domains.check&ClientIp=${clientIp}&DomainList=${domain}`;

  try {
    const response = await fetch(url);
    const xml = await response.text();

    // Parse XML response
    // Available domains return <DomainCheckResult Domain="example.com" Available="true"/>
    return xml.includes('Available="true"');
  } catch (error) {
    console.error('Error checking domain availability:', error);
    throw error;
  }
}

GoDaddy API Integration:

// GoDaddy domain availability check
async function checkGoDaddyAvailability(domain: string): Promise<boolean> {
  const apiKey = process.env.GODADDY_API_KEY;
  const apiSecret = process.env.GODADDY_API_SECRET;

  const url = `https://api.godaddy.com/v1/domains/available?domain=${domain}`;

  try {
    const response = await fetch(url, {
      headers: {
        'Authorization': `sso-key ${apiKey}:${apiSecret}`,
        'Content-Type': 'application/json',
      },
    });

    const data = await response.json();
    return data.available === true;
  } catch (error) {
    console.error('Error checking domain availability:', error);
    throw error;
  }
}

NestJS Service Example:

import { Injectable } from '@nestjs/common';
import { HttpService } from '@nestjs/axios';
import { firstValueFrom } from 'rxjs';

@Injectable()
export class DomainService {
  constructor(private httpService: HttpService) {}

  async checkAvailability(domain: string): Promise<boolean> {
    const apiKey = process.env.DOMAIN_API_KEY;
    const apiSecret = process.env.DOMAIN_API_SECRET;

    try {
      const response = await firstValueFrom(
        this.httpService.get(`https://api.example.com/domains/check`, {
          params: { domain },
          headers: {
            'Authorization': `Bearer ${apiKey}`,
          },
        })
      );

      return response.data.available;
    } catch (error) {
      throw new Error(`Failed to check domain availability: ${error.message}`);
    }
  }
}

3. Domain Search Functionality

Search for available domain names based on keywords, generating suggestions and alternatives.

Domain Suggestion Algorithm:

function generateDomainSuggestions(keyword: string, tlds: string[] = ['com', 'io', 'net', 'org']): string[] {
  const suggestions: string[] = [];
  const sanitized = keyword.toLowerCase().replace(/[^a-z0-9-]/g, '');

  // Direct combinations
  for (const tld of tlds) {
    suggestions.push(`${sanitized}.${tld}`);
  }

  // Common prefixes
  const prefixes = ['get', 'try', 'use', 'my', 'the'];
  for (const prefix of prefixes) {
    for (const tld of tlds) {
      suggestions.push(`${prefix}${sanitized}.${tld}`);
    }
  }

  // Common suffixes
  const suffixes = ['app', 'hub', 'ly', 'fy', 'io'];
  for (const suffix of suffixes) {
    for (const tld of tlds) {
      suggestions.push(`${sanitized}${suffix}.${tld}`);
    }
  }

  return suggestions;
}

Batch Availability Check:

async function searchAvailableDomains(keyword: string): Promise<string[]> {
  const suggestions = generateDomainSuggestions(keyword);
  const availableDomains: string[] = [];

  // Check availability for all suggestions (with rate limiting)
  for (const domain of suggestions) {
    try {
      const isAvailable = await checkDomainAvailability(domain);
      if (isAvailable) {
        availableDomains.push(domain);
      }
      // Rate limiting delay
      await new Promise(resolve => setTimeout(resolve, 100));
    } catch (error) {
      console.error(`Error checking ${domain}:`, error);
    }
  }

  return availableDomains;
}

Best Practices

Validation

  • Always validate domain format before checking availability
  • Handle edge cases (internationalized domain names, subdomains)
  • Provide clear error messages for invalid domains
  • Consider validating TLD separately if needed

API Integration

  • Store API credentials in environment variables
  • Implement rate limiting to avoid API throttling
  • Handle API errors gracefully
  • Cache availability results when appropriate
  • Use appropriate timeouts for API calls

User Experience

  • Provide real-time validation feedback
  • Show domain suggestions as user types
  • Display availability status clearly
  • Offer alternative TLD suggestions
  • Handle loading states during availability checks

Security

  • Never expose API keys in client-side code
  • Validate and sanitize all user input
  • Implement proper error handling
  • Use HTTPS for all API communications
  • Follow API provider's security guidelines

Example User Requests

Example 1: "Validate this domain: example.com"

  • Use format validation to check if the domain follows RFC standards
  • Return validation result with specific error details if invalid

Example 2: "Check if example.com is available"

  • Validate domain format first
  • Call domain availability API
  • Return availability status

Example 3: "Search for available domains with keyword 'techstartup'"

  • Generate domain suggestions based on keyword
  • Check availability for each suggestion
  • Return list of available domains with pricing if available

Example 4: "Implement domain validation in this form"

  • Add domain validation to form component
  • Integrate real-time validation
  • Provide user feedback for invalid domains

Common Domain TLDs

Generic TLDs:

  • .com,.net,.org,.info,.biz

New gTLDs:

  • .app,.dev,.io,.ai,.tech,.online,.xyz

Country Code TLDs:

  • .us,.uk,.ca,.au,.de,.fr,.jp

When implementing domain search, consider including popular TLDs relevant to the user's context or industry.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

27.74%
按下载量换算220

Gemini CLI

26.68%
按下载量换算211

Antigravity

20.22%
按下载量换算160

OpenCode

11.95%
按下载量换算95

Codex

7.44%
按下载量换算59

windsurf

3.33%
按下载量换算26

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills