with one click
test-skill-file
Roll dice using a random number generator.
Menu
Roll dice using a random number generator.
| name | test-skill_file |
| description | Roll dice using a random number generator. |
To roll a die, use the following command that generates a random number from 1 to the given number of sides:
echo $((RANDOM % <sides> + 1))
Get-Random -Minimum 1 -Maximum (<sides> + 1)
Replace <sides> with the number of sides on the die (e.g., 6 for a standard
die, 20 for a d20).
Review Azure SDK management-plane migration PRs (Swagger/AutoRest -> TypeSpec). Checks customization quality, TypeSpec decorator usage, and migration-specific anti-patterns on top of the standard mgmt PR review.
Review Azure SDK management-plane pull requests, check naming conventions, API compatibility, and code quality.
Patterns and techniques for mitigating breaking changes during Azure management-plane SDK migration from Swagger/AutoRest to TypeSpec. Covers SDK-side customizations (partial classes, CodeGenType, CodeGenSuppress) and TypeSpec decorator customizations (clientName, access, markAsPageable, alternateType, hierarchyBuilding).
Handles Azure SDK for .NET management-plane migrations from AutoRest/Swagger to TypeSpec; use for MPG, mgmt migration, or Azure.ResourceManager.* migration requests.
Roll dice using a random number generator. Use when asked to roll a die (d6, d20, etc.), roll dice, or generate a random dice roll.
Generate the code from typespec for C#. Parameter: C# SDK repository root location <cs_root>.