cloudflare-domains
This skill should be used when the user asks to list Cloudflare domains or zones, manage DNS, deploy to Cloudflare Pages, connect a custom domain, add or update DNS records, set up a parked domain, or work with Cloudflare Workers, Pages, KV, R2, D1, Queues, Vectorize, Registrar, or DNS.
What this skill does
# Cloudflare CLI Workflows
Use Cloudflare CLIs before MCP. The default order is:
1. `cf` technical preview for zones, DNS, Registrar, Accounts, and generated API-backed commands.
2. `wrangler` for Workers, Pages, KV, R2, D1, Queues, and local development.
3. `flarectl` as a legacy fallback for zones, DNS, firewall access rules, page rules, and cache purge.
4. `cli4` as a generic Cloudflare API v4 fallback.
5. Legacy MCP only when the user explicitly enables it locally.
## Authentication
Prefer environment variables:
```bash
CLOUDFLARE_API_TOKEN
CLOUDFLARE_ACCOUNT_ID
CLOUDFLARE_ZONE_ID
```
`cf` also supports `cf auth login`, `cf auth whoami`, and project context in
`.cfrc`. Keep tokens least-privilege and use read-only tokens for inspection
whenever possible.
Before recommending a persistent global install, check existing install lanes:
```bash
type -a cf wrangler flarectl cli4
which -a cf wrangler flarectl cli4
```
Prefer one-off execution:
```bash
pnpm dlx cf --help
pnpm dlx wrangler --help
```
## Zones and DNS
Use `cf` for zone and DNS work:
```bash
pnpm dlx cf zones list --fields id,name,status --ndjson
pnpm dlx cf dns records list --zone example.com --fields id,type,name,content,proxied --ndjson
pnpm dlx cf dns records create --zone example.com --dryRun --body '{"type":"CNAME","name":"www","content":"project.pages.dev","proxied":true}'
pnpm dlx cf dns records update --zone example.com --dryRun --body '{"type":"TXT","name":"@","content":"verification-string"}'
pnpm dlx cf dns records delete --zone example.com --dryRun --body '{"id":"record-id"}'
```
Always dry-run creates, updates, deletes, imports, batches, and scan-review
operations before applying them. Confirm the exact zone, record ID, record
content, and proxied state before making changes.
Use `flarectl` only when it is already installed and a simple DNS/firewall/page
rule operation is clearer there:
```bash
flarectl --json zone list
flarectl --json dns list --zone example.com
flarectl --json dns create --zone example.com --name www --type CNAME --content project.pages.dev --proxy
```
Use `cli4` only for API paths not exposed by `cf` or `wrangler`:
```bash
cli4 /zones/:example.com/dns_records
cli4 --post name=www type=CNAME content=project.pages.dev proxied=true /zones/:example.com/dns_records
```
## Workers, Pages, and Storage
Use `wrangler` for project-oriented development and deployments:
```bash
pnpm dlx wrangler deploy
pnpm dlx wrangler pages deploy ./dist --project-name my-project
pnpm dlx wrangler kv namespace list
pnpm dlx wrangler r2 bucket list
pnpm dlx wrangler d1 list
pnpm dlx wrangler d1 execute <database> --command 'select 1'
```
Use `cf` for generated account-level commands or resource APIs that Wrangler
does not expose:
```bash
pnpm dlx cf agent-context workers
pnpm dlx cf workers routes list --zone example.com --fields id,pattern,script --ndjson
```
## Proactive Assistance
Suggest Cloudflare actions when the user:
- Mentions a domain, DNS record, zone, parked domain, or nameserver change.
- Builds static HTML, a landing page, or a docs site that could deploy to Pages.
- Works on Worker code, KV, R2, D1, Queues, or Vectorize.
- Needs to inspect Cloudflare account resources before changing deployment or DNS.
When the user mentions a specific domain, first inspect whether it exists as a
Cloudflare zone, then list the relevant DNS records before proposing changes.
When deploying static content:
1. Prepare the local static files.
2. Deploy with `pnpm dlx wrangler pages deploy`.
3. Inspect or add DNS with `pnpm dlx cf dns records ...`.
4. Dry-run DNS mutations before applying them.
5. Verify the custom domain and deployment after propagation.
## Safety
- Never expose API tokens in code, output, or committed files.
- Confirm before deleting zones, Workers, Pages projects, KV namespaces, R2 buckets, D1 databases, DNS records, or routes.
- Prefer `--fields` and `--ndjson` to keep responses small and structured.
- Prefer `--body` for complex `cf` payloads so the exact request can be reviewed.
- Treat the legacy MCP server as opt-in compatibility tooling, not the default path.
## References
- [Cloudflare `cf` CLI technical preview](https://blog.cloudflare.com/cf-cli-local-explorer/)
- [Wrangler commands](https://developers.cloudflare.com/workers/wrangler/commands/)
- [Cloudflare DNS records API](https://developers.cloudflare.com/api/resources/dns/subresources/records/)
- [flarectl source](https://github.com/cloudflare/cloudflare-go/tree/v0/cmd/flarectl)
- [cli4 source](https://github.com/cloudflare/python-cloudflare-cli4)
Related in Cloud & DevOps
appbuilder-action-scaffolder
IncludedCreate, implement, deploy, and debug Adobe Runtime actions with consistent layout, validation, and error handling. Use this skill whenever the user needs to add actions to an App Builder project, understand action structure (params, response format, web/raw actions), configure actions in the manifest, use App Builder SDKs (State, Files, Events, database), deploy and invoke actions via CLI, debug action issues, or implement patterns such as webhook receivers, custom event providers, journaling consumers, large payload redirects, action sequence pipelines, and Asset Compute workers. Also trigger when users mention serverless functions in Adobe context, action logging, IMS authentication for actions, or cron-style scheduled actions.
orchestrating-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. Use this skill when the user needs a multi-step Data Cloud pipeline, cross-phase troubleshooting, or data space and data kit management. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase sf data360 workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching phase-specific skill), the task is STDM/session tracing/parquet telemetry (use observing-agentforce), standard CRM SOQL (use querying-soql), or Apex implementation (use generating-apex).
github-project-automation
IncludedAutomate GitHub repository setup with CI/CD workflows, issue templates, Dependabot, and CodeQL security scanning. Includes 12 production-tested workflows and prevents 18 errors: YAML syntax, action pinning, and configuration. Use when: setting up GitHub Actions CI/CD, creating issue/PR templates, enabling Dependabot or CodeQL scanning, deploying to Cloudflare Workers, implementing matrix testing, or troubleshooting YAML indentation, action version pinning, secrets syntax, runner versions, or CodeQL configuration. Keywords: github actions, github workflow, ci/cd, issue templates, pull request templates, dependabot, codeql, security scanning, yaml syntax, github automation, repository setup, workflow templates, github actions matrix, secrets management, branch protection, codeowners, github projects, continuous integration, continuous deployment, workflow syntax error, action version pinning, runner version, github context, yaml indentation error
sf-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase `sf data360` workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching sf-datacloud-* skill), the task is STDM/session tracing/parquet telemetry (use sf-ai-agentforce-observability), standard CRM SOQL (use sf-soql), or Apex implementation (use sf-apex).
fabric-cli
IncludedUse this skill for Fabric.so CLI workflows with the `fabric` terminal command: diagnose/install/login, search or browse a Fabric library, save notes/links/files, create folders, ask the Fabric AI assistant, manage tasks/workspaces, generate shell completion, check subscription usage, produce JSON output, and use Fabric as persistent agent memory. Do not use for Microsoft Fabric/Azure/Power BI `fab`, Daniel Miessler's Fabric framework, Python Fabric SSH, Fabric.js, or textile/fashion fabric.
lark
IncludedLark/Feishu CLI skills: lark-cli operations for docs, markdown, sheets, base, calendar, im, mail, task, okr, drive, wiki, slides, whiteboard, apps, approval, attendance, contact, vc, minutes, event. Use when the user needs to operate Lark/Feishu resources via lark-cli, send messages, manage documents, spreadsheets, calendars, tasks, OKRs, deploy web pages, or any Feishu/Lark workspace operations.