list-plans Skill
Discovers valid migration plans in the workspace and returns the selected plan path. A valid plan is a subdirectory of .github/modernize/ that contains plan.md AND tasks.json (tasks.json may be in the plan folder or in a .metadata subfolder). Handles 0, 1, or multiple plans and prompts the user when a choice is needed. Published by microsoft in github-copilot-modernization.
Decision snapshot
Is this a fit?
Testing, Includes SKILL.md, Reusable instructions
Compatibility not yet detected.
Permission behavior not yet detected.
Copy skill directory
3 months ago · MIT license
No specific cautions were detected. Review the source and requested permissions before installing.
What is list-plans Skill?
Discovers valid migration plans in the workspace and returns the selected plan path. A valid plan is a subdirectory of .github/modernize/ that contains plan.md AND tasks.json (tasks.json may be in the plan folder or in a .metadata subfolder). Handles 0, 1, or multiple plans and prompts the user when a choice is needed. Published by microsoft in github-copilot-modernization. This profile combines repository metadata with install, compatibility, and usage signals so developers can quickly decide whether it fits their agent workflow before opening the source repository.
Automated repository signals based on public metadata such as recency, license, installation evidence, and adoption. These are not a security audit or endorsement. See how SkillIndex evaluates profiles.
Key capabilities
- Includes SKILL.md support
- Reusable instructions support
- Testing
- Testing use cases
Declared skill metadata
- Source file: plugins/github-copilot-modernization/skills/list-plans/SKILL.md
These fields retain source and confidence evidence from the indexed SKILL.md.
Compatibility and setup
- Install or run with Copy skill directory
When to use list-plans Skill
- Use it for testing.
Built with
Editorial notes
Source
- Creator: microsoft
- Repository: microsoft/github-copilot-modernization
- Skill file: plugins/github-copilot-modernization/skills/list-plans/SKILL.md
What it does
Discovers valid migration plans in the workspace and returns the selected plan path. A valid plan is a subdirectory of .github/modernize/ that contains plan.md AND tasks.json (tasks.json may be in the plan folder or in a .metadata subfolder). Handles 0, 1, or multiple plans and prompts the user when a choice is needed.
Skill instructions
List and Select Plan Step 1 — Discover valid plans You MUST run this in a terminal — do NOT use file tools (listdir, filesearch, grepsearch) to discover plans. Detect the OS and run the matching script in the terminal. Replace <workspace-root with the absolute path to the workspace root before running. Windows (PowerShell) — run in terminal: powershell Set-Location "<workspace-root" $modernizeDir = ".github/modernize" $plans = @() if (Test-Path $modernizeDir) { Get-ChildItem -Path $modernizeDir -Directory | ForEach-Object { $hasPlan = Test-Path (Join-Path $.FullName "plan.md") $hasTasks = (Test-Path (Join-Path $.FullName "tasks.json")) -or (Test-Path (Join-Path $.FullName ".metadata/tasks.json")) if ($hasPlan -and $hasTasks) { $plans += @{ folder = $.Name; planPath = "$modernizeDir/$($.Name)/plan.md" } } } } $plans | ConvertTo-Json -Depth 2 macOS / Linux (bash) — run in terminal: bash cd "<workspace-root" modernizedir=".github/modernize" entries="[]" if [ -d "$modernizedir" ]; then for
Verified compatibility and discovery
Frequently asked questions
What is list-plans?
list-plans is a open-source AI agent skill with Copy skill directory. Discovers valid migration plans in the workspace and returns the selected plan path. A valid plan is a subdirectory of .github/modernize/ that contains plan.md AND tasks.json (tasks.json may be in the plan.
Who is list-plans best for?
list-plans is best for reusing agent instructions, scripts, and references, testing workflows.
How do I install list-plans?
Install or run list-plans using Copy skill directory. Check list-plans for the latest setup command.
Is list-plans actively maintained?
list-plans may need a closer maintenance check before production use.
Project health auto-fetched from the source repository.
Maintain this resource?
Review this source-backed profile, send a correction with evidence, or link to it from your documentation. Claims verify your relationship to the project; profile facts still require source evidence and editorial review.