← スキル一覧に戻る

azure-artifacts-manager
by ntaksh42
⭐ 0🍴 1📅 2026年1月17日
SKILL.md
name: azure-artifacts-manager description: Manage Azure Artifacts including package feeds, versions, and dependencies. Use when publishing or managing artifact packages.
Azure Artifacts Manager Skill
Azure Artifactsでパッケージを管理するスキルです。
主な機能
- Feedの作成: npm、NuGet、Maven、Python
- パッケージ公開: ビルド成果物の公開
- パッケージ管理: バージョン管理
- アクセス制御: 権限設定
Feed作成
# npm Feed作成
az artifacts feed create \
--name "my-npm-feed" \
--feed-type npm
# NuGet Feed
az artifacts feed create \
--name "my-nuget-feed" \
--feed-type nuget
# Universal Packages
az artifacts feed create \
--name "my-universal-feed" \
--feed-type universal
パッケージ公開
npm
steps:
- task: Npm@1
inputs:
command: 'publish'
publishRegistry: 'useFeed'
publishFeed: 'my-npm-feed'
NuGet
steps:
- task: NuGetCommand@2
inputs:
command: 'push'
packagesToPush: '$(Build.ArtifactStagingDirectory)/**/*.nupkg'
nuGetFeedType: 'internal'
publishVstsFeed: 'my-nuget-feed'
Universal Packages
az artifacts universal publish \
--organization https://dev.azure.com/myorg \
--feed my-universal-feed \
--name my-package \
--version 1.0.0 \
--path ./dist
.npmrc設定
registry=https://pkgs.dev.azure.com/myorg/_packaging/my-npm-feed/npm/registry/
always-auth=true
バージョン情報
- Version: 1.0.0
スコア
総合スコア
50/100
リポジトリの品質指標に基づく評価
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
レビュー
💬
レビュー機能は近日公開予定です