[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-microsoft-scenario-discovery":3,"mdc--2oby8r-key":30,"related-org-microsoft-scenario-discovery":843,"related-repo-microsoft-scenario-discovery":1040},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":26,"sourceUrl":28,"mdContent":29},"scenario-discovery","identify modernization opportunities for projects","Discover and present potential modernization (upgrade) opportunities for a solution or set of projects",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"microsoft","Microsoft","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmicrosoft.png",[12,16,17],{"name":13,"slug":14,"type":15},"Modernization","modernization","tag",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"Strategy","strategy",7,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fupgrade-agent-plugins","2026-07-07T06:54:22.564462",null,1,[],{"repoUrl":21,"stars":20,"forks":24,"topics":27,"description":23},[],"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fupgrade-agent-plugins\u002Ftree\u002FHEAD\u002Fplugins\u002Fupgrade-agent\u002Fupgrade\u002Fskills\u002Fsystem\u002Fscenario-discovery","---\r\nname: scenario-discovery\r\ndescription: Discover and present potential modernization (upgrade) opportunities for a solution or set of projects\r\nmetadata:\r\n  discovery: system\r\n---\r\n\r\n# Scenario Discovery\r\n\r\nScan the user's solution for modernization opportunities and present them clearly.\r\n\r\n## When to use\r\n\r\n- User asks \"what can I modernize?\", \"scan my repo\", \"find upgrade opportunities\", or similar exploratory requests\r\n- Post-completion \"Discover more opportunities\" flow\r\n- Any time you need to analyze a solution before the user has picked a specific scenario\r\n\r\n## Step 1 — Run discovery\r\n\r\nCall `discover_upgrade_scenarios(solutionPath, projectPath)` to analyze the solution.\r\n\r\n- Use the solution path from the workspace or from what the user provided.\r\n- If the user mentioned a specific project, pass it as `projectPath`. Otherwise, pass it empty to scan the entire solution.\r\n\r\n**If the tool returns no results:** tell the user no modernization opportunities were found for their solution and ask if they'd like to try with a different solution or project scope.\r\n\r\n## Step 2 — Present results\r\n\r\nUse the tool result and follow the format below.\r\n\r\n## Rules\r\n\r\n1. **Never mention implementation details** — do not say \"signals\", \"analysis rules\", \"ISliceNodeProvider\", \"rule instances\", or any internal mechanism. The user sees *what* was found, not *how* it was detected.\r\n2. **Never show scenario IDs** — use the scenario name\u002Fdescription only.\r\n3. **Never invent scenarios** — only present scenarios that appear in the tool result.\r\n4. **Value proposition first** — lead with *why* this matters to the user, not *what* was detected.\r\n5. **Group by priority** — scenarios are already sorted by importance\u002Fweight. Present them in the order given.\r\n\r\n## Presentation format\r\n\r\n### Header\r\n\r\n```\r\n🔍 **Found {N} modernization opportunity\u002Fopportunities**\r\n```\r\n\r\n### Scenario cards — show top 5 max\r\n\r\nPresent **at most 5** scenarios, sorted by priority (they're already sorted in the tool result). Each scenario is a block separated by `---`:\r\n\r\n```\r\n{emoji} **{Scenario name}**\r\n{Value proposition — 1-2 sentences explaining why this upgrade is valuable.}\r\n\r\nAffects: {up to 3 project names}\r\n```\r\n\r\n**Project names:**\r\n- The tool returns full project paths. Extract just the project name (file name without extension) for the summary display.\r\n- Show at most 3 names. If more: `Affects: WebApp, DataLayer, Common, and 4 more`\r\n- The full discovery report (if requested) should use full paths.\r\n\r\n**Emoji selection:**\r\n- 🚀 Version upgrades (.NET, framework)\r\n- 🗄️ Database\u002Fdata access (EF, SQL, LINQ to SQL)\r\n- 🔄 API migrations (WCF, Newtonsoft, SqlClient)\r\n- 🤖 AI\u002FML framework migrations (Semantic Kernel)\r\n- ☁️ Cloud integrations (Aspire, Azure Functions)\r\n- 🔒 Security (vulnerable packages)\r\n- 📦 Project modernization (SDK-style conversion)\r\n\r\n### Footer\r\n\r\n**If more than 5 scenarios exist**, add after the last card:\r\n\r\n```\r\n...and {M} more opportunities. Would you like me to generate a full discovery report with all of them?\r\n```\r\n\r\n**Call to action (always, after cards or overflow note):**\r\n\r\n- **1 scenario:** `Would you like me to start this upgrade?`\r\n- **2-5 scenarios:** `Which would you like to start with? I recommend **{first}** — {one-sentence reason}.`\r\n- **6+ scenarios:** `Which would you like to start with? I recommend **{first}** as the highest-priority item.`\r\n\r\n## Example output\r\n\r\n> 🔍 **Found 3 modernization opportunities**\r\n>\r\n> ---\r\n>\r\n> 🚀 **Upgrade to .NET 10**\r\n> Move your projects to .NET 10 for better performance, new language features, and long-term support.\r\n>\r\n> Affects: WebApp, DataLayer, Common, and 2 more\r\n>\r\n> ---\r\n>\r\n> 🔄 **Migrate Newtonsoft.Json to System.Text.Json**\r\n> System.Text.Json offers better performance and is the built-in JSON library in modern .NET.\r\n>\r\n> Affects: WebApp, DataLayer\r\n>\r\n> ---\r\n>\r\n> 🔒 **Fix vulnerable NuGet packages**\r\n> Some packages have known security vulnerabilities that should be addressed.\r\n>\r\n> Affects: WebApp\r\n>\r\n> ---\r\n>\r\n> Which would you like to start with? I recommend **Upgrade to .NET 10** — it's the highest-impact change and other migrations benefit from the latest framework.\r\n\r\n## Full discovery report\r\n\r\nWhen the user asks for the full report (only relevant when 6+ scenarios were found and the summary was truncated), produce a markdown document using ALL data from the tool result — no truncation.\r\n\r\n⛔ **Follow this template exactly.** Do NOT add sections, recommendations, lifecycle references, or any content beyond what the tool returned. The report presents what was *found* — not what you *think* might be useful. Unverified recommendations (e.g., \"enable nullable\", \"add Aspire\") make the report unreliable. If additional analysis is wanted, that's a separate conversation.\r\n\r\nUse this structure:\r\n\r\n~~~markdown\r\n# Discovery Report\r\n\r\n**Scenarios found:** {total count}\r\n\r\n{For each scenario, in priority order:}\r\n\r\n---\r\n\r\n## {N}. {Scenario name}\r\n\r\n{Description and value proposition — use the text from the tool result.}\r\n\r\n**Importance:** {importance level}\r\n**Affected projects:**\r\n- `{full\u002Fpath\u002Fto\u002FProjectA.csproj}`\r\n- `{full\u002Fpath\u002Fto\u002FProjectB.csproj}`\r\n~~~\r\n\r\n**That's it.** No \"Recommendations\" section, no \"Resources\" section, no \"Current Status\" section, no \"Support Lifecycle\" section. Only the scenarios and their data as returned by the tool.\r\n\r\nWrite it to the scenario folder as `discovery-report.md` if a scenario folder exists, or present it inline if no scenario is active. Confirm the path to the user after writing.\r\n",{"data":31,"body":34},{"name":4,"description":6,"metadata":32},{"discovery":33},"system",{"type":35,"children":36},"root",[37,45,51,58,78,84,98,119,130,136,141,147,229,235,242,254,260,280,289,297,321,329,367,373,383,392,400,449,455,544,550,555,581,586,814,824,837],{"type":38,"tag":39,"props":40,"children":41},"element","h1",{"id":4},[42],{"type":43,"value":44},"text","Scenario Discovery",{"type":38,"tag":46,"props":47,"children":48},"p",{},[49],{"type":43,"value":50},"Scan the user's solution for modernization opportunities and present them clearly.",{"type":38,"tag":52,"props":53,"children":55},"h2",{"id":54},"when-to-use",[56],{"type":43,"value":57},"When to use",{"type":38,"tag":59,"props":60,"children":61},"ul",{},[62,68,73],{"type":38,"tag":63,"props":64,"children":65},"li",{},[66],{"type":43,"value":67},"User asks \"what can I modernize?\", \"scan my repo\", \"find upgrade opportunities\", or similar exploratory requests",{"type":38,"tag":63,"props":69,"children":70},{},[71],{"type":43,"value":72},"Post-completion \"Discover more opportunities\" flow",{"type":38,"tag":63,"props":74,"children":75},{},[76],{"type":43,"value":77},"Any time you need to analyze a solution before the user has picked a specific scenario",{"type":38,"tag":52,"props":79,"children":81},{"id":80},"step-1-run-discovery",[82],{"type":43,"value":83},"Step 1 — Run discovery",{"type":38,"tag":46,"props":85,"children":86},{},[87,89,96],{"type":43,"value":88},"Call ",{"type":38,"tag":90,"props":91,"children":93},"code",{"className":92},[],[94],{"type":43,"value":95},"discover_upgrade_scenarios(solutionPath, projectPath)",{"type":43,"value":97}," to analyze the solution.",{"type":38,"tag":59,"props":99,"children":100},{},[101,106],{"type":38,"tag":63,"props":102,"children":103},{},[104],{"type":43,"value":105},"Use the solution path from the workspace or from what the user provided.",{"type":38,"tag":63,"props":107,"children":108},{},[109,111,117],{"type":43,"value":110},"If the user mentioned a specific project, pass it as ",{"type":38,"tag":90,"props":112,"children":114},{"className":113},[],[115],{"type":43,"value":116},"projectPath",{"type":43,"value":118},". Otherwise, pass it empty to scan the entire solution.",{"type":38,"tag":46,"props":120,"children":121},{},[122,128],{"type":38,"tag":123,"props":124,"children":125},"strong",{},[126],{"type":43,"value":127},"If the tool returns no results:",{"type":43,"value":129}," tell the user no modernization opportunities were found for their solution and ask if they'd like to try with a different solution or project scope.",{"type":38,"tag":52,"props":131,"children":133},{"id":132},"step-2-present-results",[134],{"type":43,"value":135},"Step 2 — Present results",{"type":38,"tag":46,"props":137,"children":138},{},[139],{"type":43,"value":140},"Use the tool result and follow the format below.",{"type":38,"tag":52,"props":142,"children":144},{"id":143},"rules",[145],{"type":43,"value":146},"Rules",{"type":38,"tag":148,"props":149,"children":150},"ol",{},[151,176,186,196,219],{"type":38,"tag":63,"props":152,"children":153},{},[154,159,161,167,169,174],{"type":38,"tag":123,"props":155,"children":156},{},[157],{"type":43,"value":158},"Never mention implementation details",{"type":43,"value":160}," — do not say \"signals\", \"analysis rules\", \"ISliceNodeProvider\", \"rule instances\", or any internal mechanism. The user sees ",{"type":38,"tag":162,"props":163,"children":164},"em",{},[165],{"type":43,"value":166},"what",{"type":43,"value":168}," was found, not ",{"type":38,"tag":162,"props":170,"children":171},{},[172],{"type":43,"value":173},"how",{"type":43,"value":175}," it was detected.",{"type":38,"tag":63,"props":177,"children":178},{},[179,184],{"type":38,"tag":123,"props":180,"children":181},{},[182],{"type":43,"value":183},"Never show scenario IDs",{"type":43,"value":185}," — use the scenario name\u002Fdescription only.",{"type":38,"tag":63,"props":187,"children":188},{},[189,194],{"type":38,"tag":123,"props":190,"children":191},{},[192],{"type":43,"value":193},"Never invent scenarios",{"type":43,"value":195}," — only present scenarios that appear in the tool result.",{"type":38,"tag":63,"props":197,"children":198},{},[199,204,206,211,213,217],{"type":38,"tag":123,"props":200,"children":201},{},[202],{"type":43,"value":203},"Value proposition first",{"type":43,"value":205}," — lead with ",{"type":38,"tag":162,"props":207,"children":208},{},[209],{"type":43,"value":210},"why",{"type":43,"value":212}," this matters to the user, not ",{"type":38,"tag":162,"props":214,"children":215},{},[216],{"type":43,"value":166},{"type":43,"value":218}," was detected.",{"type":38,"tag":63,"props":220,"children":221},{},[222,227],{"type":38,"tag":123,"props":223,"children":224},{},[225],{"type":43,"value":226},"Group by priority",{"type":43,"value":228}," — scenarios are already sorted by importance\u002Fweight. Present them in the order given.",{"type":38,"tag":52,"props":230,"children":232},{"id":231},"presentation-format",[233],{"type":43,"value":234},"Presentation format",{"type":38,"tag":236,"props":237,"children":239},"h3",{"id":238},"header",[240],{"type":43,"value":241},"Header",{"type":38,"tag":243,"props":244,"children":248},"pre",{"className":245,"code":247,"language":43},[246],"language-text","🔍 **Found {N} modernization opportunity\u002Fopportunities**\n",[249],{"type":38,"tag":90,"props":250,"children":252},{"__ignoreMap":251},"",[253],{"type":43,"value":247},{"type":38,"tag":236,"props":255,"children":257},{"id":256},"scenario-cards-show-top-5-max",[258],{"type":43,"value":259},"Scenario cards — show top 5 max",{"type":38,"tag":46,"props":261,"children":262},{},[263,265,270,272,278],{"type":43,"value":264},"Present ",{"type":38,"tag":123,"props":266,"children":267},{},[268],{"type":43,"value":269},"at most 5",{"type":43,"value":271}," scenarios, sorted by priority (they're already sorted in the tool result). Each scenario is a block separated by ",{"type":38,"tag":90,"props":273,"children":275},{"className":274},[],[276],{"type":43,"value":277},"---",{"type":43,"value":279},":",{"type":38,"tag":243,"props":281,"children":284},{"className":282,"code":283,"language":43},[246],"{emoji} **{Scenario name}**\n{Value proposition — 1-2 sentences explaining why this upgrade is valuable.}\n\nAffects: {up to 3 project names}\n",[285],{"type":38,"tag":90,"props":286,"children":287},{"__ignoreMap":251},[288],{"type":43,"value":283},{"type":38,"tag":46,"props":290,"children":291},{},[292],{"type":38,"tag":123,"props":293,"children":294},{},[295],{"type":43,"value":296},"Project names:",{"type":38,"tag":59,"props":298,"children":299},{},[300,305,316],{"type":38,"tag":63,"props":301,"children":302},{},[303],{"type":43,"value":304},"The tool returns full project paths. Extract just the project name (file name without extension) for the summary display.",{"type":38,"tag":63,"props":306,"children":307},{},[308,310],{"type":43,"value":309},"Show at most 3 names. If more: ",{"type":38,"tag":90,"props":311,"children":313},{"className":312},[],[314],{"type":43,"value":315},"Affects: WebApp, DataLayer, Common, and 4 more",{"type":38,"tag":63,"props":317,"children":318},{},[319],{"type":43,"value":320},"The full discovery report (if requested) should use full paths.",{"type":38,"tag":46,"props":322,"children":323},{},[324],{"type":38,"tag":123,"props":325,"children":326},{},[327],{"type":43,"value":328},"Emoji selection:",{"type":38,"tag":59,"props":330,"children":331},{},[332,337,342,347,352,357,362],{"type":38,"tag":63,"props":333,"children":334},{},[335],{"type":43,"value":336},"🚀 Version upgrades (.NET, framework)",{"type":38,"tag":63,"props":338,"children":339},{},[340],{"type":43,"value":341},"🗄️ Database\u002Fdata access (EF, SQL, LINQ to SQL)",{"type":38,"tag":63,"props":343,"children":344},{},[345],{"type":43,"value":346},"🔄 API migrations (WCF, Newtonsoft, SqlClient)",{"type":38,"tag":63,"props":348,"children":349},{},[350],{"type":43,"value":351},"🤖 AI\u002FML framework migrations (Semantic Kernel)",{"type":38,"tag":63,"props":353,"children":354},{},[355],{"type":43,"value":356},"☁️ Cloud integrations (Aspire, Azure Functions)",{"type":38,"tag":63,"props":358,"children":359},{},[360],{"type":43,"value":361},"🔒 Security (vulnerable packages)",{"type":38,"tag":63,"props":363,"children":364},{},[365],{"type":43,"value":366},"📦 Project modernization (SDK-style conversion)",{"type":38,"tag":236,"props":368,"children":370},{"id":369},"footer",[371],{"type":43,"value":372},"Footer",{"type":38,"tag":46,"props":374,"children":375},{},[376,381],{"type":38,"tag":123,"props":377,"children":378},{},[379],{"type":43,"value":380},"If more than 5 scenarios exist",{"type":43,"value":382},", add after the last card:",{"type":38,"tag":243,"props":384,"children":387},{"className":385,"code":386,"language":43},[246],"...and {M} more opportunities. Would you like me to generate a full discovery report with all of them?\n",[388],{"type":38,"tag":90,"props":389,"children":390},{"__ignoreMap":251},[391],{"type":43,"value":386},{"type":38,"tag":46,"props":393,"children":394},{},[395],{"type":38,"tag":123,"props":396,"children":397},{},[398],{"type":43,"value":399},"Call to action (always, after cards or overflow note):",{"type":38,"tag":59,"props":401,"children":402},{},[403,419,434],{"type":38,"tag":63,"props":404,"children":405},{},[406,411,413],{"type":38,"tag":123,"props":407,"children":408},{},[409],{"type":43,"value":410},"1 scenario:",{"type":43,"value":412}," ",{"type":38,"tag":90,"props":414,"children":416},{"className":415},[],[417],{"type":43,"value":418},"Would you like me to start this upgrade?",{"type":38,"tag":63,"props":420,"children":421},{},[422,427,428],{"type":38,"tag":123,"props":423,"children":424},{},[425],{"type":43,"value":426},"2-5 scenarios:",{"type":43,"value":412},{"type":38,"tag":90,"props":429,"children":431},{"className":430},[],[432],{"type":43,"value":433},"Which would you like to start with? I recommend **{first}** — {one-sentence reason}.",{"type":38,"tag":63,"props":435,"children":436},{},[437,442,443],{"type":38,"tag":123,"props":438,"children":439},{},[440],{"type":43,"value":441},"6+ scenarios:",{"type":43,"value":412},{"type":38,"tag":90,"props":444,"children":446},{"className":445},[],[447],{"type":43,"value":448},"Which would you like to start with? I recommend **{first}** as the highest-priority item.",{"type":38,"tag":52,"props":450,"children":452},{"id":451},"example-output",[453],{"type":43,"value":454},"Example output",{"type":38,"tag":456,"props":457,"children":458},"blockquote",{},[459,469,473,485,490,493,505,510,513,525,530,533],{"type":38,"tag":46,"props":460,"children":461},{},[462,464],{"type":43,"value":463},"🔍 ",{"type":38,"tag":123,"props":465,"children":466},{},[467],{"type":43,"value":468},"Found 3 modernization opportunities",{"type":38,"tag":470,"props":471,"children":472},"hr",{},[],{"type":38,"tag":46,"props":474,"children":475},{},[476,478,483],{"type":43,"value":477},"🚀 ",{"type":38,"tag":123,"props":479,"children":480},{},[481],{"type":43,"value":482},"Upgrade to .NET 10",{"type":43,"value":484},"\nMove your projects to .NET 10 for better performance, new language features, and long-term support.",{"type":38,"tag":46,"props":486,"children":487},{},[488],{"type":43,"value":489},"Affects: WebApp, DataLayer, Common, and 2 more",{"type":38,"tag":470,"props":491,"children":492},{},[],{"type":38,"tag":46,"props":494,"children":495},{},[496,498,503],{"type":43,"value":497},"🔄 ",{"type":38,"tag":123,"props":499,"children":500},{},[501],{"type":43,"value":502},"Migrate Newtonsoft.Json to System.Text.Json",{"type":43,"value":504},"\nSystem.Text.Json offers better performance and is the built-in JSON library in modern .NET.",{"type":38,"tag":46,"props":506,"children":507},{},[508],{"type":43,"value":509},"Affects: WebApp, DataLayer",{"type":38,"tag":470,"props":511,"children":512},{},[],{"type":38,"tag":46,"props":514,"children":515},{},[516,518,523],{"type":43,"value":517},"🔒 ",{"type":38,"tag":123,"props":519,"children":520},{},[521],{"type":43,"value":522},"Fix vulnerable NuGet packages",{"type":43,"value":524},"\nSome packages have known security vulnerabilities that should be addressed.",{"type":38,"tag":46,"props":526,"children":527},{},[528],{"type":43,"value":529},"Affects: WebApp",{"type":38,"tag":470,"props":531,"children":532},{},[],{"type":38,"tag":46,"props":534,"children":535},{},[536,538,542],{"type":43,"value":537},"Which would you like to start with? I recommend ",{"type":38,"tag":123,"props":539,"children":540},{},[541],{"type":43,"value":482},{"type":43,"value":543}," — it's the highest-impact change and other migrations benefit from the latest framework.",{"type":38,"tag":52,"props":545,"children":547},{"id":546},"full-discovery-report",[548],{"type":43,"value":549},"Full discovery report",{"type":38,"tag":46,"props":551,"children":552},{},[553],{"type":43,"value":554},"When the user asks for the full report (only relevant when 6+ scenarios were found and the summary was truncated), produce a markdown document using ALL data from the tool result — no truncation.",{"type":38,"tag":46,"props":556,"children":557},{},[558,560,565,567,572,574,579],{"type":43,"value":559},"⛔ ",{"type":38,"tag":123,"props":561,"children":562},{},[563],{"type":43,"value":564},"Follow this template exactly.",{"type":43,"value":566}," Do NOT add sections, recommendations, lifecycle references, or any content beyond what the tool returned. The report presents what was ",{"type":38,"tag":162,"props":568,"children":569},{},[570],{"type":43,"value":571},"found",{"type":43,"value":573}," — not what you ",{"type":38,"tag":162,"props":575,"children":576},{},[577],{"type":43,"value":578},"think",{"type":43,"value":580}," might be useful. Unverified recommendations (e.g., \"enable nullable\", \"add Aspire\") make the report unreliable. If additional analysis is wanted, that's a separate conversation.",{"type":38,"tag":46,"props":582,"children":583},{},[584],{"type":43,"value":585},"Use this structure:",{"type":38,"tag":243,"props":587,"children":591},{"className":588,"code":589,"language":590,"meta":251,"style":251},"language-markdown shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","# Discovery Report\n\n**Scenarios found:** {total count}\n\n{For each scenario, in priority order:}\n\n---\n\n## {N}. {Scenario name}\n\n{Description and value proposition — use the text from the tool result.}\n\n**Importance:** {importance level}\n**Affected projects:**\n- `{full\u002Fpath\u002Fto\u002FProjectA.csproj}`\n- `{full\u002Fpath\u002Fto\u002FProjectB.csproj}`\n","markdown",[592],{"type":38,"tag":90,"props":593,"children":594},{"__ignoreMap":251},[595,612,622,648,656,665,673,681,689,703,711,720,728,750,768,793],{"type":38,"tag":596,"props":597,"children":599},"span",{"class":598,"line":24},"line",[600,606],{"type":38,"tag":596,"props":601,"children":603},{"style":602},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[604],{"type":43,"value":605},"# ",{"type":38,"tag":596,"props":607,"children":609},{"style":608},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[610],{"type":43,"value":611},"Discovery Report\n",{"type":38,"tag":596,"props":613,"children":615},{"class":598,"line":614},2,[616],{"type":38,"tag":596,"props":617,"children":619},{"emptyLinePlaceholder":618},true,[620],{"type":43,"value":621},"\n",{"type":38,"tag":596,"props":623,"children":625},{"class":598,"line":624},3,[626,632,638,642],{"type":38,"tag":596,"props":627,"children":629},{"style":628},"--shiki-light:#39ADB5;--shiki-light-font-weight:bold;--shiki-default:#89DDFF;--shiki-default-font-weight:bold;--shiki-dark:#89DDFF;--shiki-dark-font-weight:bold",[630],{"type":43,"value":631},"**",{"type":38,"tag":596,"props":633,"children":635},{"style":634},"--shiki-light:#E53935;--shiki-light-font-weight:bold;--shiki-default:#F07178;--shiki-default-font-weight:bold;--shiki-dark:#F07178;--shiki-dark-font-weight:bold",[636],{"type":43,"value":637},"Scenarios found:",{"type":38,"tag":596,"props":639,"children":640},{"style":628},[641],{"type":43,"value":631},{"type":38,"tag":596,"props":643,"children":645},{"style":644},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[646],{"type":43,"value":647}," {total count}\n",{"type":38,"tag":596,"props":649,"children":651},{"class":598,"line":650},4,[652],{"type":38,"tag":596,"props":653,"children":654},{"emptyLinePlaceholder":618},[655],{"type":43,"value":621},{"type":38,"tag":596,"props":657,"children":659},{"class":598,"line":658},5,[660],{"type":38,"tag":596,"props":661,"children":662},{"style":644},[663],{"type":43,"value":664},"{For each scenario, in priority order:}\n",{"type":38,"tag":596,"props":666,"children":668},{"class":598,"line":667},6,[669],{"type":38,"tag":596,"props":670,"children":671},{"emptyLinePlaceholder":618},[672],{"type":43,"value":621},{"type":38,"tag":596,"props":674,"children":675},{"class":598,"line":20},[676],{"type":38,"tag":596,"props":677,"children":678},{"style":602},[679],{"type":43,"value":680},"---\n",{"type":38,"tag":596,"props":682,"children":684},{"class":598,"line":683},8,[685],{"type":38,"tag":596,"props":686,"children":687},{"emptyLinePlaceholder":618},[688],{"type":43,"value":621},{"type":38,"tag":596,"props":690,"children":692},{"class":598,"line":691},9,[693,698],{"type":38,"tag":596,"props":694,"children":695},{"style":602},[696],{"type":43,"value":697},"## ",{"type":38,"tag":596,"props":699,"children":700},{"style":608},[701],{"type":43,"value":702},"{N}. {Scenario name}\n",{"type":38,"tag":596,"props":704,"children":706},{"class":598,"line":705},10,[707],{"type":38,"tag":596,"props":708,"children":709},{"emptyLinePlaceholder":618},[710],{"type":43,"value":621},{"type":38,"tag":596,"props":712,"children":714},{"class":598,"line":713},11,[715],{"type":38,"tag":596,"props":716,"children":717},{"style":644},[718],{"type":43,"value":719},"{Description and value proposition — use the text from the tool result.}\n",{"type":38,"tag":596,"props":721,"children":723},{"class":598,"line":722},12,[724],{"type":38,"tag":596,"props":725,"children":726},{"emptyLinePlaceholder":618},[727],{"type":43,"value":621},{"type":38,"tag":596,"props":729,"children":731},{"class":598,"line":730},13,[732,736,741,745],{"type":38,"tag":596,"props":733,"children":734},{"style":628},[735],{"type":43,"value":631},{"type":38,"tag":596,"props":737,"children":738},{"style":634},[739],{"type":43,"value":740},"Importance:",{"type":38,"tag":596,"props":742,"children":743},{"style":628},[744],{"type":43,"value":631},{"type":38,"tag":596,"props":746,"children":747},{"style":644},[748],{"type":43,"value":749}," {importance level}\n",{"type":38,"tag":596,"props":751,"children":753},{"class":598,"line":752},14,[754,758,763],{"type":38,"tag":596,"props":755,"children":756},{"style":628},[757],{"type":43,"value":631},{"type":38,"tag":596,"props":759,"children":760},{"style":634},[761],{"type":43,"value":762},"Affected projects:",{"type":38,"tag":596,"props":764,"children":765},{"style":628},[766],{"type":43,"value":767},"**\n",{"type":38,"tag":596,"props":769,"children":771},{"class":598,"line":770},15,[772,777,782,788],{"type":38,"tag":596,"props":773,"children":774},{"style":602},[775],{"type":43,"value":776},"-",{"type":38,"tag":596,"props":778,"children":779},{"style":602},[780],{"type":43,"value":781}," `",{"type":38,"tag":596,"props":783,"children":785},{"style":784},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[786],{"type":43,"value":787},"{full\u002Fpath\u002Fto\u002FProjectA.csproj}",{"type":38,"tag":596,"props":789,"children":790},{"style":602},[791],{"type":43,"value":792},"`\n",{"type":38,"tag":596,"props":794,"children":796},{"class":598,"line":795},16,[797,801,805,810],{"type":38,"tag":596,"props":798,"children":799},{"style":602},[800],{"type":43,"value":776},{"type":38,"tag":596,"props":802,"children":803},{"style":602},[804],{"type":43,"value":781},{"type":38,"tag":596,"props":806,"children":807},{"style":784},[808],{"type":43,"value":809},"{full\u002Fpath\u002Fto\u002FProjectB.csproj}",{"type":38,"tag":596,"props":811,"children":812},{"style":602},[813],{"type":43,"value":792},{"type":38,"tag":46,"props":815,"children":816},{},[817,822],{"type":38,"tag":123,"props":818,"children":819},{},[820],{"type":43,"value":821},"That's it.",{"type":43,"value":823}," No \"Recommendations\" section, no \"Resources\" section, no \"Current Status\" section, no \"Support Lifecycle\" section. Only the scenarios and their data as returned by the tool.",{"type":38,"tag":46,"props":825,"children":826},{},[827,829,835],{"type":43,"value":828},"Write it to the scenario folder as ",{"type":38,"tag":90,"props":830,"children":832},{"className":831},[],[833],{"type":43,"value":834},"discovery-report.md",{"type":43,"value":836}," if a scenario folder exists, or present it inline if no scenario is active. Confirm the path to the user after writing.",{"type":38,"tag":838,"props":839,"children":840},"style",{},[841],{"type":43,"value":842},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":844,"total":1039},[845,867,888,909,924,941,952,965,980,995,1014,1027],{"slug":846,"name":846,"fn":847,"description":848,"org":849,"tags":850,"stars":864,"repoUrl":865,"updatedAt":866},"rushstack-best-practices","manage Rush monorepos with best practices","Provides best practices and guidance for working with Rush monorepos. Use when the user is working in a Rush-based repository, asks about Rush commands (install, update, build, rebuild), needs help with project selection, dependency management, build caching, subspace configuration, or troubleshooting Rush-specific issues.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[851,854,857,858,861],{"name":852,"slug":853,"type":15},"Engineering","engineering",{"name":855,"slug":856,"type":15},"Local Development","local-development",{"name":9,"slug":8,"type":15},{"name":859,"slug":860,"type":15},"Project Management","project-management",{"name":862,"slug":863,"type":15},"Rush","rush",6484,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Frushstack","2026-04-06T18:34:44.965032",{"slug":868,"name":868,"fn":869,"description":870,"org":871,"tags":872,"stars":885,"repoUrl":886,"updatedAt":887},"azure-ai-agents-persistent-dotnet","build AI agents with Azure .NET SDK","Azure AI Agents Persistent SDK for .NET. Low-level SDK for creating and managing AI agents with threads, messages, runs, and tools. Use for agent CRUD, conversation threads, streaming responses, function calling, file search, and code interpreter. Triggers: \"PersistentAgentsClient\", \"persistent agents\", \"agent threads\", \"agent runs\", \"streaming agents\", \"function calling agents .NET\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[873,876,879,882],{"name":874,"slug":875,"type":15},".NET","net",{"name":877,"slug":878,"type":15},"Agents","agents",{"name":880,"slug":881,"type":15},"Azure","azure",{"name":883,"slug":884,"type":15},"LLM","llm",2804,"https:\u002F\u002Fgithub.com\u002Fmicrosoft\u002Fskills","2026-07-03T16:32:10.297433",{"slug":889,"name":889,"fn":890,"description":891,"org":892,"tags":893,"stars":885,"repoUrl":886,"updatedAt":908},"azure-ai-anomalydetector-java","build anomaly detection applications with Java","Build anomaly detection applications with Azure AI Anomaly Detector SDK for Java. Use when implementing univariate\u002Fmultivariate anomaly detection, time-series analysis, or AI-powered monitoring.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[894,897,898,901,904,905],{"name":895,"slug":896,"type":15},"Analytics","analytics",{"name":880,"slug":881,"type":15},{"name":899,"slug":900,"type":15},"Data Analysis","data-analysis",{"name":902,"slug":903,"type":15},"Java","java",{"name":9,"slug":8,"type":15},{"name":906,"slug":907,"type":15},"Monitoring","monitoring","2026-05-13T06:14:16.261754",{"slug":910,"name":910,"fn":911,"description":912,"org":913,"tags":914,"stars":885,"repoUrl":886,"updatedAt":923},"azure-ai-contentsafety-java","build content moderation applications with Azure AI","Build content moderation applications with Azure AI Content Safety SDK for Java. Use when implementing text\u002Fimage analysis, blocklist management, or harm detection for hate, violence, sexual content, and self-harm.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[915,918,919,920],{"name":916,"slug":917,"type":15},"AI Infrastructure","ai-infrastructure",{"name":880,"slug":881,"type":15},{"name":902,"slug":903,"type":15},{"name":921,"slug":922,"type":15},"Security","security","2026-07-07T06:53:31.293235",{"slug":925,"name":925,"fn":926,"description":927,"org":928,"tags":929,"stars":885,"repoUrl":886,"updatedAt":940},"azure-ai-contentsafety-py","detect harmful content with Azure AI Content Safety","Azure AI Content Safety SDK for Python. Use for detecting harmful content in text and images with multi-severity classification.\nTriggers: \"azure-ai-contentsafety\", \"ContentSafetyClient\", \"content moderation\", \"harmful content\", \"text analysis\", \"image analysis\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[930,931,934,935,936,939],{"name":880,"slug":881,"type":15},{"name":932,"slug":933,"type":15},"Compliance","compliance",{"name":883,"slug":884,"type":15},{"name":9,"slug":8,"type":15},{"name":937,"slug":938,"type":15},"Python","python",{"name":921,"slug":922,"type":15},"2026-07-18T05:14:23.017504",{"slug":942,"name":942,"fn":943,"description":944,"org":945,"tags":946,"stars":885,"repoUrl":886,"updatedAt":951},"azure-ai-language-conversations-py","implement conversational language understanding with Python","Implement Conversational Language Understanding (CLU) using the azure-ai-language-conversations Python SDK. Use when working with ConversationAnalysisClient to analyze conversation intent and entities, building NLP features, or integrating language understanding into applications.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[947,948,949,950],{"name":895,"slug":896,"type":15},{"name":880,"slug":881,"type":15},{"name":883,"slug":884,"type":15},{"name":937,"slug":938,"type":15},"2026-07-31T05:54:29.068751",{"slug":953,"name":953,"fn":954,"description":955,"org":956,"tags":957,"stars":885,"repoUrl":886,"updatedAt":964},"azure-ai-translation-text-py","translate text using Azure AI services","Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup. Use for translating text content in applications.\nTriggers: \"text translation\", \"translator\", \"translate text\", \"transliterate\", \"TextTranslationClient\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[958,961,962,963],{"name":959,"slug":960,"type":15},"API Development","api-development",{"name":880,"slug":881,"type":15},{"name":9,"slug":8,"type":15},{"name":937,"slug":938,"type":15},"2026-07-18T05:14:16.988376",{"slug":966,"name":966,"fn":967,"description":968,"org":969,"tags":970,"stars":885,"repoUrl":886,"updatedAt":979},"azure-ai-vision-imageanalysis-py","analyze images with Azure AI Vision","Azure AI Vision Image Analysis SDK for captions, tags, objects, OCR, people detection, and smart cropping. Use for computer vision and image understanding tasks.\nTriggers: \"image analysis\", \"computer vision\", \"OCR\", \"object detection\", \"ImageAnalysisClient\", \"image caption\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[971,972,975,978],{"name":880,"slug":881,"type":15},{"name":973,"slug":974,"type":15},"Computer Vision","computer-vision",{"name":976,"slug":977,"type":15},"Images","images",{"name":937,"slug":938,"type":15},"2026-07-18T05:14:18.007737",{"slug":981,"name":981,"fn":982,"description":983,"org":984,"tags":985,"stars":885,"repoUrl":886,"updatedAt":994},"azure-appconfiguration-java","manage configuration with Azure App Configuration","Azure App Configuration SDK for Java. Centralized application configuration management with key-value settings, feature flags, and snapshots.\nTriggers: \"ConfigurationClient java\", \"app configuration java\", \"feature flag java\", \"configuration setting java\", \"azure config java\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[986,987,990,993],{"name":880,"slug":881,"type":15},{"name":988,"slug":989,"type":15},"Configuration","configuration",{"name":991,"slug":992,"type":15},"Feature Flags","feature-flags",{"name":902,"slug":903,"type":15},"2026-07-03T16:32:01.278468",{"slug":996,"name":996,"fn":997,"description":998,"org":999,"tags":1000,"stars":885,"repoUrl":886,"updatedAt":1013},"azure-cosmos-rust","build applications with Azure Cosmos DB","Azure Cosmos DB library for Rust (NoSQL API). Document CRUD, containers, and globally distributed data.\nTriggers: \"cosmos db rust\", \"CosmosClient rust\", \"document crud rust\", \"NoSQL rust\", \"partition key rust\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1001,1004,1007,1010],{"name":1002,"slug":1003,"type":15},"Cosmos DB","cosmos-db",{"name":1005,"slug":1006,"type":15},"Database","database",{"name":1008,"slug":1009,"type":15},"NoSQL","nosql",{"name":1011,"slug":1012,"type":15},"Rust","rust","2026-07-31T05:54:27.021432",{"slug":1015,"name":1015,"fn":997,"description":1016,"org":1017,"tags":1018,"stars":885,"repoUrl":886,"updatedAt":1026},"azure-cosmos-ts","Azure Cosmos DB JavaScript\u002FTypeScript SDK (@azure\u002Fcosmos) for data plane operations. Use for CRUD operations on documents, queries, bulk operations, and container management. Triggers: \"Cosmos DB\", \"@azure\u002Fcosmos\", \"CosmosClient\", \"document CRUD\", \"NoSQL queries\", \"bulk operations\", \"partition key\", \"container.items\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1019,1020,1021,1022,1023],{"name":1002,"slug":1003,"type":15},{"name":1005,"slug":1006,"type":15},{"name":9,"slug":8,"type":15},{"name":1008,"slug":1009,"type":15},{"name":1024,"slug":1025,"type":15},"TypeScript","typescript","2026-07-03T16:31:19.368382",{"slug":1028,"name":1028,"fn":1029,"description":1030,"org":1031,"tags":1032,"stars":885,"repoUrl":886,"updatedAt":1038},"azure-data-tables-java","build table storage applications with Java","Build table storage applications with Azure Tables SDK for Java. Use when working with Azure Table Storage or Cosmos DB Table API for NoSQL key-value data, schemaless storage, or structured data at scale.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1033,1034,1035,1036,1037],{"name":880,"slug":881,"type":15},{"name":1002,"slug":1003,"type":15},{"name":1005,"slug":1006,"type":15},{"name":902,"slug":903,"type":15},{"name":1008,"slug":1009,"type":15},"2026-05-13T06:14:17.582229",267,{"items":1041,"total":1133},[1042,1054,1068,1085,1095,1110,1121],{"slug":1043,"name":1043,"fn":1044,"description":1045,"org":1046,"tags":1047,"stars":20,"repoUrl":21,"updatedAt":1053},"converting-to-cpm","migrate .NET projects to Central Package Management","Converts .NET projects and solutions to NuGet Central Package Management (CPM) with Directory.Packages.props. Use when the user wants to centralize, convert, align, or sync NuGet package versions across multiple projects, resolve version conflicts or mismatches, or get versions consistent across a solution or repository. Also triggers when packages are out of sync or drifting across projects.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1048,1049,1050],{"name":874,"slug":875,"type":15},{"name":9,"slug":8,"type":15},{"name":1051,"slug":1052,"type":15},"Migration","migration","2026-07-18T05:14:13.971821",{"slug":1055,"name":1055,"fn":1056,"description":1057,"org":1058,"tags":1059,"stars":20,"repoUrl":21,"updatedAt":1067},"creating-winforms-custom-controls","create custom WinForms controls","Creates custom controls and UserControls for modern WinForms (.NET 6+). Use when deriving from Control, UserControl, Button, TextBox, or other base controls, implementing custom rendering with OnPaint overrides, creating composite controls with child control composition, adding custom properties with [Browsable], [Category], or [DefaultValue] attributes for Designer support, implementing INotifyPropertyChanged for control properties, handling Layout\u002FLayoutEngine for custom sizing, creating scrollable controls with AutoScrollMinSize, implementing dark mode theming, or building List\u002FGrid\u002FTree-like controls. Also triggers for \"custom UserControl\", \"derive from Control\", \"owner-drawn control\", \"Designer properties\", \"[Browsable] attribute\", \"custom WinForms control\", \"LayoutEngine\", \"AutoScroll control\", and \"themed control\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1060,1061,1064],{"name":874,"slug":875,"type":15},{"name":1062,"slug":1063,"type":15},"Windows","windows",{"name":1065,"slug":1066,"type":15},"WinUI","winui","2026-07-03T16:31:30.1325",{"slug":1069,"name":1069,"fn":1070,"description":1071,"org":1072,"tags":1073,"stars":20,"repoUrl":21,"updatedAt":1084},"managing-winforms-high-dpi-layout","design high-DPI responsive WinForms layouts","Implements WinForms high-DPI fluent layouts using TableLayoutPanel, FlowLayoutPanel, and DPI-aware design patterns. Use when creating responsive form layouts that must scale across different DPI settings, implementing Per Monitor V2 (PerMonitorV2) DPI awareness, working with TableLayoutPanel.RowStyles\u002FColumnStyles, using FlowLayoutPanel for dynamic layouts, replacing fixed pixel positioning with container-based layout, troubleshooting DPI scaling issues, or structuring nested layout containers. Also triggers for \"TableLayoutPanel\", \"FlowLayoutPanel\", \"high DPI WinForms\", \"PerMonitorV2\", \"DPI aware layout\", \"responsive WinForms\", \"scale UI\", \"AutoScaleMode\", and \"DPI scaling\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1074,1077,1080,1083],{"name":1075,"slug":1076,"type":15},"Design","design",{"name":1078,"slug":1079,"type":15},"Desktop","desktop",{"name":1081,"slug":1082,"type":15},"UI Components","ui-components",{"name":1062,"slug":1063,"type":15},"2026-07-18T05:14:12.982806",{"slug":1086,"name":1086,"fn":1087,"description":1088,"org":1089,"tags":1090,"stars":20,"repoUrl":21,"updatedAt":1094},"managing-winforms-mvvm","implement MVVM pattern in WinForms","Implements MVVM pattern in WinForms applications (.NET 8+) with ViewModels, Commands, and DataContext. Use when user explicitly requests MVVM implementation, setting up ViewModel with INotifyPropertyChanged or ObservableObject, implementing ICommand or RelayCommand, wiring Form.DataContext, binding controls to ViewModel properties, creating Commands for button clicks, or separating business logic from UI code. Also triggers for \"WinForms MVVM\", \"ViewModel in WinForms\", \"INotifyPropertyChanged\", \"DataContext binding\", \"Command pattern WinForms\", \"ObservableObject\", \"RelayCommand\", and \"testable WinForms\". Also use when fixing existing MVVM code or when guided by winforms-feature-adoption scenario. DO NOT USE FOR: automatic application during version upgrades (opt-in only).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1091,1092,1093],{"name":874,"slug":875,"type":15},{"name":1062,"slug":1063,"type":15},{"name":1065,"slug":1066,"type":15},"2026-07-18T05:14:11.951511",{"slug":1096,"name":1096,"fn":1097,"description":1098,"org":1099,"tags":1100,"stars":20,"repoUrl":21,"updatedAt":1109},"migrating-aspnet-framework-to-core","migrate ASP.NET Framework to Core","Orchestrates migration of ASP.NET Framework (System.Web) MVC and WebAPI projects to ASP.NET Core. Covers only old .NET Framework web projects — not applicable to ASP.NET Core or modern .NET web projects (those are already on the target stack). Defines the ordered phase sequence (project file, host, config, DI, controllers, middleware, auth, views, cleanup), satellite skill dispatch, and migration unit breakdown for both in-place and side-by-side modes. Use when executing a task that upgrades a project with System.Web dependencies, HttpModules, HttpHandlers, MVC controllers, WebAPI controllers, or Global.asax. Also triggers for \"migrate ASP.NET to Core\", \"upgrade MVC project\", \"convert WebAPI to ASP.NET Core\". Not applicable to class libraries unless they directly reference System.Web.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1101,1102,1105,1108],{"name":874,"slug":875,"type":15},{"name":1103,"slug":1104,"type":15},"ASP.NET Core","asp-net-core",{"name":1106,"slug":1107,"type":15},"Backend","backend",{"name":1051,"slug":1052,"type":15},"2026-07-03T16:30:55.581898",{"slug":1111,"name":1111,"fn":1112,"description":1113,"org":1114,"tags":1115,"stars":20,"repoUrl":21,"updatedAt":1120},"migrating-documentdb-to-cosmos","migrate DocumentDB to Cosmos DB","Migrates from the deprecated Microsoft.Azure.DocumentDB SDK (V2) to the modern Microsoft.Azure.Cosmos SDK (V3) for Azure Cosmos DB. Use ONLY when Microsoft.Azure.DocumentDB has been flagged as deprecated or obsolete and must be replaced — not for version-bump scenarios where the V2 SDK is still supported.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1116,1117,1118,1119],{"name":880,"slug":881,"type":15},{"name":1002,"slug":1003,"type":15},{"name":1005,"slug":1006,"type":15},{"name":1051,"slug":1052,"type":15},"2026-07-03T16:31:21.932144",{"slug":1122,"name":1122,"fn":1123,"description":1124,"org":1125,"tags":1126,"stars":20,"repoUrl":21,"updatedAt":1132},"migrating-global-asax","migrate Global.asax to ASP.NET Core middleware","Migrates Global.asax application lifecycle events to ASP.NET Core middleware, startup configuration, and Program.cs. Use when upgrading ASP.NET Framework apps containing Global.asax or Global.asax.cs files. Triggers for \"migrate Global.asax\", \"convert application events\", \"move Application_Start to Program.cs\", \"replace Global.asax with middleware\", and ASP.NET-to-Core migration involving request lifecycle, error handling, or session management.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1127,1129,1130,1131],{"name":1103,"slug":1128,"type":15},"aspnet-core",{"name":9,"slug":8,"type":15},{"name":1051,"slug":1052,"type":15},{"name":13,"slug":14,"type":15},"2026-07-07T06:54:34.226435",19]