Agent skill
azure-artifacts-manager
Manage Azure Artifacts including package feeds, versions, and dependencies. Use when publishing or managing artifact packages.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/devops/azure-artifacts-manager
SKILL.md
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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?