AgentStack
SKILL verified MIT Self-run

Azure Blob Storage

skill-ashish7802-awesome-api-skills-azure-blob-storage · by ashish7802

A Claude skill from ashish7802/awesome-api-skills.

No reviews yet
0 installs
13 views
0.0% view→install

Install

$ agentstack add skill-ashish7802-awesome-api-skills-azure-blob-storage

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Azure Blob Storage? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Azure Blob Storage API Skill

Quick Start

Azure Blob Storage handles massive amounts of unstructured data. The @azure/storage-blob SDK provides powerful abstractions for Block, Append, and Page blobs.

npm install @azure/storage-blob

Common Workflows

SAS (Shared Access Signature) Tokens

Generate a User Delegation SAS Token to grant temporary, tightly-scoped access to a specific blob without exposing the account key.

Production Patterns

Block Blobs vs Append Blobs

Use Block Blobs for standard files (images, documents). Use Append Blobs explicitly for log files where data is continuously written to the end of the blob.

Error Recovery

The SDK automatically handles transient failures using built-in retry policies (exponential backoff). Catch RestError to handle fatal authorization or missing resource failures.

Security Notes

Prioritize Azure AD (Entra ID) authentication via DefaultAzureCredential over using connection strings containing the Account Key.

Performance Considerations

For high-throughput uploads, tune the maxSingleShotSize and blockSize parameters in the uploadFile method to parallelize chunk uploads efficiently across multiple threads.

Testing Guidance

Use Azurite, the official local emulator for Azure Storage, to run integration tests entirely locally without an Azure subscription.

Troubleshooting

If CORS errors occur when using SAS URLs in the browser, ensure CORS rules are explicitly defined on the Storage Account setting AllowedOrigins and AllowedMethods (PUT).

References

Related Skills

  • [AWS S3](/skills/aws s3)
  • [Google Cloud Storage](/skills/google cloud storage)

Why use this skill

Use this when your agent works with azure-blob-storage — structured patterns beat pasted docs and prevent common hallucinations.

AI pitfalls

  • Using outdated SDK or API versions from training data
  • Inventing environment variable names
  • Omitting error handling and retry logic

Production checklist

  • [ ] Secrets in environment variables, not source code
  • [ ] Error handling and logging in place
  • [ ] Rate limits and timeouts configured

Related skills

  • [aws s3](../aws s3/SKILL.md) — related to
  • [google cloud storage](../google cloud storage/SKILL.md) — related to

> Last Verified: 2026-07-02

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.