Dev & Engineering ✓ Microsoft · Official rustazure-storagequeue-messagingrbacazure-identitycargo

Azure Queue Storage for Rust

A focused guide for building secure Azure Queue Storage messaging workflows in Rust.

FollowSkills review · FSRS-2.0
Not recommended
54/ 100 5-point scale 2.7 / 5
Trust17 / 25 · 3.4/5

The document restricts users to the official azure_storage_queue crate, recommends RBAC, forbids hardcoded credentials, and distinguishes local from production identity, reducing credential and dependency risk. It does not specify least-privilege networking, user confirmation, sensitive-message handling, data flows, or recovery/rollback for deletion, so points are deducted.

Reliability8 / 20 · 2.0/5

Installation, client construction, send, receive, delete, and peek flows are broadly self-consistent, with errors propagated through Rust Result. The skill provides no skill-specific tests, pinned version, abnormal-input handling, retry/timeout guidance, service-outage diagnostics, or reproducible verification, so the static ceiling and deductions apply.

Adaptability10 / 15 · 3.3/5

Triggers, Rust/Azure Queue Storage audience, and primary scenarios are clear, covering send, receive, delete, peek, and RBAC. Non-fit boundaries, queue-creation examples, message-size/encoding limits, Chinese-language use, and mainland-China reachability are not addressed, leaving semantic and environment-fit evidence limited.

Convention9 / 15 · 3.0/5

The document has metadata, installation, environment variables, authentication, client types, workflows, RBAC, best practices, and references, and declares MIT licensing. It lacks an SDK version or compatibility matrix, changelog, explicit maintenance owner/update path, and troubleshooting; claims of queue creation/management are not backed by examples, so points are deducted.

Effectiveness6 / 15 · 2.0/5

The examples cover basic client creation, sending, receiving, deleting, and peeking and offer direct value for simple implementations. Placeholders, missing queue-creation/management code, absent production retry and message-constraint guidance, and no execution verification limit completeness and immediate usability.

Verifiability4 / 10 · 2.0/5

Crates.io, docs.rs, and Azure SDK source links provide some audit paths, and the code is inspectable. The selected skill has no committed tests or key-path CI execution evidence, so compilation and behavioral correctness cannot be confirmed statically; only limited credit is warranted.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 9ccaf7c3704a
Before you use it
  • The examples use storage-account, queue-name, and endpoint placeholders; verify the actual SDK version, API signatures, and RBAC configuration before deployment.
  • Message deletion is an irreversible business operation; the document does not explain idempotency, retries, visibility timeouts, dead-lettering, or recovery.
  • Do not log message bodies, endpoints, or credentials; the document provides no sensitive-data or logging-governance guidance.
  • Mainland-China network reachability and offline alternatives are not documented; Azure service and crates.io access must be validated separately.
See the full review method →

What it does & when to use it

This skill helps Rust developers use Azure Queue Storage through Microsoft’s official azure_storage_queue crate. It covers client setup, sending, receiving, deleting, and peeking queue messages, along with Entra ID authentication and RBAC guidance. Examples use DeveloperToolsCredential for local development and ManagedIdentityCredential for production. The repository is an MIT-licensed collection containing 190 separate skills; this profile covers only the Rust queue skill.

Guides installation of azure_storage_queue, azure_identity, azure_core, and tokio; reads AZURE_STORAGE_QUEUE_ENDPOINT; creates a QueueServiceClient and derives a QueueClient; calls send_message, receive_messages, delete_message, and peek_messages; parses queue responses and accesses message text, message IDs, and pop receipts; and maps queue operations to Entra ID RBAC roles.

  1. A Rust backend developer needs to publish task messages to Azure Queue Storage and wants an official SDK implementation.
  2. A team is building an asynchronous Rust consumer that must receive and parse queue messages.
  3. A message-processing service needs to delete messages after successful handling using the message ID and pop receipt.
  4. An Azure team wants passwordless-style identity handling with separate local-development and production credential guidance.
  5. A developer needs to inspect queue messages without removing them from the queue.

Pros & cons

Pros
  • Covers the core queue operations: send, receive, delete, and peek.
  • Includes copyable asynchronous Rust examples and an official-crate requirement.
  • Explains Entra ID authentication, RBAC roles, and credential-safety practices.
  • Clarifies the roles of QueueServiceClient, QueueClient, message IDs, and pop receipts.
  • Available through an MIT-licensed skill collection and its documented installation workflow.
Limitations
  • Focused specifically on Azure Queue Storage and Rust; it does not cover other languages or Azure messaging services.
  • Requires a real Azure Queue Storage endpoint and configured identity; no offline mock workflow is documented.
  • The source does not show an independent test suite or test coverage for this specific Rust skill.
  • Storage account, queue name, and endpoint values in the examples are placeholders.

How to install

