Dev & Engineering ✓ Microsoft · Official azuredata-lakepythonfile-system-operationsazure-identityaccess-controlasync-programming

Azure Data Lake Gen2 for Python

Guides Python developers through hierarchical file-system and large-file operations on Azure Data Lake Storage Gen2.

FollowSkills review · FSRS-2.0
Use with care
53/ 100 5-point scale 2.7 / 5
1 2 3 4 5 6
1Trust16 / 25 · 3.2/5

The skill recommends DefaultAzureCredential, constrains the production credential chain, avoids connection strings and keys, and discloses the Azure endpoint and client lifecycle. It does not define least-privilege RBAC, sensitive-data handling, user confirmation, deletion rollback or recovery, or pinned dependencies, so points are deducted.

2Reliability8 / 20 · 2.0/5

The client hierarchy, sync/async split, and common file operations are internally coherent, and the references call for current API checks, error handling, and cleanup. However, examples omit exception handling, input validation, retry/paging/LRO implementation, and several production details are left to the reader; static review cannot reproduce key paths, so the score is limited.

3Adaptability10 / 15 · 3.3/5

The audience, Python package, client types, and trigger terms are fairly clear, covering filesystem, directory, file, ACL, listing, and async work. Boundaries, compatibility ranges, negative trigger conditions, Chinese-language use, and mainland-China network reachability are not addressed; the external Azure dependency must be handled by the user.

4Convention9 / 15 · 3.0/5

The skill has front matter, MIT licensing, a version, installation and environment-variable notes, client hierarchy, examples, best practices, and reference files. Repository README, CI, and security policy provide some governance signals, but package version constraints, a changelog, explicit maintenance ownership, and an update path are missing, with some duplicated reference content.

5Effectiveness7 / 15 · 2.3/5

It directly covers creating, retrieving, and deleting filesystems, directory operations, uploads, downloads, listings, properties, ACLs, and async clients, supporting the core coding task. The examples lack a complete runnable application, failure recovery, permission setup, and verification evidence; static calibration caps the score, and production code still needs current SDK validation and additional implementation.

6Verifiability3 / 10 · 1.5/5

The skill and references contain auditable code samples, API names, and a production checklist. The repository provides general CI, evaluation workflows, and test-harness evidence, but the supplied material does not show skill-specific tests, real execution results, or independent corroboration, so only limited credit is justified.

Evidence confidence:Low Reviewed Jul 20, 2026 Reviewed revision 9ccaf7c3704a
Before you use it
  • Examples include deleting filesystems, directories, and files, plus overwrite uploads; confirm targets, permissions, and recovery plans before use.
  • azure-storage-file-datalake and azure-identity versions are not pinned, and current API compatibility and exception handling are not demonstrated; validate against the official SDK and add tests in the target environment.
  • Credential guidance is strong, but minimum RBAC/ACL permissions, sensitive-data controls in logs, and data-residency requirements are not specified.
  • Core functionality depends on Azure endpoints; mainland-China reachability, private networking, and proxy configuration are not assessed.
See the full review method →

What does this skill do, and when should you use it?

This skill is for the Azure Data Lake Storage Gen2 Python SDK and covers account, file-system, directory, and file clients. It provides synchronous and asynchronous patterns for uploading, downloading, appending, listing, metadata, and ACL management. The guidance favors DefaultAzureCredential and requires an account URL for the Data Lake endpoint. It fits projects that need hierarchical namespace semantics for analytics-oriented storage workloads.

Shows how to install azure-storage-file-datalake and azure-identity and configure AZURE_STORAGE_ACCOUNT_URL plus production credential settings; creates and manages DataLakeServiceClient, FileSystemClient, DataLakeDirectoryClient, and DataLakeFileClient; performs file-system, directory, and file creation, retrieval, deletion, renaming, upload, append, flush, download, and range-read operations; lists paths, reads file properties, sets metadata, and reads, sets, or recursively updates ACLs; and demonstrates aio clients with deterministic context-manager cleanup.

  1. A Python Azure developer managing ADLS Gen2 file systems, directories, and files.
  2. A data-processing team appending chunks and committing large files for analytics workloads.
  3. A service that recursively lists Data Lake paths, reads file properties, or downloads byte ranges.
  4. A team using Entra-based credentials and directory-level ACLs for data access.
  5. A high-throughput Python application that needs the asynchronous Data Lake client.

What are this skill's strengths and limitations?

Pros
  • Covers the main ADLS Gen2 client hierarchy and common file-system operations.
  • Includes both synchronous and asynchronous Python patterns.
  • Provides explicit guidance on DefaultAzureCredential, context managers, and production credential constraints.
  • Includes practical append, range-download, metadata, and ACL examples.
