
Cloudflare Registrar
- 50 installs
- 6.5k repo stars
- Updated August 3, 2026
- steipete/agent-scripts
Helps with ai & agent building tasks during AI-assisted development.
About
cloudflare-registrar is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.
- cloudflare-registrar
- AI & Agent Building
- AI-coding skill
Cloudflare Registrar by the numbers
- 50 all-time installs (skills.sh)
- +4 installs in the week ending Jul 27, 2026 (Skillselion tracking)
- Ranked #7,206 of 16,556 AI & Agent Building skills by installs in the Skillselion catalog
- Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/steipete/agent-scripts --skill cloudflare-registrarAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 50 |
|---|---|
| repo stars | ★ 6.5k |
| Last updated | August 3, 2026 |
| Repository | steipete/agent-scripts ↗ |
What it does
Helps with ai & agent building tasks during AI-assisted development.
Files
Cloudflare Registrar
Use for Cloudflare Registrar domain availability, pricing, listing, and registration.
Defaults
- MCP:
cloudflare-openclaw - Account:
OPENCLAW_CLOUDFLARE_ACCOUNT_ID - Token:
OPENCLAW_CLOUDFLARE_API_TOKEN - Secrets: follow the root secret rule; export only needed Cloudflare vars for one command.
Guardrails
- Always run
domain-checkimmediately before registration. - Registration is billable/non-refundable. Ask Peter for explicit confirmation before
POST /registrar/registrations. - Do not print tokens.
Commands
Check availability/pricing:
npx mcporter call cloudflare-openclaw.execute code='async () => {
return cloudflare.request({
method: "POST",
path: `/accounts/${accountId}/registrar/domain-check`,
body: { domains: ["example.com"] }
});
}'Register after confirmation:
npx mcporter call cloudflare-openclaw.execute code='async () => {
return cloudflare.request({
method: "POST",
path: `/accounts/${accountId}/registrar/registrations`,
body: { domain_name: "example.com", auto_renew: false, privacy_mode: "redaction" }
});
}'List registrations:
npx mcporter call cloudflare-openclaw.execute code='async () => {
return cloudflare.request({
method: "GET",
path: `/accounts/${accountId}/registrar/registrations`
});
}'Related skills
AI & Agent Buildingagents