netlify-deployment

Implements Netlify serverless functions, edge functions, blobs, and image CDN configurations.

Updated Aug 31, 2026
One-click install
npx skills add https://github.com/MANR255926/GARAGE --skill netlify-deployment-manr255926
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: netlify-deployment
Source: https://github.com/MANR255926/GARAGE/tree/main/.agents/skills/netlify-deployment
Command: npx skills add https://github.com/MANR255926/GARAGE --skill netlify-deployment-manr255926

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires @netlify/functions, @netlify/edge-functions, @netlify/blobs.

What problem does it solve? Writing Netlify compute code requires knowing the correct function formats, directory conventions, configuration options, and platform limits, and mistakes lead to broken deploys or functions that never trigger. ## Core Features & Use Cases - Compute Implementation: Write serverless, background, scheduled, and edge functions using the latest TypeScript formats, in-code config, and the Netlify context and global objects. - Storage and Media: Use Netlify Blobs for key-value state storage with deploy or global scopes, and the Image CDN for on-demand image transformations via query parameters. - Use Case: Add a scheduled function that runs hourly to aggregate metrics into a Netlify Blobs store, then expose the results through a serverless function with a friendly custom path. ## Quick Start Create a Netlify serverless function at the path /hello-world that returns a greeting and stores the request count in Netlify Blobs.

Frequently Asked Questions about netlify-deployment

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a Netlify serverless function?▼

Place a TypeScript file in netlify/functions that default-exports an async handler receiving a Request and Context object. Export a config object with a path property to set a friendly URL instead of the default /.netlify/functions/{name} route.

What is the difference between Netlify serverless and edge functions?▼

Serverless functions run on Node.js for transactional API requests, while edge functions run on Deno to modify requests or responses at the network edge. Edge functions support context.next() for continuing the request chain and have a 50ms CPU limit per request.

How do I schedule a Netlify function with CRON?▼

Export a config object with a schedule property like "@hourly" from your function file, or define it in netlify.toml. Scheduled functions run only on published deploys, have a 30-second execution limit, and receive a JSON body with a next_run timestamp.

Does Netlify Blobs require database configuration?▼

No, Netlify Blobs is automatically provisioned and works from any Netlify compute type via the @netlify/blobs module. Use getStore for global scope or getDeployStore for deploy-specific data, with optional strong consistency.

What are the limitations of Netlify edge functions?▼

Edge functions have a 20 MB compressed code size limit, 512 MB memory, 50ms CPU time per request, and 40-second header timeout. They are incompatible with split testing, custom headers from _headers, and prerendering on served paths.