From cloudflare
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 claudepluginhub nsheaps/ai-mktpl --plugin cloudflareThis skill uses the workspace's default tool permissions.
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).
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides agent creation for Claude Code plugins with file templates, frontmatter specs (name, description, model), triggering examples, system prompts, and best practices.
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 |