Skip to content

[TEST] Combined eval troubleshooting guide + MCP C# skills - #442

Closed
danmoseley wants to merge 41 commits into
dotnet:mainfrom
danmoseley:danmose/eval-combined-test
Closed

[TEST] Combined eval troubleshooting guide + MCP C# skills#442
danmoseley wants to merge 41 commits into
dotnet:mainfrom
danmoseley:danmose/eval-combined-test

Conversation

@danmoseley

Copy link
Copy Markdown
Contributor

Throwaway PR to test evaluation troubleshooting guide (#441) with MCP C# skills (#317).

Combines both PRs to see if the troubleshooting output is useful when there are real eval failures.

This PR should be closed after testing -- do not merge.

leslierichardson95 and others added 30 commits March 10, 2026 10:55
Four new skills for the C# MCP server development lifecycle:
- mcp-csharp-create: Scaffolding with dotnet new mcpserver, tools/prompts/resources, transport config
- mcp-csharp-debug: MCP Inspector, VS Code integration, breakpoint debugging, logging
- mcp-csharp-test: Unit tests with ClientServerTestBase, integration with WebApplicationFactory, evals
- mcp-csharp-publish: NuGet packaging, Docker/Azure deployment, MCP Registry publishing

Each skill includes SKILL.md with progressive disclosure references/ and eval.yaml tests.
…te syntax

Replace scaffolding-heavy scenarios with implementation-focused ones that
test MCP-specific features (resources, prompts, logging). Fix assertion
patterns to match combined C# attribute syntax [McpServerTool, Description()]
instead of requiring standalone [McpServerTool]. Increase timeouts to 180s
to account for skill-reading overhead.

Validator result: passed=True, improvement=44.6% (threshold=10%)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
…aging.md

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Cross-skill references used ../sibling/SKILL.md paths which the
validator rejects. Replace with backtick-quoted skill names to match
the convention used by other skills in the repo.
Add domains referenced by the mcp-csharp-* skills:
- github.com/modelcontextprotocol/registry
- github.com/open-telemetry/semantic-conventions
- npmjs.com, xunit.net, fluentassertions.com, nugettest.org

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
The URL regex truncates at angle brackets (invalid in URIs), so
placeholder URLs like https://github.com/<yourusername>/<repo>
become https://github.com/ which didn't match any path-scoped entry.
Adding github.com/ (with trailing slash) covers only this case without
broadly allowing all github.com URLs.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
leslierichardson95 and others added 11 commits March 20, 2026 15:37
McpServerToolType is only needed with WithToolsFromAssembly(), which is
discouraged because it is not Native AOT compatible. Updated eval assertions
and rubrics to prefer WithTools<T>() instead.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Increase mcp-csharp-create timeouts from 180s (or default 120s) to 360s
  for all 3 scenarios. These scenarios consistently time out because the
  model spends time on bash exploration/scaffolding before writing code.

- Add explicit timeout to scenario 3 which was relying on the 120s default.

- Broaden mcp-csharp-debug Inspector rubric to accept both the concise
  single CLI command style and the step-by-step UI configuration walkthrough,
  since both are correct approaches.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Add InvestigatingResults.md with:
- How to find and download evaluation artifacts from workflow runs
- Full results.json schema documentation
- Common failure patterns (timeouts, empty output, variance, rubric
  issues, skill not activated) with diagnosis steps and fixes
- Example analysis script for AI agents to parse results

Link the doc from:
- Reporter.cs: show a link in the PR comment when any skill fails
- skill-validator README.md: Output section
- CONTRIBUTING.md: CI evaluation section

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
…oaches

The rubric criterion 'Shows how to attach a debugger' was too narrow.
The skilled answer correctly focused on the #1 cause (stdout pollution)
but scored low because it didn't show a specific 'attach to process' flow.
Broadened to accept any valid debugging approach: attaching, Debugger.Launch(),
or launch.json configuration.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copilot AI review requested due to automatic review settings March 25, 2026 03:15
@github-actions

Copy link
Copy Markdown
Contributor

Note

This PR is from a fork and modifies infrastructure files (eng/ or .github/).

Changes to infrastructure typically need to be submitted from a branch in dotnet/skills (not a fork) so that CI workflows run with the correct permissions and secrets.

Please consider recreating this PR from an upstream branch. If you don't have push access to dotnet/skills, ask a maintainer to push your branch for you.

@danmoseley danmoseley added the DO NOT MERGE Flagging for ensuring that the issue is not merged. label Mar 25, 2026
@danmoseley

Copy link
Copy Markdown
Contributor Author

/evaluate

@danmoseley danmoseley closed this Mar 25, 2026
@danmoseley
danmoseley deleted the danmose/eval-combined-test branch March 25, 2026 03:16

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR combines two efforts: (1) adding an evaluation troubleshooting guide and surfacing it in CI/markdown summaries, and (2) adding MCP C# skill documentation plus associated eval scenarios under tests/dotnet-ai/.

Changes:

  • Adds an evaluation results troubleshooting guide (InvestigatingResults.md) and links/prompts to it from validator output and the evaluation workflow.
  • Introduces MCP C# skill docs (mcp-csharp-create/debug/test/publish) with supporting reference docs.
  • Adds new eval scenarios for the MCP C# skills and updates CODEOWNERS/known-domains to support the new documentation.

Reviewed changes

Copilot reviewed 23 out of 23 changed files in this pull request and generated 4 comments.

Show a summary per file
File Description
tests/dotnet-ai/mcp-csharp-test/eval.yaml Adds eval scenarios for MCP server testing guidance.
tests/dotnet-ai/mcp-csharp-publish/eval.yaml Adds eval scenarios for MCP server packaging/deployment/publishing.
tests/dotnet-ai/mcp-csharp-debug/eval.yaml Adds eval scenarios for MCP server debugging and IDE/Inspector setup.
tests/dotnet-ai/mcp-csharp-create/eval.yaml Adds eval scenarios for creating MCP servers and implementing tools/prompts/resources.
plugins/dotnet-ai/skills/mcp-csharp-test/references/test-patterns.md Adds reference patterns for unit/integration testing MCP servers.
plugins/dotnet-ai/skills/mcp-csharp-test/SKILL.md Adds the MCP C# testing skill content.
plugins/dotnet-ai/skills/mcp-csharp-publish/references/nuget-packaging.md Adds detailed NuGet tool packaging guidance for MCP servers.
plugins/dotnet-ai/skills/mcp-csharp-publish/references/mcp-registry.md Adds MCP Registry publishing guidance and server.json schema notes.
plugins/dotnet-ai/skills/mcp-csharp-publish/references/docker-azure.md Adds Docker/Azure deployment guidance for HTTP MCP servers.
plugins/dotnet-ai/skills/mcp-csharp-publish/SKILL.md Adds the MCP C# publishing/deployment skill content.
plugins/dotnet-ai/skills/mcp-csharp-debug/references/mcp-inspector.md Adds MCP Inspector usage and troubleshooting reference.
plugins/dotnet-ai/skills/mcp-csharp-debug/references/ide-config.md Adds VS Code/Visual Studio config and debugging reference.
plugins/dotnet-ai/skills/mcp-csharp-debug/SKILL.md Adds the MCP C# debugging skill content.
plugins/dotnet-ai/skills/mcp-csharp-create/references/transport-config.md Adds stdio/HTTP transport configuration reference.
plugins/dotnet-ai/skills/mcp-csharp-create/references/api-patterns.md Adds C# MCP SDK API/attribute/DI patterns reference.
plugins/dotnet-ai/skills/mcp-csharp-create/SKILL.md Adds the MCP C# server creation skill content.
eng/skill-validator/src/Evaluate/Reporter.cs Adds a troubleshooting-guide link to markdown summaries when failures occur.
eng/skill-validator/README.md Links to the new troubleshooting guide from validator docs.
eng/skill-validator/InvestigatingResults.md Adds the new evaluation troubleshooting guide and results.json schema/patterns.
eng/known-domains.txt Expands allowlist for new documentation links and adjusts inline format guidance.
CONTRIBUTING.md Links to troubleshooting guide from contributing/evaluation section.
.github/workflows/evaluation.yml Appends a copy/paste investigation prompt to PR comments when failures occur.
.github/CODEOWNERS Adds ownership entries for the new MCP C# skill/test paths.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

stdio JSON-RPC protocol.
assertions:
- type: "output_matches"
pattern: "\\[McpServerTool[\\]T,\\(]"

Copilot AI Mar 25, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The output_matches regex looks malformed: \\[McpServerTool[\\]T,\\(] includes an unexpected T inside the character class, so it may match [McpServerToolT instead of the intended [McpServerTool]/[McpServerTool( patterns. This will make the assertion flaky or always-failing depending on the agent output.

Update the pattern to match the attribute name consistently (e.g., mirror the earlier scenario’s pattern) and ensure it matches the intended bracket/parenthesis forms.

Suggested change
pattern: "\\[McpServerTool[\\]T,\\(]"
pattern: "\\[McpServerTool[\\],\\(]"

Copilot uses AI. Check for mistakes.
Comment on lines +646 to +652
if grep -q '❌' summary-body.md; then
RUN_ID="${{ github.run_id }}"
echo ""
echo "> **To investigate failures**, paste this to your AI coding agent:"
echo ">"
echo "> _Download eval artifacts with \`gh run download ${RUN_ID} --repo ${{ github.repository }} --dir /tmp/eval-results\`, then fetch https://raw.githubusercontent.com/${{ github.repository }}/main/eng/skill-validator/InvestigatingResults.md and follow it to analyze the results.json files. Diagnose each failure, suggest fixes to the eval.yaml and skill content, and tell me what to fix first._"
fi

Copilot AI Mar 25, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The investigation prompt fetches InvestigatingResults.md from the main branch. In PRs where the guide is being introduced/updated (including this one), that URL can 404 or be out of sync with the evaluator output, making the prompt ineffective.

Consider fetching the guide at the evaluated commit SHA (e.g., ${{ needs.gate.outputs.head_sha }} or ${{ github.sha }}) so the link always matches the run’s content.

Copilot uses AI. Check for mistakes.
Comment thread eng/known-domains.txt
Comment on lines +56 to +57
github.com/yourusername
github.com/username

Copilot AI Mar 25, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Allowlisting github.com/yourusername and github.com/username weakens reference validation because these are real, potentially user-controlled GitHub accounts. This effectively permits arbitrary external content under those owners without explicit review.

Safer alternatives: update the docs to use non-resolvable placeholders (so they aren’t detected as URLs), or use an org/repo that’s already allowlisted (or a GitHub-owned example org) and remove these placeholder allowlist entries.

Suggested change
github.com/yourusername
github.com/username
# Use non-resolvable placeholders in docs instead of real GitHub usernames.

Copilot uses AI. Check for mistakes.

bool anyFailure = verdicts.Any(v => !v.Passed);
if (anyFailure)
sb.AppendLine("\n> 📖 See [InvestigatingResults.md](https://github.com/dotnet/skills/blob/main/eng/skill-validator/InvestigatingResults.md) for how to diagnose failures — or use the copy-paste prompt below.");

Copilot AI Mar 25, 2026

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This new line says “or use the copy-paste prompt below,” but summary.md generated by skill-validator doesn’t include any prompt text—only the GitHub Actions workflow appends it. This makes local runs or artifact-only reads confusing.

Suggest rewording to avoid referencing a prompt below (or conditionally emit this only in the PR comment generation path).

Suggested change
sb.AppendLine("\n> 📖 See [InvestigatingResults.md](https://github.com/dotnet/skills/blob/main/eng/skill-validator/InvestigatingResults.md) for how to diagnose failures — or use the copy-paste prompt below.");
sb.AppendLine("\n> 📖 See [InvestigatingResults.md](https://github.com/dotnet/skills/blob/main/eng/skill-validator/InvestigatingResults.md) for how to diagnose failures.");

Copilot uses AI. Check for mistakes.
@github-actions

Copy link
Copy Markdown
Contributor

Skill Validation Results

Skill Scenario Quality (Isolated) Quality (Plugin) Skills Loaded Agents Invoked Overfit Verdict
csharp-scripts Test a C# language feature with a script 1.0/5 ⏰ → 4.0/5 🟢 1.0/5 ⏰ → 5.0/5 🟢 ✅ csharp-scripts; tools: skill, create, edit / ✅ csharp-scripts; tools: skill, create, edit — / — 🟡 0.34
nuget-trusted-publishing Set up trusted publishing for a new NuGet library 1.0/5 ⏰ → 1.0/5 ⏰ 1.0/5 ⏰ → 4.0/5 🟢 ⚠️ NOT ACTIVATED / ✅ nuget-trusted-publishing; tools: skill, view, create — / — ✅ 0.10 [1]
nuget-trusted-publishing Set up NuGet publishing without mentioning trusted publishing 2.0/5 → 1.0/5 ⏰ 🔴 2.0/5 → 5.0/5 🟢 ✅ nuget-trusted-publishing; tools: report_intent, skill / ✅ nuget-trusted-publishing; tools: skill, report_intent, view, glob, bash, create — / — ✅ 0.10
nuget-trusted-publishing Migrate existing workflow from API key to trusted publishing 2.0/5 → 4.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ nuget-trusted-publishing; tools: skill / ✅ nuget-trusted-publishing; tools: skill, bash — / — ✅ 0.10
dotnet-pinvoke Generate LibraryImport declaration from C header (.NET 8+) 4.0/5 → 4.0/5 ⏰ 4.0/5 → 5.0/5 🟢 ✅ dotnet-pinvoke; tools: skill / ✅ dotnet-pinvoke; tools: skill — / — ✅ 0.06
dotnet-pinvoke Generate LibraryImport declaration from C header (.NET Framework) 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ dotnet-pinvoke; tools: skill / ✅ dotnet-pinvoke; tools: skill — / — ✅ 0.06 [2]
dotnet-trace-collect High CPU in Kubernetes on Linux (.NET 8) 4.0/5 → 4.0/5 4.0/5 → 4.0/5 ✅ dotnet-trace-collect; tools: skill, report_intent, view / ✅ dotnet-trace-collect; tools: skill, report_intent, view — / — ✅ 0.10 [3]
dotnet-trace-collect .NET Framework on Windows without admin privileges 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ dotnet-trace-collect; tools: skill / ✅ dotnet-trace-collect; tools: skill — / — ✅ 0.10
dotnet-trace-collect .NET 10 on Linux with root access and native call stacks 1.0/5 → 4.0/5 🟢 1.0/5 → 4.0/5 🟢 ✅ dotnet-trace-collect; tools: skill, report_intent, view / ✅ dotnet-trace-collect; tools: skill, report_intent, view — / — ✅ 0.10
dotnet-trace-collect Memory leak on Linux (.NET 8) 3.0/5 → 3.0/5 3.0/5 → 3.0/5 ✅ dotnet-trace-collect; tools: report_intent, skill, view / ✅ dotnet-trace-collect; tools: skill, report_intent, view — / — ✅ 0.10 [4]
dotnet-trace-collect Slow requests on Windows with PerfView 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ dotnet-trace-collect; tools: skill, report_intent, view / ✅ dotnet-trace-collect; tools: skill — / — ✅ 0.10 [5]
dotnet-trace-collect Excessive GC on Linux (.NET 8) 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ dotnet-trace-collect; tools: skill / ✅ dotnet-trace-collect; tools: skill — / — ✅ 0.10
dotnet-trace-collect Hang or deadlock diagnosis on Linux 3.0/5 → 4.0/5 🟢 3.0/5 → 4.0/5 🟢 ✅ dotnet-trace-collect; tools: skill, report_intent, view / ✅ dotnet-trace-collect; tools: skill — / — ✅ 0.10
dotnet-trace-collect Windows container high CPU with PerfView 1.0/5 → 5.0/5 🟢 1.0/5 → 5.0/5 🟢 ✅ dotnet-trace-collect; tools: report_intent, skill, view / ✅ dotnet-trace-collect; tools: report_intent, skill, view — / — ✅ 0.10
dotnet-trace-collect Long-running intermittent issue with PerfView triggers 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ dotnet-trace-collect; tools: report_intent, skill, view / ✅ dotnet-trace-collect; tools: skill, report_intent, view — / — ✅ 0.10
dotnet-trace-collect Linux pre-.NET 10 needing native call stacks 2.0/5 → 5.0/5 🟢 2.0/5 → 4.0/5 🟢 ✅ dotnet-trace-collect; tools: report_intent, skill, view / ✅ dotnet-trace-collect; tools: report_intent, skill, view — / — ✅ 0.10
dotnet-trace-collect Windows modern .NET with admin high CPU 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ dotnet-trace-collect; tools: report_intent, skill, view / ✅ dotnet-trace-collect; tools: skill, report_intent, view — / — ✅ 0.10
dotnet-trace-collect Memory leak on .NET Framework Windows 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ dotnet-trace-collect; tools: skill, report_intent, view / ✅ dotnet-trace-collect; tools: report_intent, skill, view — / — ✅ 0.10
dotnet-trace-collect Kubernetes with console access prefers console tools 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ dotnet-trace-collect; tools: skill, report_intent, view / ✅ dotnet-trace-collect; tools: report_intent, skill, view — / — ✅ 0.10
dotnet-trace-collect Container installation without .NET SDK 3.0/5 → 5.0/5 🟢 3.0/5 → 4.0/5 🟢 ✅ dotnet-trace-collect; tools: skill / ✅ dotnet-trace-collect; tools: skill — / — ✅ 0.10
dotnet-trace-collect HTTP 500s from downstream service on Linux (.NET 8) 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ dotnet-trace-collect; tools: report_intent, skill, view / ✅ dotnet-trace-collect; tools: skill, report_intent, view — / — ✅ 0.10
dotnet-trace-collect Networking timeouts on Windows with admin (.NET 8) 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ dotnet-trace-collect; tools: skill, report_intent, view / ✅ dotnet-trace-collect; tools: skill, report_intent, view — / — ✅ 0.10
dotnet-trace-collect Assembly loading failure on Linux (.NET 8) 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ dotnet-trace-collect; tools: report_intent, skill, view / ✅ dotnet-trace-collect; tools: skill, report_intent, view — / — ✅ 0.10 [6]
microbenchmarking Investigate runtime upgrade performance impact 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ microbenchmarking; tools: skill / ✅ microbenchmarking; tools: skill — / — ✅ 0.11
clr-activation-debugging Diagnose unexpected FOD dialog from native build tool 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ clr-activation-debugging; tools: skill / ✅ clr-activation-debugging; tools: skill — / — ✅ 0.12 [7]
clr-activation-debugging Diagnose FOD suppressed but activation still failing 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ clr-activation-debugging; tools: skill, bash / ✅ clr-activation-debugging; tools: skill, bash — / — ✅ 0.12
clr-activation-debugging Explain why same binary behaves differently under different launch methods 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ clr-activation-debugging; tools: skill / ✅ clr-activation-debugging; tools: skill — / — ✅ 0.12
clr-activation-debugging Analyze healthy managed EXE activation 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ clr-activation-debugging; tools: skill / ✅ clr-activation-debugging; tools: skill, bash — / — ✅ 0.12
clr-activation-debugging Identify multiple activation sequences in a single log 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ clr-activation-debugging; tools: skill, bash / ✅ clr-activation-debugging; tools: skill — / — ✅ 0.12 [8]
clr-activation-debugging Explain useLegacyV2RuntimeActivationPolicy in activation log 4.0/5 → 3.0/5 🔴 4.0/5 → 3.0/5 🔴 ✅ clr-activation-debugging; tools: skill / ✅ clr-activation-debugging; tools: skill — / — ✅ 0.12
clr-activation-debugging Decline non-CLR-activation issue 1.0/5 → 5.0/5 🟢 1.0/5 → 5.0/5 🟢 ✅ clr-activation-debugging; tools: skill, bash / ℹ️ not activated (expected) — / — ✅ 0.12
analyzing-dotnet-performance Detects compiled regex startup budget and regex chain allocations 5.0/5 → 3.0/5 ⏰ 🔴 5.0/5 → 5.0/5 ✅ analyzing-dotnet-performance; tools: skill, bash / ✅ analyzing-dotnet-performance; tools: skill, bash — / — ✅ 0.17
analyzing-dotnet-performance Detects CurrentCulture comparer and compiled regex budget in inflection rules 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ analyzing-dotnet-performance; tools: skill, grep / ✅ analyzing-dotnet-performance; tools: skill, grep — / — ✅ 0.17 [9]
analyzing-dotnet-performance Finds per-call Dictionary allocation not hoisted to static 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ analyzing-dotnet-performance; tools: skill, bash / ✅ analyzing-dotnet-performance; tools: skill, bash — / — ✅ 0.17
analyzing-dotnet-performance Catches compound allocations in recursive number converter with ToLower 5.0/5 → 4.0/5 🔴 5.0/5 → 5.0/5 ✅ analyzing-dotnet-performance; tools: skill, bash / ✅ analyzing-dotnet-performance; tools: skill, bash — / — ✅ 0.17 [10]
analyzing-dotnet-performance Finds StringComparison.Ordinal missing and FrozenDictionary opportunities 5.0/5 → 1.0/5 ⏰ 🔴 5.0/5 → 5.0/5 ✅ analyzing-dotnet-performance; tools: skill, bash, read_bash, write_bash, stop_bash / ✅ analyzing-dotnet-performance; tools: skill, bash — / — ✅ 0.17
analyzing-dotnet-performance Detects Aggregate+Replace chain and struct missing IEquatable 4.0/5 → 5.0/5 ⏰ 🟢 4.0/5 → 1.0/5 ⏰ 🔴 ✅ analyzing-dotnet-performance; tools: skill, bash / ✅ analyzing-dotnet-performance; tools: skill, bash, write_bash, stop_bash — / — ✅ 0.17
analyzing-dotnet-performance Finds branched Replace chain in format string manipulation 2.0/5 → 5.0/5 🟢 2.0/5 → 1.0/5 ⏰ 🔴 ✅ analyzing-dotnet-performance; tools: skill, bash / ✅ analyzing-dotnet-performance; tools: skill, bash, write_bash, stop_bash — / — ✅ 0.17
analyzing-dotnet-performance Catches LINQ on hot-path string processing and All(char.IsUpper) 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ analyzing-dotnet-performance; tools: skill, bash / ✅ analyzing-dotnet-performance; tools: skill, bash — / — ✅ 0.17
analyzing-dotnet-performance Detects LINQ pipeline in TimeSpan formatting and collection processing 5.0/5 → 5.0/5 5.0/5 → 4.0/5 🔴 ✅ analyzing-dotnet-performance; tools: skill, bash / ✅ analyzing-dotnet-performance; tools: skill, bash — / — ✅ 0.17 [11]
analyzing-dotnet-performance Flags Span inconsistencies and compound method chains in truncation library 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ analyzing-dotnet-performance; tools: skill, bash / ✅ analyzing-dotnet-performance; tools: skill, bash — / — ✅ 0.17
analyzing-dotnet-performance Identifies unsealed leaf classes and locale hierarchy patterns 3.0/5 → 5.0/5 🟢 3.0/5 → 1.0/5 ⏰ 🔴 ✅ analyzing-dotnet-performance; tools: skill, bash / ✅ analyzing-dotnet-performance; tools: skill, bash — / — ✅ 0.17
android-tombstone-symbolication Symbolicate .NET frames in an Android tombstone 4.0/5 → 3.0/5 🔴 4.0/5 → 3.0/5 🔴 ✅ android-tombstone-symbolication; tools: skill / ✅ android-tombstone-symbolication; tools: skill, read_bash — / — ✅ 0.18
android-tombstone-symbolication Recognize tombstone with no .NET frames 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ android-tombstone-symbolication; tools: skill, bash / ✅ android-tombstone-symbolication; tools: skill, bash — / — ✅ 0.18 [12]
android-tombstone-symbolication Symbolicate CoreCLR frames in an Android tombstone 1.0/5 ⏰ → 4.0/5 🟢 1.0/5 ⏰ → 4.0/5 🟢 ✅ android-tombstone-symbolication; tools: skill / ✅ android-tombstone-symbolication; tools: skill — / — ✅ 0.18
android-tombstone-symbolication Recognize NativeAOT tombstone with app binary and libSystem.Native.so 4.0/5 → 4.0/5 4.0/5 → 4.0/5 ✅ android-tombstone-symbolication; tools: skill, read_bash / ✅ android-tombstone-symbolication; tools: skill, stop_bash — / — ✅ 0.18
android-tombstone-symbolication Symbolicate multi-thread tombstone 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ android-tombstone-symbolication; tools: skill, stop_bash / ✅ android-tombstone-symbolication; tools: skill — / — ✅ 0.18
android-tombstone-symbolication Handle .NET frames with no BuildId metadata 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ android-tombstone-symbolication; tools: skill, bash / ✅ android-tombstone-symbolication; tools: skill, bash — / — ✅ 0.18
android-tombstone-symbolication Symbolicate tombstone with multiple .NET libraries and different BuildIds 4.0/5 → 4.0/5 4.0/5 → 4.0/5 ✅ android-tombstone-symbolication; tools: skill / ✅ android-tombstone-symbolication; tools: skill — / — ✅ 0.18
android-tombstone-symbolication Reject iOS crash log as wrong format 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ℹ️ not activated (expected) / ℹ️ not activated (expected) — / — ✅ 0.18
dump-collect Configure automatic crash dumps for CoreCLR app on Linux 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ dump-collect; tools: report_intent, skill, view / ✅ dump-collect; tools: report_intent, skill, view — / — 🟡 0.27 [13]
dump-collect Set up NativeAOT crash dumps with createdump in Kubernetes 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ dump-collect; tools: skill / ✅ dump-collect; tools: skill — / — 🟡 0.27
dump-collect Recover crash dump from macOS NativeAOT without createdump 3.0/5 → 5.0/5 🟢 3.0/5 → 4.0/5 🟢 ✅ dump-collect; tools: report_intent, skill, view / ⚠️ NOT ACTIVATED — / — 🟡 0.27
dump-collect Configure CoreCLR dump collection in Alpine Docker as non-root 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ dump-collect; tools: skill, report_intent, view / ✅ dump-collect; tools: report_intent, skill, view — / — 🟡 0.27
dump-collect Advisory: macOS NativeAOT crash dump recovery steps 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ dump-collect; tools: skill / ✅ dump-collect; tools: skill — / — 🟡 0.27
dump-collect Advisory: CoreCLR Alpine Docker non-root configuration 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ dump-collect; tools: skill, report_intent, view / ✅ dump-collect; tools: skill, report_intent, view — / — 🟡 0.27
dump-collect Advisory: NativeAOT Kubernetes dump collection setup 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ dump-collect; tools: skill, report_intent, view / ✅ dump-collect; tools: skill, report_intent, view — / — 🟡 0.27
dump-collect Detect runtime and configure crash dumps for unknown .NET app on Linux 4.0/5 → 4.0/5 4.0/5 → 5.0/5 🟢 ✅ dump-collect; tools: skill / ✅ dump-collect; tools: skill — / — 🟡 0.27
dump-collect Decline dump analysis request 2.0/5 → 4.0/5 🟢 2.0/5 → 5.0/5 🟢 ℹ️ not activated (expected) / ℹ️ not activated (expected) — / — 🟡 0.27
optimizing-ef-core-queries Optimize bulk operations with EF Core 7+ ExecuteUpdate and ExecuteDelete 4.0/5 → 4.0/5 4.0/5 → 4.0/5 ✅ optimizing-ef-core-queries; tools: report_intent, skill / ✅ optimizing-ef-core-queries; tools: skill — / — 🟡 0.22 [14]
build-parallelism Analyze build parallelism bottlenecks 4.0/5 → 4.0/5 4.0/5 → 4.0/5 ✅ build-parallelism; tools: skill, task / ✅ build-parallelism; tools: skill explore / — ✅ 0.14
including-generated-files Diagnose generated file inclusion failure 3.0/5 → 4.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ including-generated-files; tools: skill / ✅ including-generated-files; tools: skill — / — 🟡 0.24
msbuild-antipatterns Review MSBuild files for anti-patterns and style issues 5.0/5 → 5.0/5 5.0/5 → 4.0/5 ⏰ 🔴 ✅ msbuild-antipatterns; tools: skill / ✅ msbuild-antipatterns; tools: skill — / — ✅ 0.06
build-perf-baseline Establish build performance baseline and recommend optimizations 2.0/5 ⏰ → 5.0/5 🟢 2.0/5 ⏰ → 5.0/5 🟢 ✅ build-perf-baseline; tools: skill / ✅ build-perf-baseline; build-perf-diagnostics; tools: skill — / — 🟡 0.25
msbuild-modernization Modernize legacy project to SDK-style 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ msbuild-modernization; tools: skill, edit, bash / ✅ msbuild-modernization; tools: skill, edit, bash — / — ✅ 0.04
directory-build-organization Organize build infrastructure for a multi-project repo 3.0/5 → 5.0/5 🟢 3.0/5 → 1.0/5 ⏰ 🔴 ✅ directory-build-organization; tools: skill, task, bash / ⚠️ NOT ACTIVATED explore / — ✅ 0.13
check-bin-obj-clash Diagnose bin/obj output path clashes 3.0/5 → 1.0/5 ⏰ 🔴 3.0/5 → 5.0/5 🟢 ✅ check-bin-obj-clash; tools: skill / ✅ check-bin-obj-clash; tools: skill — / — ✅ 0.14
incremental-build Analyze incremental build issues 3.0/5 → 5.0/5 🟢 3.0/5 → 4.0/5 🟢 ✅ incremental-build; tools: skill, bash / ✅ incremental-build; tools: skill, bash — / — ✅ 0.13
eval-performance Analyze MSBuild evaluation performance issues 1.0/5 ⏰ → 4.0/5 🟢 1.0/5 ⏰ → 4.0/5 🟢 ✅ eval-performance; tools: skill, bash / ✅ eval-performance; tools: skill — / — ✅ 0.11
resolve-project-references Explain misleading ResolveProjectReferences time 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ resolve-project-references; tools: skill / ✅ resolve-project-references; tools: skill — / — ✅ 0.11
msbuild-server Recommend MSBuild Server for slow CLI incremental builds 3.0/5 → 4.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ msbuild-server; tools: skill / ✅ msbuild-server; tools: skill — / — 🟡 0.29
build-perf-diagnostics Diagnose slow build for a small project 3.0/5 → 1.0/5 ⏰ 🔴 3.0/5 → 5.0/5 🟢 ✅ build-perf-diagnostics; tools: bash, skill / ✅ binlog-generation; build-perf-diagnostics; tools: skill, bash — / — 🟡 0.23
binlog-generation Build project with /bl flag 1.0/5 ⏰ → 5.0/5 🟢 1.0/5 ⏰ → 5.0/5 🟢 ✅ binlog-generation; tools: skill, bash / ✅ binlog-generation; tools: skill, bash — / — 🟡 0.42
binlog-generation Build with /bl in PowerShell 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ binlog-generation; tools: skill / ✅ binlog-generation; tools: skill — / — 🟡 0.42
binlog-generation Build multiple configurations with unique binlogs 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ binlog-generation; tools: skill / ✅ binlog-generation; tools: skill — / — 🟡 0.42
binlog-failure-analysis Diagnose build failures from binlog only (no source files) 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ binlog-failure-analysis; tools: skill / ✅ binlog-failure-analysis; tools: skill — / — ✅ 0.04
dotnet-maui-doctor Plan macOS MAUI setup with Xcode 1.0/5 ⏰ → 1.0/5 ⏰ 1.0/5 ⏰ → 1.0/5 ⏰ ✅ dotnet-maui-doctor; tools: report_intent, skill / ✅ dotnet-maui-doctor; tools: report_intent, skill — / — 🟡 0.24 [15]
dotnet-maui-doctor Plan Linux MAUI environment for Android 3.0/5 → 1.0/5 ⏰ 🔴 3.0/5 → 1.0/5 ⏰ 🔴 ✅ dotnet-maui-doctor; tools: skill / ⚠️ NOT ACTIVATED — / — 🟡 0.24
dotnet-maui-doctor Guardrail against workload update and repair 1.0/5 ⏰ → 1.0/5 ⏰ 1.0/5 ⏰ → 1.0/5 ⏰ ⚠️ NOT ACTIVATED / ⚠️ NOT ACTIVATED — / — 🟡 0.24 [16]
dotnet-maui-doctor Diagnose non-Microsoft JDK causing build failure 1.0/5 ⏰ → 5.0/5 🟢 1.0/5 ⏰ → 5.0/5 🟢 ✅ dotnet-maui-doctor; tools: skill / ✅ dotnet-maui-doctor; tools: skill — / — 🟡 0.24
dotnet-maui-doctor Plan complete MAUI setup on Windows 1.0/5 ⏰ → 3.0/5 ⏰ 🟢 1.0/5 ⏰ → 5.0/5 🟢 ✅ dotnet-maui-doctor; tools: skill / ✅ dotnet-maui-doctor; tools: skill — / — 🟡 0.24
dotnet-maui-doctor Prevent incorrect JAVA_HOME configuration 1.0/5 ⏰ → 5.0/5 🟢 1.0/5 ⏰ → 4.0/5 🟢 ✅ dotnet-maui-doctor; tools: skill / ✅ dotnet-maui-doctor; tools: skill — / — 🟡 0.24
dotnet-maui-doctor Determine required Android SDK packages for specific .NET version 4.0/5 → 5.0/5 🟢 4.0/5 → 1.0/5 ⏰ 🔴 ✅ dotnet-maui-doctor; tools: skill, view / ⚠️ NOT ACTIVATED — / — 🟡 0.24
dotnet-maui-doctor Fix stale MAUI workloads after SDK update 2.0/5 → 5.0/5 🟢 2.0/5 → 1.0/5 ⏰ 🔴 ✅ dotnet-maui-doctor; tools: skill / ✅ dotnet-maui-doctor; tools: skill — / — 🟡 0.24
mcp-csharp-test Write unit and integration tests for an MCP server 2.0/5 → 5.0/5 🟢 2.0/5 → 1.0/5 ⏰ 🔴 ✅ mcp-csharp-test; tools: skill, report_intent, view / ⚠️ NOT ACTIVATED — / — ✅ 0.18
mcp-csharp-test Test an HTTP MCP server with WebApplicationFactory 5.0/5 → 4.0/5 🔴 5.0/5 → 1.0/5 ⏰ 🔴 ✅ mcp-csharp-test; tools: report_intent, skill, view / ⚠️ NOT ACTIVATED — / — ✅ 0.18
mcp-csharp-test Create evaluations for an MCP server 2.0/5 → 2.0/5 2.0/5 → 1.0/5 ⏰ 🔴 ⚠️ NOT ACTIVATED / ✅ mcp-csharp-test; tools: skill explore / — ✅ 0.18
mcp-csharp-debug Debug an MCP server with MCP Inspector 4.0/5 → 5.0/5 🟢 4.0/5 → 4.0/5 ✅ mcp-csharp-debug; tools: report_intent, skill / ✅ mcp-csharp-debug; tools: report_intent, skill — / — ✅ 0.11 [17]
mcp-csharp-debug Configure VS Code to use an MCP server 4.0/5 → 1.0/5 ⏰ 🔴 4.0/5 → 1.0/5 ⏰ 🔴 ⚠️ NOT ACTIVATED / ⚠️ NOT ACTIVATED — / — ✅ 0.11
mcp-csharp-debug Debug a failing MCP server tool 4.0/5 → 4.0/5 4.0/5 → 1.0/5 ⏰ 🔴 ✅ mcp-csharp-debug; tools: report_intent, skill / ⚠️ NOT ACTIVATED — / — ✅ 0.11
technology-selection ML.NET classification on tabular data 3.0/5 → 5.0/5 🟢 3.0/5 → 4.0/5 ⏰ 🟢 ✅ technology-selection; tools: skill / ✅ technology-selection; tools: skill — / — 🟡 0.33
technology-selection LLM integration with MEAI abstraction 1.0/5 → 4.0/5 🟢 1.0/5 → 1.0/5 ⏰ ✅ technology-selection; tools: skill / ⚠️ NOT ACTIVATED — / — 🟡 0.33 [18]
technology-selection Reject LLM for tabular classification 3.0/5 → 5.0/5 🟢 3.0/5 → 3.0/5 ⏰ ✅ technology-selection; tools: skill, task, create / ✅ technology-selection; tools: skill, task, create, read_bash, stop_bash general-purpose / general-purpose 🟡 0.33 [19]
technology-selection Agentic workflow with guardrails 2.0/5 ⏰ → 3.0/5 🟢 2.0/5 ⏰ → 1.0/5 ⏰ 🔴 ✅ technology-selection; tools: skill / ✅ technology-selection; tools: skill explore / task 🟡 0.33
technology-selection Natural-language scenario decomposition — RAG chatbot 4.0/5 → 4.0/5 4.0/5 → 4.0/5 ✅ technology-selection; tools: skill / ✅ technology-selection; tools: skill — / — 🟡 0.33
technology-selection RAG pipeline with vector search 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ technology-selection; tools: skill / ✅ technology-selection; tools: skill — / — 🟡 0.33
mcp-csharp-create Implement MCP tools with proper attributes and DI 4.0/5 → 5.0/5 🟢 4.0/5 → 1.0/5 ⏰ 🔴 ✅ mcp-csharp-create; tools: skill / ✅ mcp-csharp-create; tools: skill — / — ✅ 0.09
mcp-csharp-create Create an HTTP MCP server with tools and resources 3.0/5 ⏰ → 5.0/5 🟢 3.0/5 ⏰ → 5.0/5 🟢 ✅ mcp-csharp-create; tools: skill / ✅ mcp-csharp-create; tools: skill — / — ✅ 0.09
mcp-csharp-create Create an MCP server with tools, prompts, and proper logging 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ mcp-csharp-create; tools: skill / ✅ mcp-csharp-create; tools: skill — / — ✅ 0.09
mcp-csharp-publish Publish an MCP server as a NuGet tool package 3.0/5 → 4.0/5 🟢 3.0/5 → 1.0/5 ⏰ 🔴 ✅ mcp-csharp-publish; tools: skill, glob / ✅ mcp-csharp-publish; tools: skill — / — ✅ 0.16
mcp-csharp-publish Deploy an HTTP MCP server to Azure Container Apps 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ mcp-csharp-publish; tools: skill, report_intent, view / ✅ mcp-csharp-publish; tools: skill, report_intent, view — / — ✅ 0.16
mcp-csharp-publish Publish to the MCP Registry 4.0/5 → 5.0/5 🟢 4.0/5 → 4.0/5 ✅ mcp-csharp-publish; tools: skill, view / ✅ mcp-csharp-publish; tools: skill, view — / — ✅ 0.16
convert-to-cpm Decline CPM conversion for packages.config project 1.0/5 → 1.0/5 1.0/5 → 1.0/5 ℹ️ not activated (expected) / ℹ️ not activated (expected) — / — 🟡 0.29
convert-to-cpm Recommend CPM when updating packages with version conflicts 2.0/5 → 2.0/5 2.0/5 → 3.0/5 🟢 ✅ convert-to-cpm; tools: skill, bash, create / ✅ convert-to-cpm; tools: skill, bash, create — / — 🟡 0.29
convert-to-cpm Recommend CPM when updating packages in a complex repository 1.0/5 → 2.0/5 🟢 1.0/5 → 2.0/5 🟢 ✅ convert-to-cpm; tools: skill / ✅ convert-to-cpm; tools: skill, read_agent — / explore 🟡 0.29
convert-to-cpm Convert single project to CPM 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ convert-to-cpm; tools: skill, glob, bash / ✅ convert-to-cpm; tools: skill, glob, bash — / — 🟡 0.29
convert-to-cpm Convert multi-project solution to CPM 3.0/5 → 3.0/5 3.0/5 → 5.0/5 🟢 ✅ convert-to-cpm; tools: skill, bash / ✅ convert-to-cpm; tools: skill, bash — / — 🟡 0.29
convert-to-cpm Convert solution with MSBuild property versions to CPM 3.0/5 → 4.0/5 🟢 3.0/5 → 3.0/5 ✅ convert-to-cpm; tools: skill, glob, bash, grep / ✅ convert-to-cpm; tools: skill, glob, bash, grep — / — 🟡 0.29
convert-to-cpm Convert solution with version conflicts to CPM 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ convert-to-cpm; tools: skill, bash / ✅ convert-to-cpm; tools: skill, bash — / — 🟡 0.29
convert-to-cpm Convert complex repository with multiple CPM challenges 3.0/5 → 3.0/5 ⏰ 3.0/5 → 4.0/5 🟢 ✅ convert-to-cpm; tools: skill / ✅ convert-to-cpm; tools: skill explore / explore 🟡 0.29 [20]
migrate-dotnet9-to-dotnet10 Console app with System.Linq.Async, SIGTERM, and BufferedStream 5.0/5 → 4.0/5 🔴 5.0/5 → 5.0/5 ✅ migrate-dotnet9-to-dotnet10; tools: skill, view / ✅ migrate-dotnet9-to-dotnet10; tools: skill, view — / — [21]
migrate-dotnet9-to-dotnet10 Expression tree code broken by C# 14 span overload resolution 5.0/5 → 5.0/5 5.0/5 → 1.0/5 ⏰ 🔴 ✅ migrate-dotnet9-to-dotnet10; tools: skill, view / ⚠️ NOT ACTIVATED — / —
migrate-dotnet9-to-dotnet10 ASP.NET Core app with WebHostBuilder, OpenAPI, and forwarded headers 5.0/5 → 1.0/5 ⏰ 🔴 5.0/5 → 1.0/5 ⏰ 🔴 ✅ migrate-dotnet9-to-dotnet10; tools: skill / ✅ migrate-dotnet9-to-dotnet10; tools: skill — / —
migrate-dotnet9-to-dotnet10 ASP.NET Core app with OpenAPI transformers using Microsoft.OpenApi v1 APIs 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ migrate-dotnet9-to-dotnet10; tools: skill, view / ✅ migrate-dotnet9-to-dotnet10; tools: skill, view — / —
migrate-dotnet9-to-dotnet10 EF Core app with Azure SQL JSON columns and parameterized collections 5.0/5 → 5.0/5 5.0/5 → 1.0/5 ⏰ 🔴 ✅ migrate-dotnet9-to-dotnet10; tools: skill, view / ✅ migrate-dotnet9-to-dotnet10; tools: skill — / —
migrate-dotnet9-to-dotnet10 EF Core app with dynamic ExecuteUpdate and complex types 5.0/5 → 5.0/5 5.0/5 → 1.0/5 ⏰ 🔴 ✅ migrate-dotnet9-to-dotnet10; tools: skill, view / ⚠️ NOT ACTIVATED — / —
migrate-dotnet9-to-dotnet10 SQLite app with DateTimeOffset timezone handling 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ migrate-dotnet9-to-dotnet10; tools: skill, view / ✅ migrate-dotnet9-to-dotnet10; tools: skill, view — / —
migrate-dotnet9-to-dotnet10 Worker service with config null array binding and ProviderAlias assembly change 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ migrate-dotnet9-to-dotnet10; tools: skill / ✅ migrate-dotnet9-to-dotnet10; tools: skill — / —
migrate-dotnet9-to-dotnet10 Cryptography app with OpenSSL, X.509, and Rfc2898DeriveBytes 1.0/5 ⏰ → 4.0/5 🟢 1.0/5 ⏰ → 5.0/5 🟢 ✅ migrate-dotnet9-to-dotnet10; tools: skill / ✅ migrate-dotnet9-to-dotnet10; tools: skill — / —
migrate-dotnet9-to-dotnet10 SDK and NuGet obscure tooling changes 1.0/5 ⏰ → 4.0/5 🟢 1.0/5 ⏰ → 5.0/5 🟢 ✅ migrate-dotnet9-to-dotnet10; tools: skill / ✅ migrate-dotnet9-to-dotnet10; tools: skill — / —
migrate-dotnet9-to-dotnet10 JSON polymorphism with conflicting property names and XmlSerializer 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ migrate-dotnet9-to-dotnet10; tools: skill, view / ✅ migrate-dotnet9-to-dotnet10; tools: skill, view — / — [22]
migrate-dotnet9-to-dotnet10 WinForms and WPF desktop app with System.Drawing and DynamicResource 5.0/5 → 5.0/5 5.0/5 → 4.0/5 🔴 ✅ migrate-dotnet9-to-dotnet10; tools: skill / ✅ migrate-dotnet9-to-dotnet10; tools: skill — / —
migrate-dotnet9-to-dotnet10 Containerized single-file app with P/Invoke and IDispatchEx 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ migrate-dotnet9-to-dotnet10; tools: skill, view / ✅ migrate-dotnet9-to-dotnet10; tools: skill, view — / — [23]
migrate-dotnet9-to-dotnet10 App using SslStream properties and SystemEvents 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ migrate-dotnet9-to-dotnet10; tools: skill / ✅ migrate-dotnet9-to-dotnet10; tools: skill — / — [24]
migrate-dotnet9-to-dotnet10 Library with NuGet auditing, transitive deps, and InlineArray 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ migrate-dotnet9-to-dotnet10; tools: skill / ✅ migrate-dotnet9-to-dotnet10; tools: skill — / —
migrate-dotnet9-to-dotnet10 C# 14 compiler breaking changes — field keyword, extension keyword, disposal 4.0/5 → 5.0/5 🟢 4.0/5 → 1.0/5 ⏰ 🔴 ✅ migrate-dotnet9-to-dotnet10; tools: report_intent, skill, view / ✅ migrate-dotnet9-to-dotnet10; tools: skill, report_intent, view — / —
migrate-dotnet9-to-dotnet10 Blazor WASM app with generic math shift masking and tar operations 5.0/5 → 4.0/5 🔴 5.0/5 → 4.0/5 🔴 ✅ migrate-dotnet9-to-dotnet10; tools: skill, view / ✅ migrate-dotnet9-to-dotnet10; tools: skill, view — / —
migrate-dotnet8-to-dotnet9 App with empty environment variables, ZIP encoding, and keyed DI services 3.0/5 → 4.0/5 🟢 3.0/5 → 1.0/5 ⏰ 🔴 ✅ migrate-dotnet8-to-dotnet9; tools: skill, bash / ✅ migrate-dotnet8-to-dotnet9; tools: skill — / — ✅ 0.04
migrate-dotnet8-to-dotnet9 C# 13 compiler breaking changes — InlineArray on record, iterator safe context, collection expressions 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ migrate-dotnet8-to-dotnet9; tools: skill, report_intent, view / ✅ migrate-dotnet8-to-dotnet9; tools: skill, report_intent, view — / — ✅ 0.04
migrate-dotnet8-to-dotnet9 ASP.NET Core app with DI validation, forwarded headers, and HttpClientFactory casting 2.0/5 → 5.0/5 🟢 2.0/5 → 1.0/5 ⏰ 🔴 ✅ migrate-dotnet8-to-dotnet9; tools: skill, create / ✅ migrate-dotnet8-to-dotnet9; tools: skill — / — ✅ 0.04
migrate-dotnet8-to-dotnet9 EF Core app with migration patterns and Cosmos DB discriminator 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ migrate-dotnet8-to-dotnet9; tools: skill / ✅ migrate-dotnet8-to-dotnet9; tools: skill — / — ✅ 0.04
migrate-dotnet8-to-dotnet9 EF Core Cosmos DB app with existing documents and composite id format 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ migrate-dotnet8-to-dotnet9; tools: skill / ✅ migrate-dotnet8-to-dotnet9; tools: skill — / — ✅ 0.04
migrate-dotnet8-to-dotnet9 App with JsonDocument null deserialization and BinaryFormatter fallback 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ migrate-dotnet8-to-dotnet9; tools: skill / ✅ migrate-dotnet8-to-dotnet9; tools: skill — / — ✅ 0.04
migrate-dotnet8-to-dotnet9 CI pipeline with Terminal Logger parsing and version constraints 3.0/5 → 2.0/5 🔴 3.0/5 → 5.0/5 🟢 ℹ️ not activated (expected) / ✅ migrate-dotnet8-to-dotnet9; tools: skill — / — ✅ 0.04
migrate-dotnet8-to-dotnet9 WinForms app with custom UserControls and PictureBox URL loading 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ migrate-dotnet8-to-dotnet9; tools: skill, bash, create / ✅ migrate-dotnet8-to-dotnet9; tools: skill, bash — / — ✅ 0.04
migrate-dotnet8-to-dotnet9 Containerized app with zlib dependency and runtime configuration 5.0/5 → 5.0/5 5.0/5 → 4.0/5 🔴 ✅ migrate-dotnet8-to-dotnet9; tools: skill, bash / ✅ migrate-dotnet8-to-dotnet9; tools: skill — / — ✅ 0.04
migrate-dotnet8-to-dotnet9 EF Core Cosmos DB app with discriminator and sync I/O 3.0/5 → 4.0/5 🟢 3.0/5 → 4.0/5 🟢 ✅ migrate-dotnet8-to-dotnet9; tools: skill / ✅ migrate-dotnet8-to-dotnet9; tools: skill — / — ✅ 0.04
migrate-dotnet8-to-dotnet9 Library with String.Trim span overload, keyed services, and InlineArray 5.0/5 → 5.0/5 5.0/5 → 3.0/5 ⏰ 🔴 ✅ migrate-dotnet8-to-dotnet9; tools: skill, bash / ✅ migrate-dotnet8-to-dotnet9; tools: skill, grep, bash — / — ✅ 0.04
migrate-dotnet8-to-dotnet9 Containerized app with env var precedence reversal and zlib removal 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ migrate-dotnet8-to-dotnet9; tools: skill / ✅ migrate-dotnet8-to-dotnet9; tools: skill — / — ✅ 0.04 [25]
thread-abort-migration Worker thread with abort-based cancellation 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ thread-abort-migration; tools: report_intent, skill / ✅ thread-abort-migration; tools: skill — / — ✅ 0.10 [26]
thread-abort-migration Timeout enforcement via Thread.Abort 4.0/5 → 3.0/5 🔴 4.0/5 → 3.0/5 🔴 ✅ thread-abort-migration; tools: skill / ✅ thread-abort-migration; tools: skill — / — ✅ 0.10
thread-abort-migration Blocking WaitHandle with Thread.Interrupt 3.0/5 → 3.0/5 3.0/5 → 3.0/5 ✅ thread-abort-migration; tools: skill, bash / ✅ thread-abort-migration; tools: skill — / — ✅ 0.10 [27]
thread-abort-migration ASP.NET Response.End and Response.Redirect with Thread.Abort 4.0/5 → 4.0/5 4.0/5 → 4.0/5 ✅ thread-abort-migration; tools: skill, report_intent, create / ✅ thread-abort-migration; tools: skill — / — ✅ 0.10 [28]
thread-abort-migration Thread.Join and Thread.Sleep only — should not migrate 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ⚠️ NOT ACTIVATED / ✅ thread-abort-migration; tools: skill — / — ✅ 0.10
migrate-nullable-references Enable NRT in a small library with mixed nullability 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ migrate-nullable-references; tools: skill / ✅ migrate-nullable-references; tools: skill — / — ✅ 0.13 [29]
migrate-nullable-references File-by-file migration: only modify the targeted file 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ⚠️ NOT ACTIVATED / ⚠️ NOT ACTIVATED — / — ✅ 0.13
migrate-nullable-references Enable NRT in ASP.NET Core Web API with EF Core 4.0/5 → 3.0/5 🔴 4.0/5 → 3.0/5 🔴 ⚠️ NOT ACTIVATED / ✅ migrate-nullable-references; tools: skill — / — ✅ 0.13
dotnet-aot-compat Make Azure.ResourceManager AOT-compatible 1.0/5 ⏰ → 2.0/5 ⏰ 🟢 1.0/5 ⏰ → 2.0/5 ⏰ 🟢 ✅ dotnet-aot-compat; tools: skill, create, read_agent / ✅ dotnet-aot-compat; tools: skill, create, read_agent explore, task / explore, task, general-purpose ✅ 0.13
migrate-dotnet10-to-dotnet11 Console app with compression and TAR operations 1.0/5 ⏰ → 5.0/5 🟢 1.0/5 ⏰ → 4.0/5 🟢 ✅ migrate-dotnet10-to-dotnet11; tools: skill / ✅ migrate-dotnet10-to-dotnet11; tools: skill — / — ✅ 0.04
migrate-dotnet10-to-dotnet11 C# 15 compiler breaking changes — Span safe-context, nameof, with() 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ migrate-dotnet10-to-dotnet11; tools: report_intent, skill, view / ✅ migrate-dotnet10-to-dotnet11; tools: report_intent, skill, view — / — ✅ 0.04
migrate-dotnet10-to-dotnet11 EF Core app with Cosmos DB provider using sync APIs 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ migrate-dotnet10-to-dotnet11; tools: skill / ✅ migrate-dotnet10-to-dotnet11; tools: skill — / — ✅ 0.04
migrate-dotnet10-to-dotnet11 Deployment to older hardware with minimum requirement changes 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ migrate-dotnet10-to-dotnet11; tools: report_intent, skill, view / ✅ migrate-dotnet10-to-dotnet11; tools: skill, report_intent, view — / — ✅ 0.04
migrate-dotnet10-to-dotnet11 Cryptography app using DSA on macOS 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ migrate-dotnet10-to-dotnet11; tools: skill, report_intent, view / ✅ migrate-dotnet10-to-dotnet11; tools: skill, report_intent, view — / — ✅ 0.04
migrate-dotnet10-to-dotnet11 Basic TFM update with Docker and global.json 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ migrate-dotnet10-to-dotnet11; tools: skill / ✅ migrate-dotnet10-to-dotnet11; tools: skill — / — ✅ 0.04
migrate-dotnet10-to-dotnet11 C# 15 dynamic operator and ref readonly delegate issues 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ migrate-dotnet10-to-dotnet11; tools: report_intent, skill, view / ✅ migrate-dotnet10-to-dotnet11; tools: report_intent, skill, view — / — ✅ 0.04
exp-test-tagging Tag an untagged MSTest test suite 4.0/5 → 5.0/5 🟢 4.0/5 → 4.0/5 ✅ exp-test-tagging; tools: skill / ✅ exp-test-tagging; tools: skill — / — 🟡 0.29
exp-test-tagging Tag an untagged xUnit test suite 3.0/5 → 4.0/5 🟢 3.0/5 → 3.0/5 ✅ exp-test-tagging; tools: skill, glob / ✅ exp-test-tagging; tools: skill, glob — / — 🟡 0.29
exp-test-tagging Tag an untagged NUnit test suite 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ exp-test-tagging; tools: skill / ✅ exp-test-tagging; tools: skill — / — 🟡 0.29
exp-test-tagging Audit test distribution without modifying files 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ exp-test-tagging; tools: skill / ✅ exp-test-tagging; tools: skill — / — 🟡 0.29
exp-test-tagging Decline request to write new tests 4.0/5 → 4.0/5 4.0/5 → 4.0/5 ℹ️ not activated (expected) / ℹ️ not activated (expected) — / — 🟡 0.29 [30]
migrate-mstest-v1v2-to-v3 Migrate MSTest v1 project with assembly reference 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ migrate-mstest-v1v2-to-v3; tools: skill, edit, bash / ✅ migrate-mstest-v1v2-to-v3; tools: skill, edit, bash — / — ✅ 0.04
migrate-mstest-v1v2-to-v3 Migrate MSTest v2 NuGet project to v3 3.0/5 → 5.0/5 🟢 3.0/5 → 3.0/5 ✅ migrate-mstest-v1v2-to-v3; tools: skill / ✅ migrate-mstest-v1v2-to-v3; tools: skill — / — ✅ 0.04 [31]
migrate-mstest-v1v2-to-v3 Fix Assert.AreEqual object overload errors after v3 upgrade 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ migrate-mstest-v1v2-to-v3; tools: skill / ✅ migrate-mstest-v1v2-to-v3; tools: skill — / — ✅ 0.04
migrate-mstest-v1v2-to-v3 Migrate from .testsettings to .runsettings 4.0/5 → 4.0/5 4.0/5 → 4.0/5 ✅ migrate-mstest-v1v2-to-v3; tools: skill, bash / ✅ migrate-mstest-v1v2-to-v3; tools: skill, bash — / — ✅ 0.04 [32]
migrate-mstest-v1v2-to-v3 Fix DataRow type mismatch errors after v3 upgrade 3.0/5 → 3.0/5 3.0/5 → 2.0/5 🔴 ✅ migrate-mstest-v1v2-to-v3; tools: skill / ✅ migrate-mstest-v1v2-to-v3; tools: skill — / — ✅ 0.04
migrate-mstest-v1v2-to-v3 Migrate to MSTest.Sdk project style 3.0/5 → 5.0/5 🟢 3.0/5 → 4.0/5 🟢 ✅ migrate-mstest-v1v2-to-v3; tools: skill / ✅ migrate-mstest-v1v2-to-v3; tools: skill — / — ✅ 0.04
migrate-mstest-v1v2-to-v3 Handle dropped target framework during v3 migration 4.0/5 → 4.0/5 4.0/5 → 5.0/5 🟢 ⚠️ NOT ACTIVATED / ✅ migrate-mstest-v1v2-to-v3; tools: skill — / — ✅ 0.04 [33]
migrate-mstest-v1v2-to-v3 Migrate complex MSTest v2 project with testsettings, DataRow issues, and dropped TFM 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ migrate-mstest-v1v2-to-v3; tools: skill / ✅ migrate-mstest-v1v2-to-v3; tools: skill — / — ✅ 0.04 [34]
migrate-mstest-v1v2-to-v3 Correctly identify MSTest v1 vs v2 and recommend different migration paths 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ migrate-mstest-v1v2-to-v3; tools: skill, task, glob / ✅ migrate-mstest-v1v2-to-v3; tools: skill explore / — ✅ 0.04 [35]
crap-score Calculate CRAP score for a single method with partial coverage 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ crap-score; tools: skill, bash / ✅ crap-score; tools: skill, glob — / — ✅ 0.09 [36]
crap-score Identify riskiest methods across a file 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ crap-score; tools: skill / ✅ crap-score; tools: skill, glob — / — ✅ 0.09
crap-score Generate coverage then compute CRAP score 4.0/5 → 4.0/5 4.0/5 → 4.0/5 ✅ crap-score; tools: skill / ✅ crap-score; tools: skill — / — ✅ 0.09
writing-mstest-tests Write unit tests for a service class 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ writing-mstest-tests; tools: skill / ✅ writing-mstest-tests; tools: skill, task, glob — / explore 🟡 0.26 [37]
writing-mstest-tests Write data-driven tests for a calculator 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ writing-mstest-tests; tools: skill / ✅ writing-mstest-tests; tools: skill, task, glob — / explore 🟡 0.26
writing-mstest-tests Write async tests with cancellation 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ writing-mstest-tests; tools: skill / ✅ writing-mstest-tests; tools: skill — / — 🟡 0.26
writing-mstest-tests Fix swapped Assert.AreEqual arguments 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ writing-mstest-tests; tools: report_intent, skill / ✅ writing-mstest-tests; tools: skill — / — 🟡 0.26 [38]
writing-mstest-tests Modernize legacy test patterns 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ writing-mstest-tests; tools: skill / ✅ writing-mstest-tests; tools: skill — / — 🟡 0.26
writing-mstest-tests Replace ExpectedException with Assert.Throws 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ writing-mstest-tests; tools: skill / ✅ writing-mstest-tests; tools: skill — / — 🟡 0.26
writing-mstest-tests Use proper collection assertions 3.0/5 → 3.0/5 3.0/5 → 3.0/5 ✅ writing-mstest-tests; tools: report_intent, skill / ✅ writing-mstest-tests; tools: skill — / — 🟡 0.26
writing-mstest-tests Use proper type assertions instead of casts 3.0/5 → 3.0/5 3.0/5 → 3.0/5 ⚠️ NOT ACTIVATED / ✅ writing-mstest-tests; tools: skill — / — 🟡 0.26
writing-mstest-tests Set up test lifecycle correctly 3.0/5 → 4.0/5 🟢 3.0/5 → 4.0/5 🟢 ✅ writing-mstest-tests; tools: skill / ✅ writing-mstest-tests; tools: skill — / — 🟡 0.26
writing-mstest-tests Use DynamicData with ValueTuples over object arrays 1.0/5 → 3.0/5 🟢 1.0/5 → 3.0/5 🟢 ✅ writing-mstest-tests; tools: skill / ✅ writing-mstest-tests; tools: skill — / — 🟡 0.26
migrate-vstest-to-mtp Migrate MSTest project from VSTest to Microsoft.Testing.Platform 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ migrate-vstest-to-mtp; tools: skill, report_intent, view / ✅ migrate-vstest-to-mtp; tools: report_intent, skill, view — / — ✅ 0.07 [39]
migrate-vstest-to-mtp Migrate NUnit project from VSTest to Microsoft.Testing.Platform 1.0/5 → 5.0/5 🟢 1.0/5 → 5.0/5 🟢 ✅ migrate-vstest-to-mtp; tools: skill / ✅ migrate-vstest-to-mtp; tools: skill — / — ✅ 0.07
migrate-vstest-to-mtp Migrate xUnit.net v2 project from VSTest to Microsoft.Testing.Platform 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ migrate-vstest-to-mtp; tools: skill, report_intent, view, bash / ✅ migrate-vstest-to-mtp; tools: skill, report_intent, view, bash — / — ✅ 0.07
migrate-vstest-to-mtp Update Azure DevOps pipeline from VSTest task to MTP 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ migrate-vstest-to-mtp; tools: skill / ✅ migrate-vstest-to-mtp; tools: skill — / — ✅ 0.07
migrate-vstest-to-mtp Migrate MSTest.Sdk project that explicitly uses VSTest 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ migrate-vstest-to-mtp; tools: skill / ✅ migrate-vstest-to-mtp; tools: skill — / — ✅ 0.07
migrate-vstest-to-mtp Translate dotnet test VSTest arguments to MTP equivalents 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ migrate-vstest-to-mtp; tools: report_intent, skill / ✅ migrate-vstest-to-mtp; tools: skill — / — ✅ 0.07
migrate-vstest-to-mtp Handle exit code 8 when migrating from VSTest to MTP 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ migrate-vstest-to-mtp; tools: skill / ✅ migrate-vstest-to-mtp; tools: skill — / — ✅ 0.07
migrate-vstest-to-mtp Configure dotnet test MTP mode on .NET 10 SDK 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ migrate-vstest-to-mtp; tools: skill / ✅ migrate-vstest-to-mtp; tools: skill — / — ✅ 0.07
migrate-vstest-to-mtp Migrate xUnit.net VSTest filter syntax to MTP 1.0/5 → 4.0/5 🟢 1.0/5 → 4.0/5 🟢 ✅ migrate-vstest-to-mtp; tools: skill / ✅ migrate-vstest-to-mtp; tools: skill — / — ✅ 0.07
migrate-vstest-to-mtp Full VSTest to MTP migration plan for MSTest solution 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ migrate-vstest-to-mtp; tools: skill / ✅ migrate-vstest-to-mtp; tools: skill — / — ✅ 0.07
run-tests Run tests in a VSTest MSTest project 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ run-tests; tools: skill / ✅ run-tests; tools: skill — / — 🟡 0.28
run-tests Run tests with trx reporting on MTP project (SDK 9) 3.0/5 → 4.0/5 🟢 3.0/5 → 4.0/5 🟢 ✅ run-tests; tools: skill / ✅ run-tests; tools: skill — / — 🟡 0.28
run-tests Run tests with blame-hang on MTP project (SDK 10) 2.0/5 → 2.0/5 2.0/5 → 2.0/5 ✅ run-tests; tools: skill, create / ⚠️ NOT ACTIVATED — / — 🟡 0.28 [40]
run-tests Run tests in a multi-TFM project targeting a specific framework 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ run-tests; tools: skill, bash / ✅ run-tests; tools: skill, bash — / — 🟡 0.28
run-tests Filter MSTest tests by category on VSTest 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ run-tests; tools: skill, bash, glob / ✅ run-tests; tools: skill, bash — / — 🟡 0.28
run-tests Filter NUnit tests by class name on VSTest 4.0/5 → 3.0/5 🔴 4.0/5 → 5.0/5 🟢 ✅ run-tests; tools: skill, bash / ✅ run-tests; tools: skill, bash — / — 🟡 0.28 [41]
run-tests Filter xUnit v3 tests by class on MTP 1.0/5 → 5.0/5 🟢 1.0/5 → 5.0/5 🟢 ✅ run-tests; tools: skill, bash / ✅ run-tests; tools: skill — / — 🟡 0.28
run-tests Filter xUnit v3 tests by trait on MTP 1.0/5 → 5.0/5 🟢 1.0/5 → 5.0/5 🟢 ✅ run-tests; tools: skill, view / ✅ run-tests; tools: skill, view — / — 🟡 0.28
run-tests Filter TUnit tests by class using treenode-filter 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ run-tests; tools: skill, bash / ✅ run-tests; tools: skill — / — 🟡 0.28
run-tests Combine multiple filter criteria on VSTest MSTest 4.0/5 → 4.0/5 4.0/5 → 3.0/5 🔴 ✅ run-tests; tools: skill / ✅ run-tests; tools: skill — / — 🟡 0.28
run-tests MTP project on SDK 9 must use -- separator for args 1.0/5 → 5.0/5 🟢 1.0/5 → 5.0/5 🟢 ✅ run-tests; tools: skill / ✅ run-tests; tools: skill — / — 🟡 0.28
run-tests MTP project on SDK 10 passes args directly 3.0/5 → 3.0/5 3.0/5 → 3.0/5 ✅ run-tests; tools: skill / ✅ run-tests; tools: skill — / — 🟡 0.28 [42]
run-tests Detect test platform from Directory.Build.props 1.0/5 → 5.0/5 🟢 1.0/5 → 3.0/5 🟢 ✅ run-tests; tools: skill / ✅ run-tests; tools: skill — / — 🟡 0.28
run-tests Negative test: do not use MTP syntax for a VSTest project 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ run-tests; tools: skill, view / ✅ run-tests; tools: skill, view — / — 🟡 0.28
mtp-hot-reload Suggest hot reload for failing test in MTP project (SDK 9) 1.0/5 → 5.0/5 🟢 1.0/5 → 5.0/5 🟢 ✅ mtp-hot-reload; tools: skill / ✅ mtp-hot-reload; tools: skill — / — ✅ 0.11
mtp-hot-reload Suggest hot reload for failing test in MTP project (SDK 10) 1.0/5 → 4.0/5 🟢 1.0/5 → 4.0/5 🟢 ✅ mtp-hot-reload; tools: skill, glob, bash, create / ✅ mtp-hot-reload; tools: skill, bash, create — / — ✅ 0.11
mtp-hot-reload Enable hot reload when package already installed 2.0/5 → 5.0/5 🟢 2.0/5 → 5.0/5 🟢 ✅ mtp-hot-reload; tools: skill, bash / ✅ mtp-hot-reload; tools: skill — / — ✅ 0.11
mtp-hot-reload Suggest launchSettings.json configuration for hot reload 1.0/5 → 5.0/5 🟢 1.0/5 → 5.0/5 🟢 ✅ mtp-hot-reload; tools: skill, bash, create / ✅ mtp-hot-reload; tools: skill, bash, create — / — ✅ 0.11
mtp-hot-reload Use dotnet run not dotnet test for hot reload 3.0/5 → 3.0/5 3.0/5 → 4.0/5 🟢 ✅ mtp-hot-reload; tools: skill / ✅ mtp-hot-reload; tools: skill — / — ✅ 0.11
mtp-hot-reload Negative: VSTest project cannot use MTP hot reload 2.0/5 → 2.0/5 2.0/5 → 1.0/5 🔴 ✅ mtp-hot-reload; tools: skill, create, edit / ✅ mtp-hot-reload; tools: skill, edit, create — / — ✅ 0.11 [43]
mtp-hot-reload Run specific failing test with hot reload filter 1.0/5 → 3.0/5 🟢 1.0/5 → 5.0/5 🟢 ✅ mtp-hot-reload; tools: skill, view, bash / ✅ mtp-hot-reload; tools: skill, view — / — ✅ 0.11
test-anti-patterns Detect mixed severity anti-patterns in repository service tests 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ test-anti-patterns; tools: report_intent, skill / ✅ test-anti-patterns; tools: report_intent, skill — / — ✅ 0.05
test-anti-patterns Detect flakiness indicators and test coupling 3.0/5 → 4.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ test-anti-patterns; tools: report_intent, skill / ✅ test-anti-patterns; tools: report_intent, skill — / — ✅ 0.05
test-anti-patterns Detect duplicated tests and magic values 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ test-anti-patterns; tools: report_intent, skill / ✅ test-anti-patterns; tools: report_intent, skill — / — ✅ 0.05
test-anti-patterns Recognize well-written tests without inventing false positives 1.0/5 → 5.0/5 🟢 1.0/5 → 5.0/5 🟢 ✅ test-anti-patterns; tools: report_intent, skill / ✅ test-anti-patterns; tools: report_intent, skill — / — ✅ 0.05
migrate-mstest-v3-to-v4 Migrate custom TestMethodAttribute from Execute to ExecuteAsync 2.0/5 → 3.0/5 🟢 2.0/5 → 4.0/5 🟢 ✅ migrate-mstest-v3-to-v4; tools: skill / ✅ migrate-mstest-v3-to-v4; tools: skill — / — ✅ 0.06
migrate-mstest-v3-to-v4 Replace ExpectedExceptionAttribute with Assert.ThrowsExactly 3.0/5 → 5.0/5 🟢 3.0/5 → 3.0/5 ✅ migrate-mstest-v3-to-v4; tools: skill / ✅ migrate-mstest-v3-to-v4; tools: skill — / — ✅ 0.06
migrate-mstest-v3-to-v4 Fix multiple v4 breaking changes: Assert, ClassCleanup, TestContext, Timeout 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ migrate-mstest-v3-to-v4; tools: skill / ✅ migrate-mstest-v3-to-v4; tools: skill — / — ✅ 0.06
migrate-mstest-v3-to-v4 Handle net6.0 target framework dropped in MSTest v4 5.0/5 → 5.0/5 5.0/5 → 4.0/5 🔴 ✅ migrate-mstest-v3-to-v4; tools: skill / ⚠️ NOT ACTIVATED — / — ✅ 0.06 [44]
migrate-mstest-v3-to-v4 Fix TestMethodAttribute CallerInfo constructor breaking change 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ migrate-mstest-v3-to-v4; tools: skill / ✅ migrate-mstest-v3-to-v4; tools: skill — / — ✅ 0.06 [45]
migrate-mstest-v3-to-v4 Understand behavioral changes after MSTest v4 upgrade 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ migrate-mstest-v3-to-v4; tools: skill / ✅ migrate-mstest-v3-to-v4; tools: skill — / — ✅ 0.06
migrate-mstest-v3-to-v4 Handle MSTest.Sdk and MTP changes in v4 2.0/5 → 3.0/5 🟢 2.0/5 → 4.0/5 🟢 ✅ migrate-mstest-v3-to-v4; tools: skill / ✅ migrate-mstest-v3-to-v4; tools: skill — / — ✅ 0.06
migrate-mstest-v3-to-v4 Full MSTest v3 to v4 migration with multiple breaking changes 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ migrate-mstest-v3-to-v4; tools: skill / ✅ migrate-mstest-v3-to-v4; tools: skill — / — ✅ 0.06
migrate-mstest-v3-to-v4 Migrate MSTest.Sdk v3 project using ManagedType and TestTimeout 2.0/5 → 4.0/5 🟢 2.0/5 → 4.0/5 🟢 ✅ migrate-mstest-v3-to-v4; tools: skill / ✅ migrate-mstest-v3-to-v4; tools: skill — / — ✅ 0.06
migrate-mstest-v3-to-v4 Correctly identify MSTest v3 project and recommend v4 migration 3.0/5 → 5.0/5 🟢 3.0/5 → 5.0/5 🟢 ✅ migrate-mstest-v3-to-v4; tools: skill / ✅ migrate-mstest-v3-to-v4; tools: skill — / — ✅ 0.06
template-authoring Validate a template.json file 3.0/5 → 5.0/5 🟢 3.0/5 → 1.0/5 ⏰ 🔴 ✅ template-authoring; tools: skill / ⚠️ NOT ACTIVATED — / — ✅ 0.05
template-discovery Find template for web API project 2.0/5 → 5.0/5 🟢 2.0/5 → 1.0/5 ⏰ 🔴 ✅ template-discovery; tools: report_intent, skill, bash / ⚠️ NOT ACTIVATED — / — 🟡 0.33
template-discovery Inspect template parameters 4.0/5 → 5.0/5 🟢 4.0/5 → 1.0/5 ⏰ 🔴 ✅ template-discovery; tools: skill / ✅ template-discovery; tools: skill — / — 🟡 0.33
template-instantiation Create a console application 4.0/5 → 5.0/5 🟢 4.0/5 → 5.0/5 🟢 ✅ template-instantiation; tools: skill / ✅ template-instantiation; tools: skill — / — 🟡 0.37
template-instantiation Create project with specific framework 5.0/5 → 5.0/5 5.0/5 → 5.0/5 ✅ template-instantiation; tools: skill / ⚠️ NOT ACTIVATED — / — 🟡 0.37 [46]

[1] (Isolated) Quality unchanged but weighted score is -4.5% due to: judgment
[2] (Plugin) Quality unchanged but weighted score is -7.5% due to: tokens (24357 → 50618), tool calls (2 → 3), time (17.2s → 25.5s)
[3] (Plugin) Quality unchanged but weighted score is -5.4% due to: tokens (11926 → 53686), tool calls (0 → 3), time (15.8s → 22.8s)
[4] (Isolated) Quality unchanged but weighted score is -21.0% due to: judgment, tokens (11986 → 51502), tool calls (0 → 4), time (16.8s → 26.8s)
[5] (Plugin) Quality unchanged but weighted score is -12.5% due to: tokens (11716 → 32783), quality, tool calls (0 → 1), time (10.7s → 18.5s)
[6] (Isolated) Quality improved but weighted score is -16.6% due to: judgment, tokens (12030 → 51861), tool calls (0 → 4), time (17.4s → 34.4s)
[7] (Plugin) Quality unchanged but weighted score is -8.8% due to: tokens (40674 → 102210), tool calls (5 → 10), time (37.2s → 57.0s)
[8] (Plugin) Quality unchanged but weighted score is -8.6% due to: tokens (38504 → 66471), tool calls (3 → 6), time (30.1s → 86.7s)
[9] (Isolated) Quality improved but weighted score is -4.3% due to: tokens (29329 → 113534), tool calls (2 → 16), time (63.0s → 83.1s)
[10] (Plugin) Quality unchanged but weighted score is -10.0% due to: tokens (27313 → 108239), tool calls (2 → 9), time (28.0s → 104.0s)
[11] (Isolated) Quality unchanged but weighted score is -10.0% due to: tokens (28696 → 126570), tool calls (2 → 9), time (43.2s → 118.4s)
[12] (Isolated) Quality unchanged but weighted score is -7.7% due to: tokens (24444 → 43703), tool calls (2 → 5), time (13.7s → 20.5s)
[13] (Plugin) Quality unchanged but weighted score is -7.8% due to: tokens (11938 → 43292), tool calls (0 → 3)
[14] (Isolated) Quality unchanged but weighted score is -22.8% due to: judgment, tokens (11958 → 26459), quality, tool calls (0 → 2), time (10.2s → 12.7s)
[15] (Plugin) Quality unchanged but weighted score is -7.5% due to: tokens (84 → 12192), tool calls (0 → 2)
[16] (Plugin) Quality unchanged but weighted score is -0.0% due to: efficiency metrics
[17] (Plugin) Quality unchanged but weighted score is -4.0% due to: tokens (11792 → 29008), tool calls (0 → 2), time (13.9s → 16.7s)
[18] (Plugin) Quality unchanged but weighted score is -19.0% due to: judgment, errors (0 → 1), time (69.1s → 360.0s)
[19] (Plugin) Quality unchanged but weighted score is -48.0% due to: completion (✓ → ✗), judgment, quality, tokens (118357 → 859262), errors (0 → 1), tool calls (13 → 48), time (64.4s → 360.0s)
[20] (Isolated) Quality unchanged but weighted score is -28.2% due to: completion (✓ → ✗), tokens (119625 → 273293), errors (0 → 1), time (92.1s → 600.0s), tool calls (37 → 48)
[21] (Isolated) Quality dropped but weighted score is +0.3% due to: tool calls (7 → 5)
[22] (Isolated) Quality unchanged but weighted score is -17.9% due to: judgment, quality
[23] (Isolated) Quality unchanged but weighted score is -16.3% due to: judgment, quality
[24] (Plugin) Quality unchanged but weighted score is -0.9% due to: quality
[25] (Isolated) Quality unchanged but weighted score is -7.5% due to: quality, tokens (69594 → 113228), tool calls (11 → 19)
[26] (Plugin) Quality unchanged but weighted score is -7.7% due to: tokens (12850 → 31914), tool calls (0 → 1)
[27] (Isolated) Quality unchanged but weighted score is -18.0% due to: quality, tokens (24658 → 49450), tool calls (1 → 3), time (24.9s → 59.4s)
[28] (Isolated) Quality unchanged but weighted score is -14.4% due to: judgment, quality, tokens (12885 → 46290), tool calls (0 → 3)
[29] (Isolated) Quality unchanged but weighted score is -6.4% due to: tokens (88143 → 191635), time (60.2s → 82.7s)
[30] (Isolated) Quality unchanged but weighted score is -20.0% due to: judgment, quality
[31] (Plugin) Quality unchanged but weighted score is -5.9% due to: tokens (24967 → 50108), tool calls (3 → 5)
[32] (Isolated) Quality unchanged but weighted score is -1.1% due to: tokens (50011 → 62654)
[33] (Isolated) Quality unchanged but weighted score is -0.8% due to: efficiency metrics
[34] (Isolated) Quality improved but weighted score is -1.5% due to: tokens (26263 → 46988), tool calls (4 → 5)
[35] (Isolated) Quality unchanged but weighted score is -0.1% due to: tokens (49289 → 65130), tool calls (8 → 11), time (28.0s → 35.9s)
[36] (Isolated) Quality improved but weighted score is -8.7% due to: tokens (27462 → 62806), tool calls (3 → 6), time (41.4s → 62.0s)
[37] (Plugin) Quality unchanged but weighted score is -7.7% due to: tokens (160742 → 429242), tool calls (15 → 36), time (69.0s → 154.0s)
[38] (Plugin) Quality unchanged but weighted score is -10.0% due to: tokens (11660 → 31484), tool calls (0 → 1), time (5.3s → 11.7s)
[39] (Plugin) Quality unchanged but weighted score is -7.3% due to: tokens (12984 → 52686), tool calls (0 → 4)
[40] (Plugin) Quality unchanged but weighted score is -1.2% due to: tokens (271895 → 733369), tool calls (19 → 37), time (137.2s → 238.9s)
[41] (Isolated) Quality dropped but weighted score is +27.0% due to: completion (✗ → ✓)
[42] (Isolated) Quality unchanged but weighted score is -19.9% due to: completion (✓ → ✗), tokens (248549 → 676814), time (98.7s → 269.6s), tool calls (18 → 28)
[43] (Isolated) Quality unchanged but weighted score is -0.2% due to: tokens (74010 → 181004), tool calls (7 → 17), time (67.6s → 85.6s)
[44] (Isolated) Quality unchanged but weighted score is -3.3% due to: tokens (23652 → 32342), tool calls (3 → 4), time (10.8s → 13.5s)
[45] (Isolated) Quality unchanged but weighted score is -9.0% due to: quality, tokens (70751 → 95475)
[46] (Plugin) Quality unchanged but weighted score is -0.4% due to: efficiency metrics

timeout — run hit the scenario timeout limit; scoring may be impacted by aborting model execution before it could produce its full output

Model: claude-opus-4.6 | Judge: claude-opus-4.6

Full results

github-actions Bot added a commit that referenced this pull request Mar 25, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

DO NOT MERGE Flagging for ensuring that the issue is not merged.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants