Token导航 LogoToken导航TokenDH.com
开发external-servicegithub未标认证来源可访问许可证需确认审计通过

adf-ml-analyticsADF 机器学习分析

Agent Skill

用于辅助数据整理、表格处理、CSV/Excel 分析、指标计算和图表准备。它适合让 Agent 清洗字段、汇总数据、发现异常、生成统计口径或把分析结果转成可读说明。使用时需要确认数据来源、字段含义和时间范围,避免把样本数据当全量事实;涉及敏感数据、导出文件或批量写回时,应先确认权限和脱敏边界。

总安装

979

周安装

40

GitHub Stars

33

下载量

314
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:adf-ml-analytics(ADF 机器学习分析)
来源仓库:https://github.com/josiahsiegel/claude-plugin-marketplace
仓库路径:skills/adf-ml-analytics
安装命令:
npx skills add https://github.com/josiahsiegel/claude-plugin-marketplace --skill adf-ml-analytics
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/josiahsiegel/claude-plugin-marketplace --skill adf-ml-analytics

简介

管理 Azure ML 管道与批处理端点进行数据分析。

  • 适用于数据科学家、ML 工程师和 BI 分析师。
  • 支持执行预测模型、调用 AI 服务和跟踪 MLflow 实验。
  • 涉及数据库操作和网络请求,需配置相应权限。adf-ml-analytics 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 注意旧版 SDK 将于 2026 年停用,建议迁移至新版接口。

SKILL.md

Azure Data Factory Machine Learning & Analytics Patterns

Overview

Azure Data Factory orchestrates ML workflows by integrating with Azure Machine Learning, Azure AI Services, Databricks ML, and Azure SQL Database. This skill covers patterns for extracting data from ephemeral sources (like Azure SQL Database), archiving to Azure Storage for long-term analysis, and leveraging ML services for scoring and insights.

Deprecation Notices & Platform Changes (Current March 2026)

Azure AI Foundry -> Microsoft Foundry (November 2025)

  • At Ignite November 2025, Microsoft renamed Azure AI Foundry to Microsoft Foundry.
  • Microsoft Foundry is the unified AI platform: agents, workflows, models, and tools under one resource provider.
  • ADF is positioned as the data orchestration layer within Microsoft Foundry -- handling ingestion, transformation, feature preparation, and downstream consumption by models and agents.
  • New AI features are primarily landing in Fabric Data Factory (Copilot, natural language pipeline generation). ADF classic remains fully supported but receives fewer new features.

Azure ML SDK v1 - SUPPORT ENDING JUNE 2026

  • Deprecated: March 31, 2025. Support ends: June 30, 2026 (3 months away).
  • Impact: AzureMLExecutePipeline activity uses SDK v1 published pipelines. These will stop working after June 2026.
  • Related SDKs also retiring: azureml-train-core, azureml-pipeline, azureml-pipeline-core, azureml-pipeline-steps.
  • Migration required: Use Azure ML SDK v2 batch endpoints via WebActivity (see references/azure-ml-patterns.md).
  • All new projects must use batch endpoints, not published pipelines.

Azure AI Inference SDK - RETIRING MAY 30, 2026

  • The azure-ai-inference SDK (Python/JS/.NET) is deprecated.
  • Migrate to the OpenAI SDK using the OpenAI/v1 API, which works with both Azure OpenAI and Microsoft Foundry Models.
  • This affects any code calling Azure AI model endpoints via the inference SDK.

Azure SQL Edge - RETIRED September 30, 2025

  • Azure SQL Edge (which included ONNX PREDICT on edge devices) is no longer available.
  • Migration: Use Azure SQL Managed Instance enabled by Azure Arc for edge SQL scenarios.

Cognitive Services for Power BI Dataflows - RETIRED

  • Retired: September 15, 2025. AI Insights in Power BI dataflows no longer works.
  • Alternative: Use ADF WebActivity to call Azure AI Services endpoints directly.

Azure Cognitive Services - REBRANDED

  • "Azure Cognitive Services" -> "Azure AI Services" -> now part of Microsoft Foundry.
  • API endpoints remain the same; branding has changed.

Apache Airflow in ADF - DEPRECATED

  • Deprecated in early 2025 for new customers. Existing deployments continue to function.
  • Migration: Use Fabric Data Factory, native ADF pipelines, or standalone Airflow deployments.

Integration Patterns Quick Reference

