Help us improve
Share bugs, ideas, or general feedback.
From neo-skills
Designs and generates Azure Pipelines YAML scripts using latest Microsoft standards and modular templates. Supports .NET builds and deployments to App Service, AKS, or IIS.
npx claudepluginhub benknightdark/neo-skills --plugin neo-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/neo-skills:neo-azure-pipelinesThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
1. Access and retrieve official documentation at `https://learn.microsoft.com/en-us/azure/devops/pipelines/?view=azure-devops` to obtain the latest YAML syntax architecture, Task update notes, and security best practices.
templates/build/build-dotnet.ymltemplates/deploy/deploy-app-service.ymltemplates/deploy/deploy-iis.ymltemplates/util/clean-artifact.ymltemplates/util/extract-artifact.ymltemplates/util/iis/iis-backup.ymltemplates/util/iis/iis-deploy-files.ymltemplates/util/iis/iis-manage-website.ymltemplates/util/iis/iis-rollback.ymltemplates/util/iis/iis-start-website.ymltemplates/util/iis/iis-stop-website.ymltemplates/util/iis/iis-task.ymltemplates/util/set-aspnetcore-env.ymlProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Guides systematic root-cause debugging when tests fail, builds break, or unexpected errors occur. Provides a structured triage checklist to preserve evidence, localize, and fix issues instead of guessing.
Share bugs, ideas, or general feedback.
https://learn.microsoft.com/en-us/azure/devops/pipelines/?view=azure-devops to obtain the latest YAML syntax architecture, Task update notes, and security best practices.skills/neo-azure-pipelines/templates/ directory to identify existing reusable template resources. Includes:
build/build-dotnet.ymldeploy/deploy-app-service.yml, deploy/deploy-iis.ymlutil/clean-artifact.yml, util/extract-artifact.yml, util/iis/*.yml, etc.skills/neo-azure-pipelines/templates/ to assemble the Pipeline, rather than writing raw YAML from scratch.
build-dotnet.yml and deploy-iis.yml.util/extract-artifact.yml.template syntax to reference selected template files and correctly pass required parameters. For example:
- template: skills/neo-azure-pipelines/templates/build/build-dotnet.yml
parameters:
buildConfiguration: 'Release'
When configuring a CI process for a .NET project:
.sln)..pipelines/templates/build/ and .pipelines/templates/util/ directories.build/build-dotnet.yml and util/clean-artifact.yml templates to their respective locations.azure-pipelines-ci.yml in the project root, ensuring the structure uses proper template syntax with correct parameters.When configuring a CD process for Azure App Service:
deploy/deploy-app-service.yml to the project's .pipelines/templates/deploy/ directory.azure-pipelines-cd-appservice.yml) in the project root.environment, strategy: runOnce, and template calls.When configuring a CD process for on-premises IIS:
util/iis/ directory and the deploy/deploy-iis.yml template to the project's .pipelines/templates/ directory.azure-pipelines-cd-iis.yml) in the project root, referencing deploy-iis.yml with parameters like websiteName and physicalPath.iis-backup.yml and iis-rollback.yml logic.