技能 skill-creator-ms
📦

skill-creator-ms

低风险 ⚙️ 外部命令🌐 网络访问📁 文件系统访问🔑 环境变量

AI 에이전트용 Azure SDK 스킬 생성

이 스킬은 AI 에이전트가 Azure SDK 및 Microsoft Foundry 서비스를 위한 모듈식 지식 패키지를 생성하도록 안내하며, 일관된 패턴과 적절한 인증을 보장합니다.

支持: Claude Codex Code(CC)
⚠️ 68
1

下载技能 ZIP

2

在 Claude 中上传

前往 设置 → 功能 → 技能 → 上传技能

3

开启并开始使用

测试它

正在使用“skill-creator-ms”。 Azure Key Vault secrets용 스킬 생성

预期结果:

SKILL.md가 포함된 완전한 스킬 구조: 설치 명령(pip install azure-keyvault-secrets), 환경 변수 설정, DefaultAzureCredential 인증, 시크릿 작업을 위한 핵심 워크플로우 예시, 모범 사례 및 참조 링크.

正在使用“skill-creator-ms”。 Azure SDK 스킬을 구성하기 위해 사용할 수 있는 카테고리는 무엇인가요?

预期结果:

Foundry(AI Foundry, agents), Data(Storage, Cosmos DB), Messaging(Event Hubs, Service Bus), Monitoring(OpenTelemetry), Identity(인증), Security(Key Vault), Integration(API Management), Compute(Batch), Container(Container Registry).

正在使用“skill-creator-ms”。 Azure SDK 스킬의 수용 기준 생성

预期结果:

올바른/잘못된 가져오기 패턴, 인증 패턴(DefaultAzureCredential 대신 하드코딩), 클라이언트 초기화, 비동기 변형, 피해야 할 일반적인 안��� 패턴이 포함된 수용 기준 ��서.

安全审计

低风险
v1 • 2/25/2026

Static scanner flagged 219 potential issues (external commands, network, filesystem, env access) but ALL are false positives. The skill is a documentation/guide containing markdown code examples for creating Azure SDK skills. No executable malicious code exists. The skill explicitly warns against hardcoding credentials as a security anti-pattern.

1
已扫描文件
619
分析行数
8
发现项
1
审计总数
低风险问题 (4)
External Command Patterns in Code Examples
Scanner detected 168 'external command' patterns at various lines. These are bash command examples in markdown code blocks (pip install, ln -s, pnpm commands) used to document the skill creation process. Not actual executable code.
Hardcoded URLs in Documentation
Three URLs detected: example Azure endpoint, Microsoft Learn docs URL, and GitHub repo URL. These are legitimate documentation URLs and example placeholders.
Filesystem References in Skill Structure
Path traversal and symlink patterns detected. These describe the skill's own directory structure (.github/skills/, skills/<language>/<category>/) used for organizing Azure SDK skills.
Environment Variable Examples
Environment variable access patterns (AZURE_ENDPOINT) in code examples. The skill explicitly warns against hardcoding credentials as a security anti-pattern.

风险因素

⚙️ 外部命令 (2)
🌐 网络访问 (3)
📁 文件系统访问 (2)
🔑 环境变量 (2)
审计者: claude

质量评分

38
架构
100
可维护性
87
内容
32
社区
82
安全
87
规范符合性

你能构建什么

새 Azure SDK 스킬 생성

개발자가 새 Azure 서비스 SDK용 스킬을 생성해야 할 때

기존 스킬 업데이트

최신 Azure SDK 패턴과 인증으로 기존 스킬 업데이트

스킬 테스트 및 검증

스킬 품질을 검증하기 위한 수용 기준 및 테스트 시나���오 생성

试试这些提示

Azure AI 에이전트 스킬 생성
skill-creator-ms를 사용하여 Azure AI Agents SDK용 새 스킬을 생성하세요. SDK 패키지는 azure-ai-agents이며 문서는 https://learn.microsoft.com/en-us/azure/ai-services/agents/에 있습니다.
Cosmos DB 스킬 생성
azure-cosmos SDK를 사용하여 Azure Cosmos DB용 스킬을 생성하세요. 문서: https://learn.microsoft.com/en-us/azure/cosmos-db/
인증 섹션 추가
DefaultAzureCredential을 사용하여 기존 azure-storage 스킬에 적절한 인증 문서를 추가하세요.
테스트 시나리오 생성
skill-creator-ms 패턴을 따라 azure-eventhub 스킬의 수용 기준 및 테스트 시나리오를 생성하세요.

最佳实践

  • 하드코딩된 API 키 대신 인증을 위��� 항상 DefaultAzureCredential 사용
  • SKILL.md를 500줄 이하로 유지하고 참조 파일과 함께 점진적 공개 사용
  • 출력을 검증하는 데 도움이 되도록 수용 기준에 올바른 코드 패턴과 잘못된 코드 패턴 모두 포함

避免

  • 사용자로부터 SDK 패키지 이름과 문서 URL을 먼저 얻지 않고 스킬 생성
  • 예제 코드에 자격 증명 하드코딩 - 항상 환경 변수 사용
  • 인증 섹션 건���뛰기 - 안내가 없으면 에이���트가 poorly improvisation함

常见问题

Azure SDK 스킬을 생성하기 전에 어떤 정보를 제공해야 하나요?
SDK 패키지 이름(예: azure-ai-agents), Microsoft Learn 문서 URL, 선택적으로 코드 패턴을 위한 GitHub 리포지토리를 제공해야 합니다.
카테고리별로 스킬을 구성하려면 어떻게 하나요?
skills/<language>/<category>/에 .github/skills/<skill-name>을 가리키는 심볼릭 링크를 생성하세요. 카테고리에는 foundry, data, messaging, monitoring, identity, security, integration, compute, container가 포함됩니다.
어떤 인증 방법을 사용해야 하나��?
Azure SDK에는 항상 DefaultAzureCredential을 사용하세요. 자격 증명을 하드코딩하지 마세요. AZURE_ENDPOINT와 같은 환경 변수를 사용하세요.
SKILL.md는 얼마나 길어야 하나요?
SKILL.md를 500줄 이하로 유지하세요. 점진적 공개를 사용하세요 - 메타데이터는 항상 로드하고, 본문은 스킬이 트리거될 때 로드하며, 참조 파일은 필요할 때 로드하세요.
스킬용 테스트를 생성해야 하나요?
네, 모든 스킬은 references/acceptance-criteria.md에 수용 기준이 있어야 하며, tests/scenarios/<skill-name>/scenarios.yaml에 테스트 시나리오가 있어야 합니다.
지원되는 프로그래밍 언어는 무엇인가요?
이 스킬은 Azure SDK용 Python, .NET(C#), Java 및 TypeScript 패턴을 다룹니다.

开发者详情

文件结构

📄 SKILL.md