From magic-powers
Use when managing Azure Artifacts — feed creation and permissions, upstream sources, retention policies, package promotion across views, and connecting build pipelines to artifact feeds.
npx claudepluginhub kienbui1995/magic-powers --plugin magic-powersThis skill uses the workspace's default tool permissions.
- Creating artifact feeds for npm, NuGet, Maven, Python, or Universal packages
Generates design tokens/docs from CSS/Tailwind/styled-components codebases, audits visual consistency across 10 dimensions, detects AI slop in UI.
Records polished WebM UI demo videos of web apps using Playwright with cursor overlay, natural pacing, and three-phase scripting. Activates for demo, walkthrough, screen recording, or tutorial requests.
Delivers idiomatic Kotlin patterns for null safety, immutability, sealed classes, coroutines, Flows, extensions, DSL builders, and Gradle DSL. Use when writing, reviewing, refactoring, or designing Kotlin code.
# Publish a Universal Package to a feed
az artifacts universal publish \
--organization https://dev.azure.com/MyOrg \
--project MyProject \
--scope project \
--feed MyFeed \
--name my-package \
--version 1.0.0 \
--path ./dist
Feed scope:
Views: @local (all versions) → @prerelease (tested) → @release (production-ready). Promote packages between views as quality gates.
Configure via UI: Feed → Settings → Upstream sources → Add upstream
Common upstreams:
| Package type | Upstream | Use |
|---|---|---|
| npm | npmjs.com | Public npm packages |
| NuGet | NuGet Gallery | Public .NET packages |
| PyPI | pypi.org | Public Python packages |
| Maven | Maven Central | Public Java packages |
Key benefit: Developers use ONE feed URL, packages from upstream auto-cached. Enables audit and governance of public package versions.
Feed permissions levels:
Best practice:
Build service account → Contributor (publish from CI)
Developers → Collaborator or Reader
Admins only → Owner
Configure: Feed → Settings → Retention policies
@release view (protected)# azure-pipelines.yml
- task: NuGetAuthenticate@1
- task: NuGetCommand@2
inputs:
command: restore
feedsToUse: select
vstsFeed: 'MyProject/MyFeed'
ado-pipelines-ops — pipeline service connections used to authenticate to feedsado-security-policies — feed permissions align with project security modelado-api-cli — automate package publishing and promotion