PatternActivity TypeSummaryDetails
Azure ML (Legacy SDK v1)AzureMLExecutePipelineExecute published ML pipelines via SDK v1 linked service. Support ends June 2026 -- migrate to batch endpoints.See references/azure-ml-patterns.md
Azure ML Batch Endpoints (SDK v2)WebActivityRecommended approach for batch inference. Submit jobs to batch endpoints via REST, poll for completion with Until loop.See references/azure-ml-patterns.md
Azure ML Online EndpointsWebActivityReal-time scoring of individual records or small batches via managed online endpoints with MSI auth.See references/azure-ml-patterns.md
T-SQL PREDICTSqlServerStoredProcedureIn-database ONNX model scoring. Available on SQL Server 2017+, SQL MI, and Synapse -- not Azure SQL Database.See references/sql-archival-patterns.md
sp_execute_external_scriptSqlServerStoredProcedureRun Python/R scripts inside SQL Managed Instance with ML Services enabled. Good for small-medium datasets.See references/sql-archival-patterns.md
SQL to Storage ArchivalCopy (ForEach)Archive ephemeral SQL data to Parquet in Blob/ADLS Gen2. Includes full-snapshot and incremental watermark patterns.See references/sql-archival-patterns.md
Azure AI ServicesWebActivityCall pre-built AI (sentiment, anomaly detection, vision) via REST. Use Key Vault for API keys. Batch scoring with ForEach.See references/ai-services-and-openai-patterns.md
Azure OpenAI Batch APIWebActivityLLM scoring at 50% less cost. Upload JSONL, create batch job, poll for completion. Ideal for text classification and enrichment.See references/ai-services-and-openai-patterns.md
Databricks MLDatabricksJobOrchestrate ML training and batch scoring via Databricks Jobs with MLflow tracking. Extract from SQL, score, write back.See references/databricks-ml-and-e2e-patterns.md
Data Flow FeaturesExecuteDataFlowSpark-based feature engineering with window functions, derived columns, pivots, and filters before ML scoring.See references/databricks-ml-and-e2e-patterns.md
End-to-End ML PipelineExecutePipeline + SwitchModular pipeline: archive -> feature engineering -> train or score (Switch activity) using Databricks sub-pipelines.See references/databricks-ml-and-e2e-patterns.md

Best Practices

Data Architecture

  1. Archive first, analyze later - Copy ephemeral SQL data to Storage as Parquet before running ML
  2. Use Parquet format - Columnar format is optimal for ML workloads (compression, column pruning)
  3. Date-partition storage - Use snapshot_date=YYYY-MM-DD partitioning for versioned archives
  4. Separate containers - Use distinct containers for raw archives, features, models, and scores

ML Orchestration

  1. Databricks Job activity for complex ML (training, MLflow, distributed compute)
  2. WebActivity + Azure ML batch endpoints for managed ML inference (SDK v2)
  3. WebActivity + Azure OpenAI Batch API for LLM scoring at 50% cost (text analysis, enrichment)
  4. WebActivity + Azure AI Services for pre-built AI capabilities (NLP, vision, anomaly detection)
  5. Data Flows for feature engineering when Spark-based transformations are needed
  6. Execute Pipeline pattern to modularize archive -> feature -> train -> score steps
  7. T-SQL PREDICT for in-database scoring (SQL Server/Managed Instance/Synapse only -- not Azure SQL Database)

Security

  1. Managed Identity for all Azure service connections (ML workspace, Storage, SQL)
  2. Key Vault for API keys (Azure AI Services, external endpoints)
  3. Never hardcode secrets, connection strings, or API keys in pipeline JSON
  4. Least privilege - Grant only required roles (Blob Data Contributor for storage, ML workspace roles for ML)

Cost Optimization

  1. Use General Purpose compute for Data Flows unless memory-intensive
  2. Databricks serverless compute for variable ML workloads
  3. Set appropriate timeouts on ML activities (training can be long-running)
  4. Batch scoring over real-time when latency allows (cheaper, more efficient)
  5. Incremental extraction from SQL to avoid re-copying unchanged data

Resources

Additional Reference Files

Detailed JSON examples and implementation patterns are in the references/ directory:

  • references/azure-ml-patterns.md - Azure ML ExecutePipeline (legacy SDK v1), batch endpoints (SDK v2), and online endpoints with complete activity JSON
  • references/sql-archival-patterns.md - T-SQL PREDICT, sp_execute_external_script, full/incremental SQL archival pipelines, ADLS Gen2 configuration, and storage organization
  • references/ai-services-and-openai-patterns.md - Azure AI Services (sentiment, anomaly detection), Azure OpenAI Batch API (JSONL upload, job creation, polling), and batch scoring patterns
  • references/databricks-ml-and-e2e-patterns.md - Databricks ML training/scoring pipelines, Data Flow feature engineering, and end-to-end ML pipeline with Switch activity

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.29%
按下载量换算105

Claude

29.01%
按下载量换算91

Cursor

17.81%
按下载量换算56

Gemini CLI

10.57%
按下载量换算33

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills