pp-domain-goat
Identify domains worth buying — across RDAP, WHOIS, and Porkbun pricing — without ever leaving the terminal. Trigger phrases: `find me a domain name`, `check if this domain is available`, `is example.io available`, `generate brand name candidates`, `compare these domain options`, `what domains are dropping soon`, `score this domain name`, `5 year cost of this domain`, `use domain-goat`, `run domain-goat`.
What this skill does
<!-- GENERATED FILE — DO NOT EDIT.
This file is a verbatim mirror of library/developer-tools/domain-goat/SKILL.md,
regenerated post-merge by tools/generate-skills/. Hand-edits here are
silently overwritten on the next regen. Edit the library/ source instead.
See the repository agent guide, section "Generated artifacts: registry.json, cli-skills/". -->
# Domain Goat — Printing Press CLI
## Prerequisites: Install the CLI
This skill drives the `domain-goat-pp-cli` binary. **You must verify the CLI is installed before invoking any command from this skill.** If it is missing, install it first:
1. Install via the Printing Press installer. It defaults binaries to `$HOME/.local/bin` on macOS/Linux and `%LOCALAPPDATA%\Programs\PrintingPress\bin` on Windows:
```bash
npx -y @mvanhorn/printing-press-library install domain-goat --cli-only
```
2. Verify: `domain-goat-pp-cli --version`
3. Ensure the reported install directory is on `$PATH` for the agent/runtime that will invoke this skill.
If the `npx` install fails (no Node, offline, etc.), fall back to a direct Go install (requires Go 1.26.3 or newer):
```bash
go install github.com/mvanhorn/printing-press-library/library/developer-tools/domain-goat/cmd/domain-goat-pp-cli@latest
```
If `--version` reports "command not found" after install, the runtime cannot see the binary directory on `$PATH`. Do not proceed with skill commands until verification succeeds.
## When to Use This CLI
Reach for domain-goat when you need to identify (not transact) domains worth registering — bulk-checking a name list across many TLDs, generating brandable variants, scoring candidates, watching for drops, comparing 5-year true cost across TLDs, or driving any of those workflows from an agent via MCP. Skip it if you already know which domain you want and just need to buy it — that's a registrar's job.
## When Not to Use This CLI
Do not activate this CLI for requests that require creating, updating, deleting, publishing, commenting, upvoting, inviting, ordering, sending messages, booking, purchasing, or changing remote state. This printed CLI exposes read-only commands for inspection, export, sync, and analysis.
## Unique Capabilities
These capabilities aren't available in any other tool for this API.
### Local state that compounds
- **`shortlist promote`** — Promote the top-N candidates from a list into a finalist sub-list ranked by combined score, price, and availability.
_When an agent needs to converge on a buyable shortlist, this collapses 'fetch scores, fetch prices, fetch availability, sort, persist' into one deterministic call._
```bash
domain-goat-pp-cli shortlist promote --list ai-startup --top 10 --by combined --agent
```
- **`budget`** — Filter candidates whose 5-year total cost (registration + 4 renewals) is under your ceiling, sorted ascending.
_Avoid the $12-year-1 / $4,800-renewal trap before falling in love with a name._
```bash
domain-goat-pp-cli budget --list ai-startup --max-annual-cost 50 --years 5 --available-only
```
- **`compare`** — One row per domain with score, length, TLD prestige, cross-registrar price, RDAP status, and drop flag.
_Lets an agent or user finalize a shortlist in one command instead of cross-referencing 5 tabs._
```bash
domain-goat-pp-cli compare kindred.io kindred.ai kindred.studio --json --select status,price,score
```
- **`why-killed`** — Show why a domain is no longer on the active shortlist: status, score, notes, tag history, last price.
_Agency teams kill the same name twice in a sprint without this — and an agent re-suggesting a killed name burns user trust._
```bash
domain-goat-pp-cli why-killed kindred.studio --json
```
- **`tld-affinity`** — Given a seed keyword, rank TLDs by suffix-semantics fit, historical availability rate in local history, and price tier.
_Helps an agent pick generative TLDs before running expensive permutation passes._
```bash
domain-goat-pp-cli tld-affinity kindred --top 10 --json
```
### Reachability + persistence
- **`drops timeline`** — Time-axis view of every watched domain hitting pendingDelete/redemptionPeriod, filtered by brandability score and TLD.
_Drop-catchers and brand investors want to know 'what's queued for next week that's worth bidding on?' This answers it._
```bash
domain-goat-pp-cli drops timeline --days 30 --min-score 7 --tld io,ai --agent
```
- **`pricing-arbitrage`** — Rank TLDs by renewal-delta (year-1 trap risk) or by prestige-to-price ratio.
_Helps users and agents avoid TLDs where year-2 pricing destroys the deal._
```bash
domain-goat-pp-cli pricing-arbitrage --by renewal-delta --top 20 --agent
```
- **`drop-bid-window`** — Compute the exact UTC re-release window for a domain in pendingDelete (RDAP event + 5-day grace).
_Drop-catchers need minute-level timing; this replaces hand-parsed WHOIS regex._
```bash
domain-goat-pp-cli drop-bid-window expiring.io --json
```
## Command Reference
**Availability & lookup**
- `check` — Bulk availability (RDAP → WHOIS → DNS fallback).
- `rdap` — RDAP lookup via IANA bootstrap.
- `whois` — WHOIS port-43 with parsed output.
- `dns` — DNS lookups (A/AAAA/NS/MX/SOA).
- `cert` — Inspect the TLS certificate for a domain.
**Generation & scoring**
- `gen <suggest|mix|affix|blend|hack|rhyme>` — Offline brandable-name generators.
- `similar` — Typosquat / dnstwist-style variations.
- `score` — Brandability score (length, syllables, dictionary, TLD prestige).
- `socials` — Social-handle availability across common platforms.
**Shortlists & comparison**
- `lists <create|add|show|list|annotate|kill>` — Manage candidate shortlists.
- `shortlist promote` — Top-N candidates into a finalist sub-list.
- `compare` — Side-by-side row per domain.
- `why-killed` — Audit why a domain left the active list.
- `budget` — Filter by 5-year true cost.
**Drops & watching**
- `drops timeline` — Time-axis view of pendingDelete / redemptionPeriod.
- `drop-bid-window` — Exact UTC re-release window.
- `watch <add|run|list|remove>` — Periodic re-check + status persistence.
**Pricing & TLDs**
- `pricing <sync|show|compare>` — Porkbun TLD pricing snapshots.
- `pricing-arbitrage` — Rank TLDs by renewal-delta or prestige-value.
- `tlds <sync|list|get>` — IANA RDAP bootstrap table.
- `tld-affinity` — Best-fit TLDs for a seed keyword.
- `namecheap` — Optional Namecheap adapter (requires creds).
**Local data**
- `sync` — Sync API data to local SQLite.
- `import` — Import JSONL via API create/upsert.
**Agent & utility**
- `doctor` — Auth + connectivity check.
- `agent-context` — Structured JSON describing this CLI.
- `which` — Resolve capability → command.
- `api` — Browse endpoints by interface.
- `workflow` — Compound multi-step workflows.
- `profile` — Save and apply named flag sets.
- `feedback` — Record CLI feedback locally.
### Finding the right command
When you know what you want to do but not which command does it, ask the CLI directly:
```bash
domain-goat-pp-cli which "<capability in your own words>"
```
`which` resolves a natural-language capability query to the best matching command from this CLI's curated feature index. Exit code `0` means at least one match; exit code `2` means no confident match — fall back to `--help` or use a narrower query.
## Recipes
### Friday brand pitch — 200 names → 20 finalists
```bash
# 1. Generate, filter, score.
domain-goat-pp-cli gen suggest --seeds-file seeds.txt --tlds com,io,ai,studio --count 200 --available-only --max-renewal 80 --json > /tmp/candidates.json
# 2. Persist the finalists into a shortlist (positional args, not stdin).
domain-goat-pp-cli lists create brand-sprint
domain-goat-pp-cli lists add brand-sprint $(jq -r '.results[].fqdn' /tmp/candidates.json | head -50) --tags generated
# 3. Promote the top 20 by combined ranking.
domain-goat-pp-cli shortlist promote --list brand-sprint --top 20 --by combined --json
```
Generate, filter, persist,Related in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".