Install the collection into the selected Agent’s skill directory with npx skills add microsoft/skills, then choose the required skill in the wizard. For manual installation, clone https://github.com/microsoft/skills and copy .github/plugins/azure-sdk-rust/skills/azure-storage-queue-rust/. The README does not specify the exact installation path for this skill on every Agent. Add Rust dependencies with: cargo add azure_storage_queue azure_identity azure_core tokio.

How to use

Give a supporting coding Agent a request such as “Implement Azure Queue Storage message sending, receiving, and deletion in Rust using the official azure_storage_queue crate.” Set AZURE_STORAGE_QUEUE_ENDPOINT=https://<account>.queue.core.windows.net/. Create a QueueServiceClient, derive a QueueClient, use DeveloperToolsCredential locally or ManagedIdentityCredential in production, and assign the identity an appropriate Storage Queue Data RBAC role.

Compared to similar skills

The source explicitly distinguishes the official azure_storage_queue crate from unofficial or community crates and instructs users to use the official one. It does not provide a broader comparison with other queue services or SDKs.

FAQ

Which Azure permissions are needed?
Storage Queue Data Reader supports reading and peeking; Data Contributor supports reading and writing; Data Message Sender supports sending only; Data Message Processor supports receiving and deleting.
Can credentials be hardcoded?
No. The skill says not to hardcode credentials and recommends environment variables or managed identity. Its examples use DeveloperToolsCredential or ManagedIdentityCredential.
Why does deletion require a pop receipt?
After receiving a message, deletion requires both the message ID and the message’s pop receipt.
Does this skill deploy the Azure storage account?
No. It focuses on Rust client setup and queue operations; the source does not document storage-account deployment.

More skills from this repository

All from microsoft/agent-skills

Dev & Engineering ✓ Microsoft · Official

Azure Identity for Python

A practical skill for securing Python Azure applications with Microsoft Entra ID credentials.

Dev & Engineering ✓ Microsoft · Official

Azure Event Hubs Java Skill

Build production-oriented Java event streaming applications on Azure Event Hubs.

Dev & Engineering ✓ Microsoft · Official

Azure Tables for Python

A practical guide to building authenticated Azure Tables applications with Python entity CRUD, queries, and partition-scoped batch operations.

Dev & Engineering ✓ Microsoft · Official

Azure Identity for TypeScript

Configure secure, flexible Microsoft Entra ID authentication for TypeScript Azure applications.

Automation & Ops ✓ Microsoft · Official

Azure Reliability Advisor

Assess and improve reliability for Azure Functions and App Service.

Dev & Engineering ✓ Microsoft · Official

Azure Cloud Architect

Guides coding agents through production-grade Azure architecture design and review using Azure Architecture Center practices.

Dev & Engineering ✓ Microsoft · Official

Azure AI Text Analytics for Python

Guides Python developers through Azure-powered text analysis and NLP workflows.

Automation & Ops ✓ Microsoft · Official

Azure Resource Architecture Visualizer

Analyze Azure resource groups and turn their dependencies into detailed Mermaid architecture diagrams.

Dev & Engineering ✓ Microsoft · Official

Azure Maps for .NET

Build .NET location features for search, routing, maps, geolocation, and weather.

Dev & Engineering ✓ Microsoft · Official

Azure AI Vision Image Analysis

Guides Python coding agents in implementing Azure AI Vision image understanding.

Dev & Engineering ✓ Microsoft · Official

Azure Blob Storage for Python

Guides secure, production-minded Blob Storage operations in Python.

Dev & Engineering ✓ Microsoft · Official

Azure Queue Storage for Python

Gives coding agents reliable Python patterns for secure Azure Queue Storage messaging and asynchronous task processing.

Automation & Ops ✓ Microsoft · Official

Azure AI Gateway Governance

Use Azure API Management to govern traffic across AI models, MCP tools, and agents.

Automation & Ops ✓ Microsoft · Official

AKS Automatic Readiness

Assess Kubernetes workloads for AKS Automatic compatibility and identify migration blockers before you switch.

Dev & Engineering ✓ Microsoft · Official

Azure Cosmos DB ARM for .NET

Provision and manage Azure Cosmos DB resources from .NET through ARM.

Dev & Engineering ✓ Microsoft · Official

Azure Playwright Workspace Manager

Provision and manage Microsoft Playwright Testing workspaces with .NET and Azure Resource Manager.

Dev & Engineering ✓ Microsoft · Official

Azure Cosmos DB for Python

A practical guide for building reliable Python applications on Azure Cosmos DB’s NoSQL API.

Dev & Engineering ✓ Microsoft · Official

Azure Key Vault SDK for Python

Gives Python coding agents practical guidance for securely managing Azure Key Vault secrets, keys, and certificates.

Dev & Engineering ✓ Microsoft · Official

Azure API Management for Python

Gives coding agents practical Python SDK patterns for managing Azure API Management services, APIs, products, subscriptions, and policies.

Dev & Engineering ✓ Microsoft · Official

Azure Monitor Query for Python

Generate Python code for querying Azure Monitor logs and metrics.

Related skills