netlify-blobs

Store files and assets with zero-config Netlify Blobs object storage.

Updated May 31, 2026
One-click install
npx skills add https://github.com/ChristineTham/lp --skill netlify-blobs-christinetham
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: netlify-blobs
Source: https://github.com/ChristineTham/lp/tree/main/.agents/skills/netlify-blobs
Command: npx skills add https://github.com/ChristineTham/lp --skill netlify-blobs-christinetham

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Netlify Blobs provides zero-config object storage for files and assets, eliminating the need to provision storage for images, documents, uploads, and caches. It is not intended for dynamic data or structured records—use Netlify Database for those use cases.

Core Features & Use Cases

  • Zero-config object storage for files and assets accessible from Netlify compute across functions, edge routes, and framework servers.
  • CRUD operations: getStore, set, get, getWithMetadata, list, delete, and metadata handling to manage blobs.
  • Scope & development: site-scoped and deploy-scoped stores are supported; local development via a sandboxed store.

Quick Start

Install the package and create a store with getStore to start saving files and assets.

Frequently Asked Questions about netlify-blobs

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

FAQPage Schema
How do I store files and assets across deploys without provisioning storage?

You can store files and assets without provisioning by using zero-config object storage, which provides a minimal API to manage images, documents, and uploads directly from functions and edge routes.

Can I use object storage for dynamic data and structured records?

Object storage is not intended for dynamic data or structured records. You should use a dedicated database for those use cases, restricting blobs to static assets and cached artifacts.

What's the best way to manage files in site-scoped and deploy-scoped stores?

The best way to manage files is using CRUD operations like getStore, set, get, and delete. This API supports both site-scoped and deploy-scoped stores to organize assets across deployments.

Does Netlify Blobs support local development for storing files?

Yes, local development is supported through a sandboxed store, allowing you to test file and asset storage operations locally before deploying to production environments.

How do I retrieve metadata for stored files and assets?

You can retrieve metadata for stored files and assets by using the getWithMetadata and list functions, which allow you to access and manage blob details alongside your core data.