Cloudflare registrar
A curated collection of agent skills for your AI agents - engineering craft, prompt engineering, design, growth marketing, ...
npx -y skills add mouadja02/skills --skill cloudflare-registrarAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 8 stars8 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
Cloudflare Registrar: domain availability check, prices, registration via API.
SKILL.md
2.1 KB, 479 tokens by cl100k_base, as published. Nobody here has run it
Cloudflare Registrar
Attribution: Sourced from steipete/agent-scripts by Peter Steinberger.
When to Use
- Checking domain name availability via Cloudflare API
- Querying Cloudflare Registrar pricing for TLDs
- Registering domains through the Cloudflare Registrar API
Use for Cloudflare Registrar domain availability, pricing, listing, and registration.
Guardrails
- Always run
domain-checkimmediately before registration. - Registration is billable/non-refundable. Get explicit confirmation before registering.
- Do not print tokens or secrets.
Required Credentials
CLOUDFLARE_ACCOUNT_IDCLOUDFLARE_API_TOKEN(with Registrar permissions)
Check Availability / Pricing
curl -s -X POST \
"https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/registrar/domain-check" \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"domains": ["example.com"]}' | jq '.result'
List Registrations
curl -s \
"https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/registrar/registrations" \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN" | jq '.result[] | {domain, expires_at, auto_renew}'
Register (after explicit confirmation)
curl -s -X POST \
"https://api.cloudflare.com/client/v4/accounts/$CLOUDFLARE_ACCOUNT_ID/registrar/registrations" \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"domain_name": "example.com",
"auto_renew": false,
"privacy_mode": "redaction"
}' | jq '.result'
Notes
- Always confirm pricing in
domain-checkbefore registering. - Registration is immediate and non-reversible — require explicit user confirmation.
privacy_mode: "redaction"enables WHOIS privacy.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.