netlify-blobs Skill
Guide for using Netlify Blobs object storage. Use when storing files, images, documents, or simple key-value data without a full database. Covers getStore(), CRUD operations, metadata, listing, deploy-scoped vs site-scoped stores, and local development. Published by openai in plugins.
What is netlify-blobs Skill?
Guide for using Netlify Blobs object storage. Use when storing files, images, documents, or simple key-value data without a full database. Covers getStore(), CRUD operations, metadata, listing, deploy-scoped vs site-scoped stores, and local development. Published by openai in plugins. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Database workflows
- Deployment
- Data analysis
- Design and media
- Database workflows use cases
Technical details
- Install or run with Copy skill directory
When to use netlify-blobs Skill
- Use it for database workflows.
- Use it for deployment.
- Use it for data analysis.
- Use it for design and media.
Built with
Editorial notes
Source
- Creator: openai
- Repository: openai/plugins
- Skill file: plugins/netlify/skills/netlify-blobs/SKILL.md
What it does
Guide for using Netlify Blobs object storage. Use when storing files, images, documents, or simple key-value data without a full database. Covers getStore(), CRUD operations, metadata, listing, deploy-scoped vs site-scoped stores, and local development.
Skill instructions
Netlify Blobs Netlify Blobs is zero-config object storage available from any Netlify compute (functions, edge functions, framework server routes). No provisioning required. bash npm install @netlify/blobs Getting a Store typescript import { getStore } from "@netlify/blobs"; const store = getStore({ name: "my-store" }); // Use "strong" consistency when you need immediate reads after writes const store = getStore({ name: "my-store", consistency: "strong" }); CRUD Operations These are the only store methods. Do not invent others. Create / Update typescript // String or binary data await store.set("key", "value"); await store.set("key", fileBuffer); // With metadata await store.set("key", data, { metadata: { contentType: "image/png", uploadedAt: new Date().toISOString() }, }); // JSON data await store.setJSON("key", { name: "Example", count: 42 }); Read typescript // Text (default) const text = await store.get("key"); // string | null // Typed retrieval const json = await store.get("key",
Explore related resources
Frequently asked questions
What is netlify-blobs?
netlify-blobs is a open-source AI agent skill with Copy skill directory. Guide for using Netlify Blobs object storage. Use when storing files, images, documents, or simple key-value data without a full database.
Who is netlify-blobs best for?
netlify-blobs is best for reusing agent instructions, scripts, and references, database workflows, deployment workflows, data analysis workflows.
How do I install netlify-blobs?
Install or run netlify-blobs using Copy skill directory. Check netlify-blobs for the latest setup command.
Is netlify-blobs actively maintained?
netlify-blobs may need a closer maintenance check before production use.
Auto-fetched from GitHub.