Add Azure PowerShell Design Review Skill#29728
Open
audreyttt wants to merge 4 commits into
Open
Conversation
| Thanks for your contribution! The pull request validation has started. Please revisit this comment for updated status. |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR introduces a new GitHub Copilot Skill (azure-ps-design-review) intended to guide developers through producing a complete Azure PowerShell cmdlet design spec (via an interactive interview flow) and filing it as an issue in Azure/azure-powershell-cmdlet-review-pr.
Changes:
- Adds the
azure-ps-design-reviewskill definition and workflow guidance (including scratch-file based long-form input). - Adds reference documents: a condensed design-guidelines checklist and a target issue template for design-review submissions.
- Adds a
.gitignoreto keep the scratch directory in-repo while ignoring generated scratch content.
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 7 comments.
| File | Description |
|---|---|
.github/skills/azure-ps-design-review/SKILL.md |
Defines the skill, workflow steps, MCP prerequisites, and scratch-file interaction pattern. |
.github/skills/azure-ps-design-review/scratch/.gitignore |
Keeps the scratch folder present while ignoring all scratch artifacts except .gitignore. |
.github/skills/azure-ps-design-review/references/issue-template.md |
Provides the Markdown issue template the skill should populate when filing design reviews. |
.github/skills/azure-ps-design-review/references/design-guidelines-summary.md |
Summarizes design guideline checks the skill should validate against during the interview. |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds a new Copilot skill (
azure-ps-design-review) that guides developers through creating complete PowerShell cmdlet design specifications via an interactive conversational flow in VS Code. Helps feature teams file a complete issue inAzure/azure-powershell-cmdlet-review-pr.New files:
.github/skills/azure-ps-design-review/SKILL.md— The skill definitionreferences/design-guidelines-summary.md— Condensed validation rules from the Azure PowerShell Design Guidelinesreferences/issue-template.md— The target GitHub Issue formatscratch/.gitignore— Keeps the scratch directory in the repo while ignoring temporary files created during design interviews.