plugins/cloudflare/skills/pages/SKILL.md
Use this skill when the user asks about Cloudflare Pages, deploying static sites or full-stack apps on Cloudflare, JAMstack hosting, or managing Pages projects with Pulumi.
npx skillsauth add nsheaps/ai-mktpl cloudflare-pagesInstall 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.
Pages is Cloudflare's full-stack hosting platform for static sites and server-rendered applications. It supports Git-connected deployments, preview URLs per branch, and Pages Functions (Workers under the hood).
cloudflare.PagesProject (docs)Next.js, Astro, Nuxt, SvelteKit, Remix, Gatsby, Hugo, Vite, and any static site generator.
npx wrangler pages deploy ./distnpx wrangler pages project create my-siteAdd server-side logic by placing files in functions/:
my-site/
functions/
api/
hello.ts -> routes to /api/hello
public/
index.html
// functions/api/hello.ts
export const onRequestGet: PagesFunction = async (context) => {
return new Response("Hello from Pages Functions!");
};
import * as cloudflare from "@pulumi/cloudflare";
const project = new cloudflare.PagesProject("my-site", {
accountId,
name: "my-site",
productionBranch: "main",
source: {
type: "github",
config: {
owner: "nsheaps",
repoName: "my-site",
productionBranch: "main",
deploymentsEnabled: true,
prCommentsEnabled: true,
productionDeploymentEnabled: true,
previewDeploymentSetting: "all",
},
},
buildConfig: {
buildCommand: "npm run build",
destinationDir: "dist",
},
});
// Custom domain
const pagesDomain = new cloudflare.PagesDomain("my-domain", {
accountId,
projectName: project.name,
domain: "my-site.example.com",
});
| Feature | Free | Pro | | ------------------ | --------- | ----------- | | Sites | Unlimited | Unlimited | | Requests | Unlimited | Unlimited | | Bandwidth | Unlimited | Unlimited | | Builds | 500/month | 5,000/month | | Concurrent builds | 1 | 5 | | Functions requests | 100K/day | Unlimited |
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.