plugins/cloudflare/skills/dns/SKILL.md
Use this skill when the user asks about Cloudflare DNS, managing DNS records, domain zones, DNSSEC, proxied records, or managing DNS with Pulumi.
npx skillsauth add nsheaps/ai-mktpl cloudflare-dnsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Cloudflare DNS is one of the fastest authoritative DNS providers. It supports proxy mode (orange cloud), DNSSEC, wildcard records, and API-based management.
cloudflare.Zone, cloudflare.Record| Type | Use Case | Example |
| ----- | ----------------------- | --------------------------------- |
| A | IPv4 address | example.com -> 1.2.3.4 |
| AAAA | IPv6 address | example.com -> 2001:db8::1 |
| CNAME | Alias | www -> example.com |
| MX | Mail server | example.com -> mail.example.com |
| TXT | Verification, SPF, DKIM | v=spf1 include:... |
| SRV | Service discovery | _sip._tcp.example.com |
When proxied: true, Cloudflare's CDN, WAF, and DDoS protection apply to the record. When proxied: false (grey cloud), it's DNS-only.
import * as cloudflare from "@pulumi/cloudflare";
// Zone
const zone = new cloudflare.Zone("example", {
accountId,
zone: "example.com",
});
// A Record
const www = new cloudflare.Record("www", {
zoneId: zone.id,
name: "www",
type: "A",
content: "1.2.3.4",
proxied: true,
});
// CNAME Record
const api = new cloudflare.Record("api", {
zoneId: zone.id,
name: "api",
type: "CNAME",
content: "api-server.example.com",
proxied: true,
});
// MX Record
const mx = new cloudflare.Record("mx", {
zoneId: zone.id,
name: "@",
type: "MX",
content: "mail.example.com",
priority: 10,
});
tools
Reference material for Claude Code internals — the on-disk layout under ~/.claude and project-scope .claude, the plugin cache, session-env propagation, and the full hook lifecycle. Auto-recall when working on Claude-Code-related tasks: writing or debugging hooks, authoring plugins, inspecting session state, troubleshooting why an env var is or isn't visible to a Bash tool call, or when paths under ~/.claude or ~/.claude/plugins/ come up.
development
Manage GitHub App installation tokens in Claude Code sessions. Use when tokens expire, auth errors occur in long-running sessions, or when setting up GitHub App credentials for agent teams. <example>my github token expired</example> <example>refresh the github app token</example> <example>check token status</example> <example>set up github app authentication for this session</example>
tools
Auto-detect project formatting tools and configure edit-utils settings
tools
Use this skill when the user asks about 1Password, secrets management, retrieving credentials, using op CLI, service accounts, secret references, vault operations, or any task involving the 1Password CLI (op). Also use when needing to inject secrets into environment variables, read passwords or API keys from 1Password, or manage 1Password items from the command line.