[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-dotnet-test-analysis-extensions":3,"mdc--izvynq-key":34,"related-org-dotnet-test-analysis-extensions":640,"related-repo-dotnet-test-analysis-extensions":803},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":29,"sourceUrl":32,"mdContent":33},"test-analysis-extensions","retrieve test analysis reference files","Provides file paths to language-specific reference files for the test ANALYSIS skills (assertion-quality, test-anti-patterns, test-gap-analysis, test-smell-detection, test-tagging). Call this skill to discover available extension files (e.g., dotnet.md for .NET\u002FMSTest\u002FxUnit\u002FNUnit\u002FTUnit, python.md for pytest\u002Funittest, typescript.md for Jest\u002FVitest\u002FMocha, java.md for JUnit\u002FTestNG, etc.). Do not use directly — invoked by the test-quality-auditor agent and polyglot analysis skills that need framework-specific lookup tables (test markers, assertion APIs, skip annotations, sleep patterns, mystery guest indicators, integration markers, setup\u002Fteardown, tag-support capability).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"dotnet",".NET (Microsoft)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdotnet.png",[12,16,19],{"name":13,"slug":14,"type":15},".NET","net","tag",{"name":17,"slug":18,"type":15},"Code Analysis","code-analysis",{"name":20,"slug":21,"type":15},"Testing","testing",4576,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills","2026-07-12T08:23:43.274681","MIT",332,[28],"agent-skills",{"repoUrl":23,"stars":22,"forks":26,"topics":30,"description":31},[28],"Repository for skills to assist AI coding agents with .NET and C#","https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fdotnet-test\u002Fskills\u002Ftest-analysis-extensions","---\nname: test-analysis-extensions\ndescription: >-\n  Provides file paths to language-specific reference files for the test\n  ANALYSIS skills (assertion-quality, test-anti-patterns, test-gap-analysis,\n  test-smell-detection, test-tagging). Call this skill to discover available\n  extension files (e.g., dotnet.md for .NET\u002FMSTest\u002FxUnit\u002FNUnit\u002FTUnit,\n  python.md for pytest\u002Funittest, typescript.md for Jest\u002FVitest\u002FMocha,\n  java.md for JUnit\u002FTestNG, etc.). Do not use directly — invoked by the\n  test-quality-auditor agent and polyglot analysis skills that need\n  framework-specific lookup tables (test markers, assertion APIs, skip\n  annotations, sleep patterns, mystery guest indicators, integration\n  markers, setup\u002Fteardown, tag-support capability).\nuser-invocable: false\ndisable-model-invocation: true\nlicense: MIT\n---\n\n# Test Analysis Extensions\n\nThis skill provides access to per-language reference files used by the polyglot test analysis skills. Call this skill to get the list of available extension files, then read the one matching the target codebase's language and test framework.\n\n## Available Extension Files\n\n| File | Languages \u002F Frameworks | Contents |\n|------|------------------------|----------|\n| [extensions\u002Fdotnet.md](extensions\u002Fdotnet.md) | .NET (C#\u002FF#\u002FVB) — MSTest, xUnit, NUnit, TUnit | Test markers, assertion APIs, sleep\u002Fdelay patterns, skip annotations, mystery guest, integration markers, setup\u002Fteardown, tag support |\n| [extensions\u002Fpython.md](extensions\u002Fpython.md) | Python — pytest, unittest | Same categories, with pytest fixtures\u002Fmarkers and unittest TestCase |\n| [extensions\u002Ftypescript.md](extensions\u002Ftypescript.md) | TypeScript \u002F JavaScript — Jest, Vitest, Mocha, Jasmine, node:test | Same categories, with async\u002Fawait pitfalls |\n| [extensions\u002Fjava.md](extensions\u002Fjava.md) | Java — JUnit 4, JUnit 5 (Jupiter), TestNG | Same categories, with `@Tag` \u002F `@Category` \u002F groups |\n| [extensions\u002Fgo.md](extensions\u002Fgo.md) | Go — `testing` package, testify | Same categories, with table-driven idiom and build tags |\n| [extensions\u002Fruby.md](extensions\u002Fruby.md) | Ruby — RSpec, Minitest | Same categories, with RSpec metadata and Minitest tags |\n| [extensions\u002Frust.md](extensions\u002Frust.md) | Rust — built-in `#[test]`, `cargo test` | Same categories, with `#[ignore]`, `#[should_panic]`, feature flags |\n| [extensions\u002Fswift.md](extensions\u002Fswift.md) | Swift — XCTest, Swift Testing | Same categories, with `@Test`, `@Tag`, `@Suite` |\n| [extensions\u002Fkotlin.md](extensions\u002Fkotlin.md) | Kotlin — JUnit 5, Kotest, MockK | Same categories, with `@Tag` and Kotest tags |\n| [extensions\u002Fpowershell.md](extensions\u002Fpowershell.md) | PowerShell — Pester v5 | Same categories, with `-Tag` and `Skip` |\n| [extensions\u002Fcpp.md](extensions\u002Fcpp.md) | C++ — GoogleTest, Catch2, doctest | Same categories, with `[tags]` and `*` filters |\n\n## Usage\n\n1. Detect the target codebase's primary language and test framework.\n2. Read the matching extension file before performing analysis.\n3. If multiple test frameworks are present (e.g., a project mixing Jest and Mocha), read all relevant extensions.\n4. Each extension file documents the same categories so analysis skills can be language-neutral.\n\n## Capability tags\n\nEach extension file declares per-capability support so skills can gate behaviour safely:\n\n- **Test discovery** — how to locate test files and methods.\n- **Assertion detection** — framework-specific and language-level assertion forms.\n- **Sleep\u002Fdelay patterns** — synchronous and asynchronous waits.\n- **Skip \u002F ignore** — how to recognize skipped\u002Fignored tests.\n- **Setup \u002F teardown** — fixture and lifecycle hooks.\n- **Mystery guest indicators** — common file\u002Fdb\u002Fnetwork\u002Fenv coupling patterns.\n- **Integration markers** — conventions that mark a test as integration\u002FE2E.\n- **Tag support** (for `test-tagging` skill) — one of:\n  - `auto-edit` — language has a canonical attribute\u002Fmarker the skill can safely write.\n  - `report-only` — no canonical syntax; produce audit reports without edits.\n  - `convention-based` — tags exist via name\u002Fcomment conventions only.\n\n## Notes for skill authors\n\n- Treat extension files as data, not as guidance to follow verbatim. They tell skills *how to detect things* in each language, not *what to think* about findings.\n- When language detection is uncertain, prefer reading multiple extension files over guessing.\n- If the user explicitly names a framework that does not have an extension file yet, fall back to the closest one (e.g., Pest → python.md\u002Fpytest semantics) and note the gap in the report.\n",{"data":35,"body":38},{"name":4,"description":6,"user-invocable":36,"disable-model-invocation":37,"license":25},false,true,{"type":39,"children":40},"root",[41,49,55,62,430,436,461,467,472,601,607],{"type":42,"tag":43,"props":44,"children":45},"element","h1",{"id":4},[46],{"type":47,"value":48},"text","Test Analysis Extensions",{"type":42,"tag":50,"props":51,"children":52},"p",{},[53],{"type":47,"value":54},"This skill provides access to per-language reference files used by the polyglot test analysis skills. Call this skill to get the list of available extension files, then read the one matching the target codebase's language and test framework.",{"type":42,"tag":56,"props":57,"children":59},"h2",{"id":58},"available-extension-files",[60],{"type":47,"value":61},"Available Extension Files",{"type":42,"tag":63,"props":64,"children":65},"table",{},[66,90],{"type":42,"tag":67,"props":68,"children":69},"thead",{},[70],{"type":42,"tag":71,"props":72,"children":73},"tr",{},[74,80,85],{"type":42,"tag":75,"props":76,"children":77},"th",{},[78],{"type":47,"value":79},"File",{"type":42,"tag":75,"props":81,"children":82},{},[83],{"type":47,"value":84},"Languages \u002F Frameworks",{"type":42,"tag":75,"props":86,"children":87},{},[88],{"type":47,"value":89},"Contents",{"type":42,"tag":91,"props":92,"children":93},"tbody",{},[94,117,138,159,197,225,246,295,334,361,395],{"type":42,"tag":71,"props":95,"children":96},{},[97,107,112],{"type":42,"tag":98,"props":99,"children":100},"td",{},[101],{"type":42,"tag":102,"props":103,"children":105},"a",{"href":104},"extensions\u002Fdotnet.md",[106],{"type":47,"value":104},{"type":42,"tag":98,"props":108,"children":109},{},[110],{"type":47,"value":111},".NET (C#\u002FF#\u002FVB) — MSTest, xUnit, NUnit, TUnit",{"type":42,"tag":98,"props":113,"children":114},{},[115],{"type":47,"value":116},"Test markers, assertion APIs, sleep\u002Fdelay patterns, skip annotations, mystery guest, integration markers, setup\u002Fteardown, tag support",{"type":42,"tag":71,"props":118,"children":119},{},[120,128,133],{"type":42,"tag":98,"props":121,"children":122},{},[123],{"type":42,"tag":102,"props":124,"children":126},{"href":125},"extensions\u002Fpython.md",[127],{"type":47,"value":125},{"type":42,"tag":98,"props":129,"children":130},{},[131],{"type":47,"value":132},"Python — pytest, unittest",{"type":42,"tag":98,"props":134,"children":135},{},[136],{"type":47,"value":137},"Same categories, with pytest fixtures\u002Fmarkers and unittest TestCase",{"type":42,"tag":71,"props":139,"children":140},{},[141,149,154],{"type":42,"tag":98,"props":142,"children":143},{},[144],{"type":42,"tag":102,"props":145,"children":147},{"href":146},"extensions\u002Ftypescript.md",[148],{"type":47,"value":146},{"type":42,"tag":98,"props":150,"children":151},{},[152],{"type":47,"value":153},"TypeScript \u002F JavaScript — Jest, Vitest, Mocha, Jasmine, node:test",{"type":42,"tag":98,"props":155,"children":156},{},[157],{"type":47,"value":158},"Same categories, with async\u002Fawait pitfalls",{"type":42,"tag":71,"props":160,"children":161},{},[162,170,175],{"type":42,"tag":98,"props":163,"children":164},{},[165],{"type":42,"tag":102,"props":166,"children":168},{"href":167},"extensions\u002Fjava.md",[169],{"type":47,"value":167},{"type":42,"tag":98,"props":171,"children":172},{},[173],{"type":47,"value":174},"Java — JUnit 4, JUnit 5 (Jupiter), TestNG",{"type":42,"tag":98,"props":176,"children":177},{},[178,180,187,189,195],{"type":47,"value":179},"Same categories, with ",{"type":42,"tag":181,"props":182,"children":184},"code",{"className":183},[],[185],{"type":47,"value":186},"@Tag",{"type":47,"value":188}," \u002F ",{"type":42,"tag":181,"props":190,"children":192},{"className":191},[],[193],{"type":47,"value":194},"@Category",{"type":47,"value":196}," \u002F groups",{"type":42,"tag":71,"props":198,"children":199},{},[200,208,220],{"type":42,"tag":98,"props":201,"children":202},{},[203],{"type":42,"tag":102,"props":204,"children":206},{"href":205},"extensions\u002Fgo.md",[207],{"type":47,"value":205},{"type":42,"tag":98,"props":209,"children":210},{},[211,213,218],{"type":47,"value":212},"Go — ",{"type":42,"tag":181,"props":214,"children":216},{"className":215},[],[217],{"type":47,"value":21},{"type":47,"value":219}," package, testify",{"type":42,"tag":98,"props":221,"children":222},{},[223],{"type":47,"value":224},"Same categories, with table-driven idiom and build tags",{"type":42,"tag":71,"props":226,"children":227},{},[228,236,241],{"type":42,"tag":98,"props":229,"children":230},{},[231],{"type":42,"tag":102,"props":232,"children":234},{"href":233},"extensions\u002Fruby.md",[235],{"type":47,"value":233},{"type":42,"tag":98,"props":237,"children":238},{},[239],{"type":47,"value":240},"Ruby — RSpec, Minitest",{"type":42,"tag":98,"props":242,"children":243},{},[244],{"type":47,"value":245},"Same categories, with RSpec metadata and Minitest tags",{"type":42,"tag":71,"props":247,"children":248},{},[249,257,276],{"type":42,"tag":98,"props":250,"children":251},{},[252],{"type":42,"tag":102,"props":253,"children":255},{"href":254},"extensions\u002Frust.md",[256],{"type":47,"value":254},{"type":42,"tag":98,"props":258,"children":259},{},[260,262,268,270],{"type":47,"value":261},"Rust — built-in ",{"type":42,"tag":181,"props":263,"children":265},{"className":264},[],[266],{"type":47,"value":267},"#[test]",{"type":47,"value":269},", ",{"type":42,"tag":181,"props":271,"children":273},{"className":272},[],[274],{"type":47,"value":275},"cargo test",{"type":42,"tag":98,"props":277,"children":278},{},[279,280,286,287,293],{"type":47,"value":179},{"type":42,"tag":181,"props":281,"children":283},{"className":282},[],[284],{"type":47,"value":285},"#[ignore]",{"type":47,"value":269},{"type":42,"tag":181,"props":288,"children":290},{"className":289},[],[291],{"type":47,"value":292},"#[should_panic]",{"type":47,"value":294},", feature flags",{"type":42,"tag":71,"props":296,"children":297},{},[298,306,311],{"type":42,"tag":98,"props":299,"children":300},{},[301],{"type":42,"tag":102,"props":302,"children":304},{"href":303},"extensions\u002Fswift.md",[305],{"type":47,"value":303},{"type":42,"tag":98,"props":307,"children":308},{},[309],{"type":47,"value":310},"Swift — XCTest, Swift Testing",{"type":42,"tag":98,"props":312,"children":313},{},[314,315,321,322,327,328],{"type":47,"value":179},{"type":42,"tag":181,"props":316,"children":318},{"className":317},[],[319],{"type":47,"value":320},"@Test",{"type":47,"value":269},{"type":42,"tag":181,"props":323,"children":325},{"className":324},[],[326],{"type":47,"value":186},{"type":47,"value":269},{"type":42,"tag":181,"props":329,"children":331},{"className":330},[],[332],{"type":47,"value":333},"@Suite",{"type":42,"tag":71,"props":335,"children":336},{},[337,345,350],{"type":42,"tag":98,"props":338,"children":339},{},[340],{"type":42,"tag":102,"props":341,"children":343},{"href":342},"extensions\u002Fkotlin.md",[344],{"type":47,"value":342},{"type":42,"tag":98,"props":346,"children":347},{},[348],{"type":47,"value":349},"Kotlin — JUnit 5, Kotest, MockK",{"type":42,"tag":98,"props":351,"children":352},{},[353,354,359],{"type":47,"value":179},{"type":42,"tag":181,"props":355,"children":357},{"className":356},[],[358],{"type":47,"value":186},{"type":47,"value":360}," and Kotest tags",{"type":42,"tag":71,"props":362,"children":363},{},[364,372,377],{"type":42,"tag":98,"props":365,"children":366},{},[367],{"type":42,"tag":102,"props":368,"children":370},{"href":369},"extensions\u002Fpowershell.md",[371],{"type":47,"value":369},{"type":42,"tag":98,"props":373,"children":374},{},[375],{"type":47,"value":376},"PowerShell — Pester v5",{"type":42,"tag":98,"props":378,"children":379},{},[380,381,387,389],{"type":47,"value":179},{"type":42,"tag":181,"props":382,"children":384},{"className":383},[],[385],{"type":47,"value":386},"-Tag",{"type":47,"value":388}," and ",{"type":42,"tag":181,"props":390,"children":392},{"className":391},[],[393],{"type":47,"value":394},"Skip",{"type":42,"tag":71,"props":396,"children":397},{},[398,406,411],{"type":42,"tag":98,"props":399,"children":400},{},[401],{"type":42,"tag":102,"props":402,"children":404},{"href":403},"extensions\u002Fcpp.md",[405],{"type":47,"value":403},{"type":42,"tag":98,"props":407,"children":408},{},[409],{"type":47,"value":410},"C++ — GoogleTest, Catch2, doctest",{"type":42,"tag":98,"props":412,"children":413},{},[414,415,421,422,428],{"type":47,"value":179},{"type":42,"tag":181,"props":416,"children":418},{"className":417},[],[419],{"type":47,"value":420},"[tags]",{"type":47,"value":388},{"type":42,"tag":181,"props":423,"children":425},{"className":424},[],[426],{"type":47,"value":427},"*",{"type":47,"value":429}," filters",{"type":42,"tag":56,"props":431,"children":433},{"id":432},"usage",[434],{"type":47,"value":435},"Usage",{"type":42,"tag":437,"props":438,"children":439},"ol",{},[440,446,451,456],{"type":42,"tag":441,"props":442,"children":443},"li",{},[444],{"type":47,"value":445},"Detect the target codebase's primary language and test framework.",{"type":42,"tag":441,"props":447,"children":448},{},[449],{"type":47,"value":450},"Read the matching extension file before performing analysis.",{"type":42,"tag":441,"props":452,"children":453},{},[454],{"type":47,"value":455},"If multiple test frameworks are present (e.g., a project mixing Jest and Mocha), read all relevant extensions.",{"type":42,"tag":441,"props":457,"children":458},{},[459],{"type":47,"value":460},"Each extension file documents the same categories so analysis skills can be language-neutral.",{"type":42,"tag":56,"props":462,"children":464},{"id":463},"capability-tags",[465],{"type":47,"value":466},"Capability tags",{"type":42,"tag":50,"props":468,"children":469},{},[470],{"type":47,"value":471},"Each extension file declares per-capability support so skills can gate behaviour safely:",{"type":42,"tag":473,"props":474,"children":475},"ul",{},[476,487,497,507,517,527,537,547],{"type":42,"tag":441,"props":477,"children":478},{},[479,485],{"type":42,"tag":480,"props":481,"children":482},"strong",{},[483],{"type":47,"value":484},"Test discovery",{"type":47,"value":486}," — how to locate test files and methods.",{"type":42,"tag":441,"props":488,"children":489},{},[490,495],{"type":42,"tag":480,"props":491,"children":492},{},[493],{"type":47,"value":494},"Assertion detection",{"type":47,"value":496}," — framework-specific and language-level assertion forms.",{"type":42,"tag":441,"props":498,"children":499},{},[500,505],{"type":42,"tag":480,"props":501,"children":502},{},[503],{"type":47,"value":504},"Sleep\u002Fdelay patterns",{"type":47,"value":506}," — synchronous and asynchronous waits.",{"type":42,"tag":441,"props":508,"children":509},{},[510,515],{"type":42,"tag":480,"props":511,"children":512},{},[513],{"type":47,"value":514},"Skip \u002F ignore",{"type":47,"value":516}," — how to recognize skipped\u002Fignored tests.",{"type":42,"tag":441,"props":518,"children":519},{},[520,525],{"type":42,"tag":480,"props":521,"children":522},{},[523],{"type":47,"value":524},"Setup \u002F teardown",{"type":47,"value":526}," — fixture and lifecycle hooks.",{"type":42,"tag":441,"props":528,"children":529},{},[530,535],{"type":42,"tag":480,"props":531,"children":532},{},[533],{"type":47,"value":534},"Mystery guest indicators",{"type":47,"value":536}," — common file\u002Fdb\u002Fnetwork\u002Fenv coupling patterns.",{"type":42,"tag":441,"props":538,"children":539},{},[540,545],{"type":42,"tag":480,"props":541,"children":542},{},[543],{"type":47,"value":544},"Integration markers",{"type":47,"value":546}," — conventions that mark a test as integration\u002FE2E.",{"type":42,"tag":441,"props":548,"children":549},{},[550,555,557,563,565],{"type":42,"tag":480,"props":551,"children":552},{},[553],{"type":47,"value":554},"Tag support",{"type":47,"value":556}," (for ",{"type":42,"tag":181,"props":558,"children":560},{"className":559},[],[561],{"type":47,"value":562},"test-tagging",{"type":47,"value":564}," skill) — one of:\n",{"type":42,"tag":473,"props":566,"children":567},{},[568,579,590],{"type":42,"tag":441,"props":569,"children":570},{},[571,577],{"type":42,"tag":181,"props":572,"children":574},{"className":573},[],[575],{"type":47,"value":576},"auto-edit",{"type":47,"value":578}," — language has a canonical attribute\u002Fmarker the skill can safely write.",{"type":42,"tag":441,"props":580,"children":581},{},[582,588],{"type":42,"tag":181,"props":583,"children":585},{"className":584},[],[586],{"type":47,"value":587},"report-only",{"type":47,"value":589}," — no canonical syntax; produce audit reports without edits.",{"type":42,"tag":441,"props":591,"children":592},{},[593,599],{"type":42,"tag":181,"props":594,"children":596},{"className":595},[],[597],{"type":47,"value":598},"convention-based",{"type":47,"value":600}," — tags exist via name\u002Fcomment conventions only.",{"type":42,"tag":56,"props":602,"children":604},{"id":603},"notes-for-skill-authors",[605],{"type":47,"value":606},"Notes for skill authors",{"type":42,"tag":473,"props":608,"children":609},{},[610,630,635],{"type":42,"tag":441,"props":611,"children":612},{},[613,615,621,623,628],{"type":47,"value":614},"Treat extension files as data, not as guidance to follow verbatim. They tell skills ",{"type":42,"tag":616,"props":617,"children":618},"em",{},[619],{"type":47,"value":620},"how to detect things",{"type":47,"value":622}," in each language, not ",{"type":42,"tag":616,"props":624,"children":625},{},[626],{"type":47,"value":627},"what to think",{"type":47,"value":629}," about findings.",{"type":42,"tag":441,"props":631,"children":632},{},[633],{"type":47,"value":634},"When language detection is uncertain, prefer reading multiple extension files over guessing.",{"type":42,"tag":441,"props":636,"children":637},{},[638],{"type":47,"value":639},"If the user explicitly names a framework that does not have an extension file yet, fall back to the closest one (e.g., Pest → python.md\u002Fpytest semantics) and note the gap in the report.",{"items":641,"total":802},[642,658,671,686,704,716,736,746,758,768,781,792],{"slug":643,"name":643,"fn":644,"description":645,"org":646,"tags":647,"stars":655,"repoUrl":656,"updatedAt":657},"multithreaded-task-migration","migrate MSBuild tasks to multithreaded mode","Guide for migrating MSBuild tasks to multithreaded mode support, including compatibility red-team review. Use this when converting tasks to thread-safe versions, implementing IMultiThreadableTask, adding TaskEnvironment support, or auditing migrations for behavioral compatibility.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[648,649,652],{"name":13,"slug":14,"type":15},{"name":650,"slug":651,"type":15},"Engineering","engineering",{"name":653,"slug":654,"type":15},"Performance","performance",5535,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmsbuild","2026-07-22T05:37:33.965588",{"slug":659,"name":659,"fn":660,"description":661,"org":662,"tags":663,"stars":22,"repoUrl":23,"updatedAt":670},"analyzing-dotnet-performance","analyze .NET code for performance anti-patterns","Scans .NET code for ~50 performance anti-patterns across async, memory, strings, collections, LINQ, regex, serialization, and I\u002FO with tiered severity classification. Use when analyzing .NET code for optimization opportunities, reviewing hot paths, or auditing allocation-heavy patterns.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[664,665,666,669],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":667,"slug":668,"type":15},"Debugging","debugging",{"name":653,"slug":654,"type":15},"2026-07-12T08:23:25.400375",{"slug":672,"name":672,"fn":673,"description":674,"org":675,"tags":676,"stars":22,"repoUrl":23,"updatedAt":685},"android-tombstone-symbolication","symbolicate .NET runtime frames in Android tombstones","Symbolicate the .NET runtime frames in an Android tombstone file. Extracts BuildIds and PC offsets from the native backtrace, downloads debug symbols from the Microsoft symbol server, and runs llvm-symbolizer to produce function names with source file and line numbers. USE FOR triaging a .NET MAUI or Mono Android app crash from a tombstone, resolving native backtrace frames in libmonosgen-2.0.so or libcoreclr.so to .NET runtime source code, or investigating SIGABRT, SIGSEGV, or other native signals originating from the .NET runtime on Android. DO NOT USE FOR pure Java\u002FKotlin crashes, managed .NET exceptions that are already captured in logcat, or iOS crash logs. INVOKES Symbolicate-Tombstone.ps1 script, llvm-symbolizer, Microsoft symbol server.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[677,678,681,682],{"name":13,"slug":14,"type":15},{"name":679,"slug":680,"type":15},"Android","android",{"name":667,"slug":668,"type":15},{"name":683,"slug":684,"type":15},"Microsoft","microsoft","2026-07-12T08:23:21.595572",{"slug":687,"name":687,"fn":688,"description":689,"org":690,"tags":691,"stars":22,"repoUrl":23,"updatedAt":703},"apple-crash-symbolication","symbolicate .NET runtime frames in crash logs","Symbolicate .NET runtime frames in Apple platform .ips crash logs (iOS, tvOS, Mac Catalyst, macOS). Extracts UUIDs and addresses from the native backtrace, locates dSYM debug symbols, and runs atos to produce function names with source file and line numbers. Automatically downloads .dwarf symbols from the Microsoft symbol server using Mach-O UUIDs. USE FOR triaging a .NET MAUI or Mono app crash from an .ips file on any Apple platform, resolving native backtrace frames in libcoreclr or libmonosgen-2.0 to .NET runtime source code, retrieving .ips crash logs from a connected iOS device or iPhone, or investigating EXC_CRASH, EXC_BAD_ACCESS, SIGABRT, or SIGSEGV originating from the .NET runtime. DO NOT USE FOR pure Swift\u002FObjective-C crashes with no .NET components, or Android tombstone files. INVOKES Symbolicate-Crash.ps1 script, atos, dwarfdump, idevicecrashreport.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[692,693,694,697,700],{"name":13,"slug":14,"type":15},{"name":667,"slug":668,"type":15},{"name":695,"slug":696,"type":15},"iOS","ios",{"name":698,"slug":699,"type":15},"macOS","macos",{"name":701,"slug":702,"type":15},"Observability","observability","2026-07-12T08:23:20.369986",{"slug":705,"name":705,"fn":706,"description":707,"org":708,"tags":709,"stars":22,"repoUrl":23,"updatedAt":715},"assertion-quality","evaluate assertion quality in test suites","Analyzes the variety and depth of assertions across test suites in any language. Use when the user asks to evaluate assertion quality, find shallow tests, identify assertion-free tests (no assertions or only trivial ones like Assert.IsNotNull \u002F toBeTruthy()), flag self-referential or tautological assertions, measure assertion diversity, or audit whether tests verify different facets of behavior. Polyglot: .NET, Python, TS\u002FJS, Java, Go, Ruby, Rust, Swift, Kotlin, PowerShell, C++. DO NOT USE FOR: writing new tests (use code-testing-agent \u002F writing-mstest-tests), mutation reasoning about whether tests would catch a bug (use test-gap-analysis), or a general severity-ranked anti-pattern audit (use test-anti-patterns), fixing or rewriting assertions, or writing, fixing, or modernizing MSTest tests, assertions, or attributes (use writing-mstest-tests).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[710,711,714],{"name":17,"slug":18,"type":15},{"name":712,"slug":713,"type":15},"QA","qa",{"name":20,"slug":21,"type":15},"2026-07-12T08:23:51.277743",{"slug":717,"name":717,"fn":718,"description":719,"org":720,"tags":721,"stars":22,"repoUrl":23,"updatedAt":735},"author-component","create and review Blazor components","Create or review Blazor components (.razor files) with correct architecture. USE FOR: writing new Blazor components that do NOT involve JavaScript interop, implementing parameters and EventCallback, RenderFragment slots, component lifecycle (OnInitializedAsync, OnParametersSet), async patterns, IAsyncDisposable, CancellationToken, CSS isolation, code-behind. DO NOT USE FOR: creating new projects (use create-blazor-project), JavaScript interop or calling browser APIs from Blazor (use use-js-interop), forms and validation (use collect-user-input), prerendering issues (use support-prerendering), HTTP data fetching patterns (use fetch-and-send-data), coordinating state between unrelated components (use coordinate-components).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[722,723,726,729,732],{"name":13,"slug":14,"type":15},{"name":724,"slug":725,"type":15},"Blazor","blazor",{"name":727,"slug":728,"type":15},"C#","csharp",{"name":730,"slug":731,"type":15},"UI Components","ui-components",{"name":733,"slug":734,"type":15},"Web Development","web-development","2026-07-15T06:03:29.216359",{"slug":737,"name":737,"fn":738,"description":739,"org":740,"tags":741,"stars":22,"repoUrl":23,"updatedAt":745},"binlog-failure-analysis","analyze MSBuild binary logs","Analyze MSBuild binary logs to diagnose build failures. USE FOR: build errors that are unclear from console output, diagnosing cascading failures across multi-project builds, tracing MSBuild target execution order, and generally any MSBuild build issues. Requires an existing .binlog file. DO NOT USE FOR: generating binlogs (use binlog-generation), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[742,743,744],{"name":17,"slug":18,"type":15},{"name":667,"slug":668,"type":15},{"name":683,"slug":684,"type":15},"2026-07-12T08:21:34.637923",{"slug":747,"name":747,"fn":748,"description":749,"org":750,"tags":751,"stars":22,"repoUrl":23,"updatedAt":757},"binlog-generation","generate MSBuild binary logs for diagnostics","Generate MSBuild binary logs (binlogs) for build diagnostics and analysis. USE FOR: adding \u002Fbl:{} to any dotnet build, test, pack, publish, or restore command to capture a full build execution trace, prerequisite for binlog-failure-analysis and build-perf-diagnostics skills, enabling post-build investigation of errors or performance. Requires MSBuild 17.8+ \u002F .NET 8 SDK+ for {} placeholder; PowerShell needs -bl:{{}}. DO NOT USE FOR: non-MSBuild build systems (npm, Maven, CMake), analyzing an existing binlog (use binlog-failure-analysis instead).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[752,755,756],{"name":753,"slug":754,"type":15},"Build","build",{"name":667,"slug":668,"type":15},{"name":650,"slug":651,"type":15},"2026-07-19T05:38:19.340791",{"slug":759,"name":759,"fn":760,"description":761,"org":762,"tags":763,"stars":22,"repoUrl":23,"updatedAt":767},"build-parallelism","optimize MSBuild build parallelism","Diagnose and fix under-parallelized MSBuild builds. USE WHEN a multi-project solution build is slower than expected, doesn't speed up when you add cores, pegs a single core while others idle, or you want to know why `-m` isn't helping. Note: `\u002Fmaxcpucount` default is 1 (sequential) — always pass `-m` for parallel builds. Covers finding the critical path (longest serial ProjectReference chain), graph build (`\u002Fgraph`), BuildInParallel, and solution filters (`.slnf`). DO NOT USE FOR: single-project builds, incremental issues (use incremental-build), compilation slowness inside one project (use build-perf-diagnostics), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[764,765,766],{"name":13,"slug":14,"type":15},{"name":650,"slug":651,"type":15},{"name":653,"slug":654,"type":15},"2026-07-19T05:38:18.364937",{"slug":769,"name":769,"fn":770,"description":771,"org":772,"tags":773,"stars":22,"repoUrl":23,"updatedAt":780},"build-perf-baseline","establish and optimize build performance baselines","Establish build performance baselines and apply systematic optimization techniques. USE FOR: diagnosing slow builds, establishing before\u002Fafter measurements (cold, warm, no-op scenarios), applying optimization strategies like MSBuild Server, static graph builds, artifacts output, and dependency graph trimming. Start here before diving into build-perf-diagnostics, incremental-build, or build-parallelism. DO NOT USE FOR: non-MSBuild build systems, detailed bottleneck analysis (use build-perf-diagnostics after baselining).",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[774,775,778,779],{"name":650,"slug":651,"type":15},{"name":776,"slug":777,"type":15},"Monitoring","monitoring",{"name":653,"slug":654,"type":15},{"name":20,"slug":21,"type":15},"2026-07-12T08:21:35.865649",{"slug":782,"name":782,"fn":783,"description":784,"org":785,"tags":786,"stars":22,"repoUrl":23,"updatedAt":791},"build-perf-diagnostics","diagnose MSBuild build performance bottlenecks","Diagnose MSBuild build performance bottlenecks using binary log analysis. USE FOR: identifying why builds are slow by analyzing binlog performance summaries, detecting ResolveAssemblyReference (RAR) taking >5s, Roslyn analyzers consuming >30% of Csc time, single targets dominating >50% of build time, node utilization below 80%, excessive Copy tasks, NuGet restore running every build. Covers timeline analysis, Target\u002FTask Performance Summary interpretation, and 7 common bottleneck categories. Use after build-perf-baseline has established measurements. DO NOT USE FOR: establishing initial baselines (use build-perf-baseline first), fixing incremental build issues (use incremental-build), parallelism tuning (use build-parallelism), non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[787,788,789,790],{"name":13,"slug":14,"type":15},{"name":667,"slug":668,"type":15},{"name":650,"slug":651,"type":15},{"name":653,"slug":654,"type":15},"2026-07-12T08:21:40.961722",{"slug":793,"name":793,"fn":794,"description":795,"org":796,"tags":797,"stars":22,"repoUrl":23,"updatedAt":801},"check-bin-obj-clash","detect MSBuild output path conflicts","Detects MSBuild projects with conflicting OutputPath or IntermediateOutputPath. USE FOR: builds failing with 'Cannot create a file when that file already exists', 'The process cannot access the file because it is being used by another process', intermittent build failures that succeed on retry, or missing\u002Foverwritten outputs in multi-project or multi-targeting builds where bin\u002Fobj (or project.assets.json) collide. Common causes: shared OutputPath, missing AppendTargetFrameworkToOutputPath, extra global properties (e.g. PublishReadyToRun), or SetTargetFramework on a ProjectReference to a single-targeting project. DO NOT USE FOR: file access errors unrelated to MSBuild (OS-level locking), single-project single-TFM builds, non-MSBuild build systems.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[798,799,800],{"name":667,"slug":668,"type":15},{"name":650,"slug":651,"type":15},{"name":712,"slug":713,"type":15},"2026-07-19T05:38:14.336279",144,{"items":804,"total":853},[805,812,819,827,833,841,847],{"slug":659,"name":659,"fn":660,"description":661,"org":806,"tags":807,"stars":22,"repoUrl":23,"updatedAt":670},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[808,809,810,811],{"name":13,"slug":14,"type":15},{"name":17,"slug":18,"type":15},{"name":667,"slug":668,"type":15},{"name":653,"slug":654,"type":15},{"slug":672,"name":672,"fn":673,"description":674,"org":813,"tags":814,"stars":22,"repoUrl":23,"updatedAt":685},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[815,816,817,818],{"name":13,"slug":14,"type":15},{"name":679,"slug":680,"type":15},{"name":667,"slug":668,"type":15},{"name":683,"slug":684,"type":15},{"slug":687,"name":687,"fn":688,"description":689,"org":820,"tags":821,"stars":22,"repoUrl":23,"updatedAt":703},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[822,823,824,825,826],{"name":13,"slug":14,"type":15},{"name":667,"slug":668,"type":15},{"name":695,"slug":696,"type":15},{"name":698,"slug":699,"type":15},{"name":701,"slug":702,"type":15},{"slug":705,"name":705,"fn":706,"description":707,"org":828,"tags":829,"stars":22,"repoUrl":23,"updatedAt":715},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[830,831,832],{"name":17,"slug":18,"type":15},{"name":712,"slug":713,"type":15},{"name":20,"slug":21,"type":15},{"slug":717,"name":717,"fn":718,"description":719,"org":834,"tags":835,"stars":22,"repoUrl":23,"updatedAt":735},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[836,837,838,839,840],{"name":13,"slug":14,"type":15},{"name":724,"slug":725,"type":15},{"name":727,"slug":728,"type":15},{"name":730,"slug":731,"type":15},{"name":733,"slug":734,"type":15},{"slug":737,"name":737,"fn":738,"description":739,"org":842,"tags":843,"stars":22,"repoUrl":23,"updatedAt":745},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[844,845,846],{"name":17,"slug":18,"type":15},{"name":667,"slug":668,"type":15},{"name":683,"slug":684,"type":15},{"slug":747,"name":747,"fn":748,"description":749,"org":848,"tags":849,"stars":22,"repoUrl":23,"updatedAt":757},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[850,851,852],{"name":753,"slug":754,"type":15},{"name":667,"slug":668,"type":15},{"name":650,"slug":651,"type":15},96]