🎯

azure-artifacts-manager

🎯Skill

from ntaksh42/agents

VibeIndex|
What it does

Manages Azure Artifacts by creating, publishing, and controlling access to package feeds across npm, NuGet, Maven, and Python.

📦

Part of

ntaksh42/agents(78 items)

azure-artifacts-manager

Installation

📋 No install commands found in docs. Showing default command. Check GitHub for actual instructions.
Quick InstallInstall with npx
npx skills add ntaksh42/agents --skill azure-artifacts-manager
2Installs
-
AddedFeb 4, 2026

Skill Details

SKILL.md

Manage Azure Artifacts including package feeds, versions, and dependencies. Use when publishing or managing artifact packages.

Overview

# Azure Artifacts Manager Skill

Azure Artifactsでパッケージを管理するスキルです。

主な機能

  • Feedの作成: npm、NuGet、Maven、Python
  • パッケージ公開: ビルド成果物の公開
  • パッケージ管理: バージョン管理
  • アクセス制御: 権限設定

Feed作成

```bash

# 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

```yaml

steps:

- task: Npm@1

inputs:

command: 'publish'

publishRegistry: 'useFeed'

publishFeed: 'my-npm-feed'

```

NuGet

```yaml

steps:

- task: NuGetCommand@2

inputs:

command: 'push'

packagesToPush: '$(Build.ArtifactStagingDirectory)/*/.nupkg'

nuGetFeedType: 'internal'

publishVstsFeed: 'my-nuget-feed'

```

Universal Packages

```bash

az artifacts universal publish \

--organization https://dev.azure.com/myorg \

--feed my-universal-feed \

--name my-package \

--version 1.0.0 \

--path ./dist

```

.npmrc設定

```ini

registry=https://pkgs.dev.azure.com/myorg/_packaging/my-npm-feed/npm/registry/

always-auth=true

```

バージョン情報

  • Version: 1.0.0

More from this repository10

🎯
document-summarizer🎯Skill

Generates concise summaries of documents by extracting key information and condensing text into a more digestible format.

🎯
algorithmic-art🎯Skill

Generates creative algorithmic art using p5.js, creating unique visual designs with patterns, fractals, and dynamic animations.

🎯
sql-query-helper🎯Skill

Generates, optimizes, and explains SQL queries with best practices, providing intelligent database query solutions across multiple database platforms.

🎯
plantuml-diagram🎯Skill

Generates PlantUML diagrams (class, sequence, component) to visually represent system architecture and UML models.

🎯
azure-pipelines-generator🎯Skill

Generates Azure Pipelines YAML configurations automatically for CI/CD workflows, supporting multi-stage builds and deployments across different environments.

🎯
kubernetes-helper🎯Skill

Assists Kubernetes users by generating, validating, and explaining Kubernetes manifests and configurations with AI-powered insights.

🎯
using-git-worktrees🎯Skill

Creates isolated Git worktrees with smart directory selection and safety verification for feature work and branch management.

🎯
dependency-analyzer🎯Skill

Analyzes project dependencies, identifies potential conflicts, and provides insights into library compatibility and version management.

🎯
brainstorming🎯Skill

Collaboratively refines rough ideas into fully-formed designs through systematic questioning, alternative exploration, and incremental validation.

🎯
azure-boards-helper🎯Skill

Manages Azure Boards work items by creating, querying, and automating work item workflows using WIQL and comprehensive templates.