Limitations
  • Focused on the Azure Data Lake Storage Gen2 Python SDK rather than general object storage.
  • Every authentication method requires an account URL, and execution depends on an Azure resource and valid credentials.
  • The source lists reference files but does not provide their contents, so their additional coverage cannot be assessed.

How do you install this skill?

Run npx skills add microsoft/skills in an Agent Skills-compatible coding client and select azure-storage-file-datalake-py in the wizard. The README says skills are installed into the selected agent directory, such as .github/skills/ for GitHub Copilot; the corresponding skill directory may also be copied from the repository.

How do you use this skill?

With the skill installed, give the coding agent a request containing a relevant trigger, for example: “Use DataLakeServiceClient to create an ADLS Gen2 directory and upload a file in this Python service.” Set AZURE_STORAGE_ACCOUNT_URL=https://<account>.dfs.core.windows.net; for production use of DefaultAzureCredential, also set AZURE_TOKEN_CREDENTIALS=prod or a specific credential value.

How does this skill compare with similar options?

The guide explicitly suggests considering the Blob API for simple object-storage use cases. This skill is the better fit when hierarchical file-system semantics, directory operations, or ACLs are required.

FAQ

Is this skill for ordinary Blob object storage?
For simple object storage, the source suggests considering the Blob API. This skill focuses on Data Lake Gen2 file systems with hierarchical namespace semantics.
What configuration is required?
`AZURE_STORAGE_ACCOUNT_URL` is required. When using DefaultAzureCredential in production, set `AZURE_TOKEN_CREDENTIALS=prod` or a specific credential.
Does it support asynchronous operations?
Yes. It includes examples using `azure.storage.filedatalake.aio` and `azure.identity.aio`, and recommends async clients for high-throughput scenarios.
Does the source provide pricing information?
No. The supplied source material does not include Azure Data Lake Storage pricing information.

More skills from this repository

All from microsoft/agent-skills

Dev & Engineering ✓ Microsoft · Official

Azure Monitor OpenTelemetry for Python

Connect Python applications to Application Insights with one-line OpenTelemetry setup.

Dev & Engineering ✓ Microsoft · Official

Azure AI Text Analytics for Python

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

Dev & Engineering ✓ Microsoft · Official

Azure AI Transcription for Python

Guides Python applications through Azure AI real-time and batch speech-to-text transcription.

Dev & Engineering ✓ Microsoft · Official

MCP Server Development Guide

A practical guide to building clear, testable MCP servers that let LLMs work with external APIs.

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.

Dev & Engineering ✓ Microsoft · Official

Azure Storage Skill

Gives coding agents practical guidance and operations for Azure objects, files, queues, tables, and data lakes.

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 Bot Service Python Manager

Create, manage, and configure Azure Bot Service resources and channels from Python.

Dev & Engineering ✓ Microsoft · Official

Azure Web PubSub for Python

Build Azure WebSocket messaging and publish-subscribe workflows for Python applications.

Dev & Engineering ✓ Microsoft · Official

Azure Event Hubs for Python

A practical guide to high-throughput event ingestion, consumption, and checkpointing in Python.

Dev & Engineering ✓ Microsoft · Official

Microsoft Foundry Python Projects Skill

Gives coding agents dependable patterns for building Foundry AI applications with the Azure AI Projects Python SDK.

Dev & Engineering ✓ Microsoft · Official

Azure Fabric Capacity Manager

Manage Microsoft Fabric capacities and their lifecycle with the Azure Python SDK.

Dev & Engineering ✓ Microsoft · Official

Azure Service Bus for Python

Practical Python guidance for reliable Azure Service Bus queues and publish-subscribe messaging.

Dev & Engineering ✓ Microsoft · Official

Azure Identity for TypeScript

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

Dev & Engineering ✓ Microsoft · Official

Azure Queue Storage for Rust

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

Dev & Engineering ✓ Microsoft · Official

Azure AI Content Safety for Python

Guides Python applications in detecting harmful text and images and enforcing custom blocklists.

Dev & Engineering ✓ Microsoft · Official

Fabric Capacity Manager for .NET

Manage Microsoft Fabric capacities programmatically through Azure Resource Manager.

Dev & Engineering ✓ Microsoft · Official

Azure Conversation Understanding for Python

Helps Python developers analyze conversation intents and entities with the Azure SDK.

Dev & Engineering ✓ Microsoft · Official

Azure Voice Live for Python

Guides Python developers in building real-time, bidirectional voice AI applications on Azure.

Dev & Engineering ✓ Microsoft · Official

Azure Event Hubs TypeScript Skill

Build TypeScript event-streaming applications with batching, partition-aware consumers, checkpointing, and Azure identity authentication.

Related skills