lobsterdomains
LobsterDomains enables autonomous domain registration across 1000+ ICANN extensions by checking availability, processing cryptocurrency payments in USDC, USDT, ETH, or BTC across multiple blockchains, and returning DNS credentials via REST API. Use this skill when an AI agent needs to programmatically acquire domains without manual browser interaction or traditional payment methods.
git clone --depth 1 https://github.com/davepoon/buildwithclaude /tmp/lobsterdomains && cp -r /tmp/lobsterdomains/plugins/all-skills/skills/lobsterdomains ~/.claude/skills/lobsterdomainsSKILL.md
# LobsterDomains
Register .com, .xyz, .org and 1000+ ICANN domains with cryptocurrency payments via a simple REST API. Built for AI agents to acquire domains fully autonomously.
## When to Use This Skill
- User wants to check if a domain name is available
- User wants to register a domain programmatically without browser interaction
- User wants to pay for domain registration with crypto (USDC/USDT/ETH/BTC)
## What This Skill Does
1. Checks domain availability and live pricing
2. Accepts on-chain payment (USDC/USDT on Ethereum, Arbitrum, Base, or Optimism)
3. Registers the domain and returns DNS management credentials
## Usage
```bash
# Check availability
curl "https://lobsterdomains.xyz/api/v1/domains/check?domain=example.com" \
-H "Authorization: Bearer $LOBSTERDOMAINS_API_KEY"
# Register after payment
curl -X POST https://lobsterdomains.xyz/api/v1/domains/register \
-H "Authorization: Bearer $LOBSTERDOMAINS_API_KEY" \
-H "Content-Type: application/json" \
-d '{"domain":"example.com","tx_hash":"0x...","contact":{"name":"...","email":"..."}}'
```
## Setup
Generate an API key at https://lobsterdomains.xyz/api-keys (requires Ethereum wallet auth).
## Links
- Website: https://lobsterdomains.xyz
- ClawHub: https://clawhub.ai/esokullu/lobsterdomains
- Full docs: https://lobsterdomains.xyz/skills.mdScans the codebase for dead code, tech debt, outdated dependencies, and code quality issues. Delegates to the Centinela (QA) agent.
Creates a complete product feature specification with acceptance criteria, scope, dependencies, and risks. Delegates to the Prometeo (PM) agent.
Implements a feature from its specification. Reads the spec, designs architecture, writes code and tests. Delegates to the Forja (Dev) agent.
Pre-release verification checklist. Validates features, tests, docs, security, and quality gates before shipping. Delegates to the Centinela (QA) agent.
Addresses and fixes findings from a QA code review. Reads the review report, fixes critical and warning issues, and prepares for re-verification. Delegates to the Forja (Dev) agent.
Deep security audit covering OWASP Top 10, authentication, authorization, data protection, dependency vulnerabilities, and secrets scanning. Delegates to the Centinela (QA) agent.
Initialize uc-taskmanager for the current project. Creates works/ directory and configures Bash permissions in .claude/settings.local.json. Use when the user says "uctm init", "initialize uctm", "uctm 초기화", or "초기화".