What problem does it solve? Netlify applications need a zero-config way to store files and assets — user uploads, exported documents, cached binaries, generated images — without provisioning external object storage or wiring up S3 credentials. ## Core Features & Use Cases - Blob CRUD and Listing: Create, read, update, delete, and prefix-list blobs via getStore(), with typed retrieval (text, JSON, stream, blob, arrayBuffer) and metadata support. - Store Scoping and Consistency: Choose site-scoped stores that persist across deploys or deploy-scoped stores tied to a deploy lifecycle, and opt into strong consistency for read-your-writes scenarios. - Build-Time Uploads and CLI Inspection: Seed deploy-scoped stores by writing files to .netlify/blobs/deploy/ during the build, and inspect or repair blobs with netlify blobs:list/get/set/delete CLI commands. - Use Case: A Netlify Function accepts user image uploads, stores them in a site-scoped store with content-type metadata, and serves them back through an authenticated endpoint that gates access. ## Quick Start Ask the AI to add Netlify Blobs storage to your Netlify function so it can save and serve uploaded files.