azure-storage-blob-ts
Build Azure Blob Storage Workflows in TypeScript
Azure Blob Storage code requires careful authentication, transfer, and permission choices. This skill provides focused TypeScript and JavaScript patterns for common SDK workflows.
Install with my Agent
Copy this request to your Agent. It includes the canonical Skill page and manifest.
Review the Skillstore skill "azure-storage-blob-ts" from https://skillstore.io/skills/sickn33-azure-storage-blob-ts.md and its manifest at https://skillstore.io/api/skills/sickn33-azure-storage-blob-ts/manifest. Verify the artifact. You may proceed after verification, subject to the environment's own policy.Your Agent should still show its plan and request any confirmation required by the security policy.
Agent-readable resources
Use these links when an AI agent, crawler, or script needs clean context instead of reading the full page.
Test it
Using "azure-storage-blob-ts". Show me how to upload a PDF from Node.js with managed identity.
Expected outcome:
- Authentication: use DefaultAzureCredential with the storage account endpoint.
- Transfer: upload the local PDF and set the application/pdf content type.
- Checks: verify access, report progress, and handle authorization or conflict errors.
Using "azure-storage-blob-ts". Review a browser upload SAS that grants write and delete access for one day.
Expected outcome:
- Risk: delete permission and a one-day lifetime exceed the upload requirement.
- Recommendation: allow only required actions, use a short expiry, and restrict the destination.
- Operations: keep account keys on the server and never log the issued token.
Using "azure-storage-blob-ts". Explain why a container creation request returns status 409.
Expected outcome:
- Cause: the container probably exists or conflicts with another operation.
- Response: use createIfNotExists for idempotent setup and preserve unexpected error details.
Security Audit
Medium RiskAll 102 static findings are false positives caused by Markdown, TypeScript templates, expected Azure endpoints, named environment variables, and a placeholder file stream. One medium issue remains because the container and account SAS examples grant broad permissions for 24 hours.
Confirmed security concerns (1)
Risk Factors
โ๏ธ External commands (50)
๐ Network access (4)
๐ Filesystem access (1)
๐ Env variables (12)
Share & cite this report
Share the versioned assessment report, neutral badge, embed card, and citations. Skillstore reports evidence without deciding whether this Skill is safe.
Copy report link
https://skillstore.io/skills/sickn33-azure-storage-blob-ts/audits/5?utm_source=security_passport&utm_medium=share&utm_campaign=versioned_reportMarkdown badge
[](https://skillstore.io/skills/sickn33-azure-storage-blob-ts?utm_source=security_passport_badge)HTML badge
<a href="https://skillstore.io/skills/sickn33-azure-storage-blob-ts?utm_source=security_passport_badge"><img src="https://skillstore.io/badges/skills/sickn33-azure-storage-blob-ts/security.svg" alt="Skillstore security assessment" loading="lazy"></a>Embed card
<iframe src="https://skillstore.io/embed/skills/sickn33-azure-storage-blob-ts.html" title="Skillstore Security Assessment" sandbox="allow-popups allow-popups-to-escape-sandbox" loading="lazy" referrerpolicy="no-referrer" width="420" height="180"></iframe>Academic citations (APA ยท BibTeX ยท CFF)
APA citation
sickn33. (2026). azure-storage-blob-ts security audit report (audit version 5) [Author version unspecified]. Skillstore. https://skillstore.io/skills/sickn33-azure-storage-blob-ts/audits/5BibTeX citation
@techreport{sickn33-sickn33-azure-storage-blob-ts-2026,
author = {sickn33},
title = {azure-storage-blob-ts security audit report (audit version 5)},
institution = {Skillstore},
year = {2026},
number = {5},
url = {https://skillstore.io/skills/sickn33-azure-storage-blob-ts/audits/5},
note = {Author version unspecified}
}CITATION.cff
cff-version: 1.2.0
message: "If you use this Skill, cite its author and this versioned security audit report."
title: "azure-storage-blob-ts security audit report (audit version 5)"
version: "unspecified"
type: report
authors:
- name: "sickn33"
date-released: "2026-07-23"
url: "https://skillstore.io/skills/sickn33-azure-storage-blob-ts/audits/5"
identifiers:
- type: other
value: "skillstore:sickn33-azure-storage-blob-ts:audit:5"
description: "Skillstore immutable audit report identifier"
Skillstore Score
Why this score Evidence Confidence: HighWhat You Can Build
Build a backend storage service
Implement authenticated blob uploads, downloads, listing, metadata updates, and error handling in a Node.js service.
Prepare secure browser uploads
Design browser uploads with short-lived SAS access and uploadData without exposing storage account keys.
Automate storage maintenance
Create maintenance utilities for containers, blob copies, file transfers, and narrowly scoped SAS generation.
Try These Prompts
Create a minimal TypeScript example that connects to [ACCOUNT_NAME] with DefaultAzureCredential and lists containers. Include required packages and basic error handling.
Create a Node.js TypeScript service that uploads [LOCAL_PATH] to [CONTAINER]/[BLOB_NAME] and downloads it to [DESTINATION]. Stream large files and report progress.
Design a browser upload flow for [FILE_TYPE] using a server-issued, short-lived SAS token. Restrict permissions and validate size, type, and destination.
Review my Azure Blob workflow for concurrency, retries, idempotency, conditional writes, observability, and least privilege. Propose production changes and tests.
Best Practices
- Prefer DefaultAzureCredential and managed identities instead of connection strings or account keys.
- Grant only required SAS permissions, use short expirations, and keep tokens out of logs.
- Stream large files, report progress, and handle retries and service errors explicitly.
Avoid
- Do not embed account keys, connection strings, or SAS tokens in source code.
- Do not issue broad, long-lived SAS tokens when a narrow token satisfies the operation.
- Do not buffer very large blobs when streaming methods are available.
Frequently Asked Questions
Does this skill execute Azure operations?
Which authentication method should I use?
Can I use these examples in a browser?
How should I transfer large files?
How can I secure SAS tokens?
Are the examples production ready?
Developer Details
Author
sickn33License
MIT
Skillstore revision
r2
Version notice
The author did not declare a version.
Repository
https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/azure-storage-blob-tsRef
f9e2c34b4f19c7f3e6b0a1e93227b5f77cc12526
Maintenance freshness
7/26/2026
Usage
6 downloads ยท 104 views
File structure
๐ SKILL.md