[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-dotnet-devflow-automation":3,"mdc--qu5ujp-key":46,"related-org-dotnet-devflow-automation":1294,"related-repo-dotnet-devflow-automation":1459},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":41,"sourceUrl":44,"mdContent":45},"devflow-automation","automate .NET MAUI app state","Automate MAUI app state through DevFlow Actions. USE FOR: `[DevFlowAction]` shortcuts, login, seed data, deep screens. DO NOT USE FOR: arbitrary methods, DI internals, UI MCP tools, connectivity, or build\u002Fdeploy issues.",{"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,22],{"name":13,"slug":14,"type":15},"MAUI","maui","tag",{"name":17,"slug":18,"type":15},"Automation","automation",{"name":20,"slug":21,"type":15},".NET","net",{"name":23,"slug":24,"type":15},"Mobile","mobile",190,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmaui-labs","2026-07-12T08:22:56.616564",null,21,[31,32,33,8,34,35,14,36,37,24,38,39,40],"ai","android","desktop","ios","maccatalyst","mcp","microsoft","multi-platform","user-interface","winui",{"repoUrl":26,"stars":25,"forks":29,"topics":42,"description":43},[31,32,33,8,34,35,14,36,37,24,38,39,40],"Experimental and pre-release tools for .NET MAUI","https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmaui-labs\u002Ftree\u002FHEAD\u002Fplugins\u002Fdotnet-maui\u002Fskills\u002Fdevflow-automation","---\nname: devflow-automation\ndescription: >-\n  Automate MAUI app state through DevFlow Actions. USE FOR: `[DevFlowAction]` shortcuts, login, seed data, deep screens. DO NOT USE FOR: arbitrary methods, DI internals, UI MCP tools, connectivity, or build\u002Fdeploy issues.\n---\n\n# DevFlow Automation - Actions\n\nDevFlow Actions are named shortcuts that a .NET MAUI app explicitly exposes for automation with `[DevFlowAction]`. Use them to reach useful app states quickly, such as logging in a test user, seeding data, toggling a feature flag, or navigating to a deep screen.\n\nActions are opt-in. DevFlow does not expose arbitrary reflection invoke; if you need a new shortcut, add an attributed method in app debug\u002Ftest code, let Hot Reload apply it, then list and invoke the action.\n\n## Optional Session Feedback Nudge\n\nIf action discovery or invocation exposed repeated DevFlow friction, missing\nobservability, or several workarounds to reach app state, ask whether the user\nwants to run `maui-devflow-session-review` to summarize product feedback. Do not\nrun it automatically.\n\n## Start by Listing Actions\n\nAlways check for available actions early in a DevFlow session:\n\n```\nmaui_list_actions\n```\n\nLook for action names and descriptions that match your goal. Common patterns:\n\n- `login-*` for authentication shortcuts\n- `seed-*` for data population\n- `navigate-*` for deep links or screen setup\n- `set-*` for feature flags or configuration\n- `reset-*` for state cleanup\n\n## Invoke an Action\n\nArguments are passed as a JSON array in parameter order. Omit trailing optional parameters to use their defaults.\n\n```\nmaui_invoke_action actionName=\"login-test-user\"\nmaui_invoke_action actionName=\"login-test-user\" argsJson='[\"alice@test.com\", \"secret\"]'\nmaui_invoke_action actionName=\"seed-catalog\" argsJson='[100]'\n```\n\nAfter invoking an action, verify the state with a screenshot, tree query, or other DevFlow tools:\n\n```\nmaui_screenshot\n```\n\n## Hot Reload Workflow\n\nIf no useful action exists and you can edit the app:\n\n1. Add a public static method annotated with `[DevFlowAction]`.\n2. Add `[Description]` to each parameter so agents know what to pass.\n3. Save and let C# Hot Reload apply the change.\n4. Call `maui_list_actions` again.\n5. Invoke the new action with `maui_invoke_action`.\n\nExample:\n\n```csharp\nusing System.ComponentModel;\nusing Microsoft.Maui.DevFlow.Agent.Core;\n\npublic static class DebugHelpers\n{\n    [DevFlowAction(\"login-test-user\", Description = \"Log in as the standard test account\")]\n    public static async Task LoginTestUser(\n        [Description(\"Email address for the test account\")] string email = \"test@example.com\",\n        [Description(\"Password for the test account\")] string password = \"password123\")\n    {\n        await AuthService.LoginAsync(email, password);\n    }\n}\n```\n\n## Supported Parameter Types\n\nArguments are converted from JSON to these action parameter types:\n\n| Type | JSON example |\n|------|--------------|\n| `string` | `\"hello\"` |\n| `bool` | `true` or `false` |\n| `int`, `long`, `short`, `byte` | `42` |\n| `float`, `double`, `decimal` | `3.14` |\n| `enum` | `\"MemberName\"` (case-insensitive) |\n| arrays and supported list interfaces | `[\"a\", \"b\"]` or `[1, 2, 3]` |\n| nullable types | `null` or the value |\n\n## Batch Support\n\nUse `invoke-action` in batches when setup needs several steps:\n\n```json\n{\n  \"actions\": [\n    { \"action\": \"invoke-action\", \"name\": \"login-test-user\" },\n    { \"action\": \"invoke-action\", \"name\": \"seed-catalog\", \"args\": [100] },\n    { \"action\": \"tap\", \"elementId\": \"btn-advanced\" }\n  ]\n}\n```\n\n## Rules for App Developers\n\n- Methods must be `public static`.\n- Parameters should be simple supported types, enums, nullable supported types, arrays, or supported list interfaces.\n- Add `[Description]` to parameters so AI agents know what to pass.\n- Prefer returning `void`, `Task`, `ValueTask`, `Task\u003CT>`, or `ValueTask\u003CT>` with simple return values.\n- Action names should be unique and intention-revealing.\n\nThe DevFlow analyzer validates attributed methods:\n\n| Diagnostic | Severity | Description |\n|------------|----------|-------------|\n| MAUI_DFA001 | Error | Unsupported parameter type |\n| MAUI_DFA002 | Error | Method must be public static |\n| MAUI_DFA003 | Warning | Return type may not serialize cleanly |\n| MAUI_DFA004 | Info | Missing `[Description]` on parameter |\n| MAUI_DFA005 | Warning | Duplicate `[DevFlowAction]` name |\n\n## Common Patterns\n\n### Authentication Bypass\n\n```\nmaui_list_actions\nmaui_invoke_action actionName=\"login-test-user\"\nmaui_screenshot\n```\n\n### Data Seeding\n\n```\nmaui_invoke_action actionName=\"seed-catalog\" argsJson='[200]'\nmaui_invoke_action actionName=\"seed-orders\" argsJson='[50, true]'\n```\n\n### Feature Flag Override\n\n```\nmaui_invoke_action actionName=\"set-feature-flag\" argsJson='[\"dark-mode\", true]'\nmaui_invoke_action actionName=\"set-feature-flag\" argsJson='[\"experimental-ui\", true]'\n```\n\n### Navigate to a Deep Screen\n\n```\nmaui_invoke_action actionName=\"navigate-to\" argsJson='[\"\u002F\u002Fsettings\u002Fadvanced\u002Fnetwork\"]'\n```\n",{"data":47,"body":48},{"name":4,"description":6},{"type":49,"children":50},"root",[51,60,75,80,87,100,106,111,123,128,188,194,199,208,213,222,228,233,292,297,426,432,437,659,665,678,1003,1009,1087,1092,1221,1227,1234,1243,1249,1258,1264,1273,1279,1288],{"type":52,"tag":53,"props":54,"children":56},"element","h1",{"id":55},"devflow-automation-actions",[57],{"type":58,"value":59},"text","DevFlow Automation - Actions",{"type":52,"tag":61,"props":62,"children":63},"p",{},[64,66,73],{"type":58,"value":65},"DevFlow Actions are named shortcuts that a .NET MAUI app explicitly exposes for automation with ",{"type":52,"tag":67,"props":68,"children":70},"code",{"className":69},[],[71],{"type":58,"value":72},"[DevFlowAction]",{"type":58,"value":74},". Use them to reach useful app states quickly, such as logging in a test user, seeding data, toggling a feature flag, or navigating to a deep screen.",{"type":52,"tag":61,"props":76,"children":77},{},[78],{"type":58,"value":79},"Actions are opt-in. DevFlow does not expose arbitrary reflection invoke; if you need a new shortcut, add an attributed method in app debug\u002Ftest code, let Hot Reload apply it, then list and invoke the action.",{"type":52,"tag":81,"props":82,"children":84},"h2",{"id":83},"optional-session-feedback-nudge",[85],{"type":58,"value":86},"Optional Session Feedback Nudge",{"type":52,"tag":61,"props":88,"children":89},{},[90,92,98],{"type":58,"value":91},"If action discovery or invocation exposed repeated DevFlow friction, missing\nobservability, or several workarounds to reach app state, ask whether the user\nwants to run ",{"type":52,"tag":67,"props":93,"children":95},{"className":94},[],[96],{"type":58,"value":97},"maui-devflow-session-review",{"type":58,"value":99}," to summarize product feedback. Do not\nrun it automatically.",{"type":52,"tag":81,"props":101,"children":103},{"id":102},"start-by-listing-actions",[104],{"type":58,"value":105},"Start by Listing Actions",{"type":52,"tag":61,"props":107,"children":108},{},[109],{"type":58,"value":110},"Always check for available actions early in a DevFlow session:",{"type":52,"tag":112,"props":113,"children":117},"pre",{"className":114,"code":116,"language":58},[115],"language-text","maui_list_actions\n",[118],{"type":52,"tag":67,"props":119,"children":121},{"__ignoreMap":120},"",[122],{"type":58,"value":116},{"type":52,"tag":61,"props":124,"children":125},{},[126],{"type":58,"value":127},"Look for action names and descriptions that match your goal. Common patterns:",{"type":52,"tag":129,"props":130,"children":131},"ul",{},[132,144,155,166,177],{"type":52,"tag":133,"props":134,"children":135},"li",{},[136,142],{"type":52,"tag":67,"props":137,"children":139},{"className":138},[],[140],{"type":58,"value":141},"login-*",{"type":58,"value":143}," for authentication shortcuts",{"type":52,"tag":133,"props":145,"children":146},{},[147,153],{"type":52,"tag":67,"props":148,"children":150},{"className":149},[],[151],{"type":58,"value":152},"seed-*",{"type":58,"value":154}," for data population",{"type":52,"tag":133,"props":156,"children":157},{},[158,164],{"type":52,"tag":67,"props":159,"children":161},{"className":160},[],[162],{"type":58,"value":163},"navigate-*",{"type":58,"value":165}," for deep links or screen setup",{"type":52,"tag":133,"props":167,"children":168},{},[169,175],{"type":52,"tag":67,"props":170,"children":172},{"className":171},[],[173],{"type":58,"value":174},"set-*",{"type":58,"value":176}," for feature flags or configuration",{"type":52,"tag":133,"props":178,"children":179},{},[180,186],{"type":52,"tag":67,"props":181,"children":183},{"className":182},[],[184],{"type":58,"value":185},"reset-*",{"type":58,"value":187}," for state cleanup",{"type":52,"tag":81,"props":189,"children":191},{"id":190},"invoke-an-action",[192],{"type":58,"value":193},"Invoke an Action",{"type":52,"tag":61,"props":195,"children":196},{},[197],{"type":58,"value":198},"Arguments are passed as a JSON array in parameter order. Omit trailing optional parameters to use their defaults.",{"type":52,"tag":112,"props":200,"children":203},{"className":201,"code":202,"language":58},[115],"maui_invoke_action actionName=\"login-test-user\"\nmaui_invoke_action actionName=\"login-test-user\" argsJson='[\"alice@test.com\", \"secret\"]'\nmaui_invoke_action actionName=\"seed-catalog\" argsJson='[100]'\n",[204],{"type":52,"tag":67,"props":205,"children":206},{"__ignoreMap":120},[207],{"type":58,"value":202},{"type":52,"tag":61,"props":209,"children":210},{},[211],{"type":58,"value":212},"After invoking an action, verify the state with a screenshot, tree query, or other DevFlow tools:",{"type":52,"tag":112,"props":214,"children":217},{"className":215,"code":216,"language":58},[115],"maui_screenshot\n",[218],{"type":52,"tag":67,"props":219,"children":220},{"__ignoreMap":120},[221],{"type":58,"value":216},{"type":52,"tag":81,"props":223,"children":225},{"id":224},"hot-reload-workflow",[226],{"type":58,"value":227},"Hot Reload Workflow",{"type":52,"tag":61,"props":229,"children":230},{},[231],{"type":58,"value":232},"If no useful action exists and you can edit the app:",{"type":52,"tag":234,"props":235,"children":236},"ol",{},[237,249,262,267,280],{"type":52,"tag":133,"props":238,"children":239},{},[240,242,247],{"type":58,"value":241},"Add a public static method annotated with ",{"type":52,"tag":67,"props":243,"children":245},{"className":244},[],[246],{"type":58,"value":72},{"type":58,"value":248},".",{"type":52,"tag":133,"props":250,"children":251},{},[252,254,260],{"type":58,"value":253},"Add ",{"type":52,"tag":67,"props":255,"children":257},{"className":256},[],[258],{"type":58,"value":259},"[Description]",{"type":58,"value":261}," to each parameter so agents know what to pass.",{"type":52,"tag":133,"props":263,"children":264},{},[265],{"type":58,"value":266},"Save and let C# Hot Reload apply the change.",{"type":52,"tag":133,"props":268,"children":269},{},[270,272,278],{"type":58,"value":271},"Call ",{"type":52,"tag":67,"props":273,"children":275},{"className":274},[],[276],{"type":58,"value":277},"maui_list_actions",{"type":58,"value":279}," again.",{"type":52,"tag":133,"props":281,"children":282},{},[283,285,291],{"type":58,"value":284},"Invoke the new action with ",{"type":52,"tag":67,"props":286,"children":288},{"className":287},[],[289],{"type":58,"value":290},"maui_invoke_action",{"type":58,"value":248},{"type":52,"tag":61,"props":293,"children":294},{},[295],{"type":58,"value":296},"Example:",{"type":52,"tag":112,"props":298,"children":302},{"className":299,"code":300,"language":301,"meta":120,"style":120},"language-csharp shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","using System.ComponentModel;\nusing Microsoft.Maui.DevFlow.Agent.Core;\n\npublic static class DebugHelpers\n{\n    [DevFlowAction(\"login-test-user\", Description = \"Log in as the standard test account\")]\n    public static async Task LoginTestUser(\n        [Description(\"Email address for the test account\")] string email = \"test@example.com\",\n        [Description(\"Password for the test account\")] string password = \"password123\")\n    {\n        await AuthService.LoginAsync(email, password);\n    }\n}\n","csharp",[303],{"type":52,"tag":67,"props":304,"children":305},{"__ignoreMap":120},[306,317,326,336,345,354,363,372,381,390,399,408,417],{"type":52,"tag":307,"props":308,"children":311},"span",{"class":309,"line":310},"line",1,[312],{"type":52,"tag":307,"props":313,"children":314},{},[315],{"type":58,"value":316},"using System.ComponentModel;\n",{"type":52,"tag":307,"props":318,"children":320},{"class":309,"line":319},2,[321],{"type":52,"tag":307,"props":322,"children":323},{},[324],{"type":58,"value":325},"using Microsoft.Maui.DevFlow.Agent.Core;\n",{"type":52,"tag":307,"props":327,"children":329},{"class":309,"line":328},3,[330],{"type":52,"tag":307,"props":331,"children":333},{"emptyLinePlaceholder":332},true,[334],{"type":58,"value":335},"\n",{"type":52,"tag":307,"props":337,"children":339},{"class":309,"line":338},4,[340],{"type":52,"tag":307,"props":341,"children":342},{},[343],{"type":58,"value":344},"public static class DebugHelpers\n",{"type":52,"tag":307,"props":346,"children":348},{"class":309,"line":347},5,[349],{"type":52,"tag":307,"props":350,"children":351},{},[352],{"type":58,"value":353},"{\n",{"type":52,"tag":307,"props":355,"children":357},{"class":309,"line":356},6,[358],{"type":52,"tag":307,"props":359,"children":360},{},[361],{"type":58,"value":362},"    [DevFlowAction(\"login-test-user\", Description = \"Log in as the standard test account\")]\n",{"type":52,"tag":307,"props":364,"children":366},{"class":309,"line":365},7,[367],{"type":52,"tag":307,"props":368,"children":369},{},[370],{"type":58,"value":371},"    public static async Task LoginTestUser(\n",{"type":52,"tag":307,"props":373,"children":375},{"class":309,"line":374},8,[376],{"type":52,"tag":307,"props":377,"children":378},{},[379],{"type":58,"value":380},"        [Description(\"Email address for the test account\")] string email = \"test@example.com\",\n",{"type":52,"tag":307,"props":382,"children":384},{"class":309,"line":383},9,[385],{"type":52,"tag":307,"props":386,"children":387},{},[388],{"type":58,"value":389},"        [Description(\"Password for the test account\")] string password = \"password123\")\n",{"type":52,"tag":307,"props":391,"children":393},{"class":309,"line":392},10,[394],{"type":52,"tag":307,"props":395,"children":396},{},[397],{"type":58,"value":398},"    {\n",{"type":52,"tag":307,"props":400,"children":402},{"class":309,"line":401},11,[403],{"type":52,"tag":307,"props":404,"children":405},{},[406],{"type":58,"value":407},"        await AuthService.LoginAsync(email, password);\n",{"type":52,"tag":307,"props":409,"children":411},{"class":309,"line":410},12,[412],{"type":52,"tag":307,"props":413,"children":414},{},[415],{"type":58,"value":416},"    }\n",{"type":52,"tag":307,"props":418,"children":420},{"class":309,"line":419},13,[421],{"type":52,"tag":307,"props":422,"children":423},{},[424],{"type":58,"value":425},"}\n",{"type":52,"tag":81,"props":427,"children":429},{"id":428},"supported-parameter-types",[430],{"type":58,"value":431},"Supported Parameter Types",{"type":52,"tag":61,"props":433,"children":434},{},[435],{"type":58,"value":436},"Arguments are converted from JSON to these action parameter types:",{"type":52,"tag":438,"props":439,"children":440},"table",{},[441,460],{"type":52,"tag":442,"props":443,"children":444},"thead",{},[445],{"type":52,"tag":446,"props":447,"children":448},"tr",{},[449,455],{"type":52,"tag":450,"props":451,"children":452},"th",{},[453],{"type":58,"value":454},"Type",{"type":52,"tag":450,"props":456,"children":457},{},[458],{"type":58,"value":459},"JSON example",{"type":52,"tag":461,"props":462,"children":463},"tbody",{},[464,486,515,558,593,616,640],{"type":52,"tag":446,"props":465,"children":466},{},[467,477],{"type":52,"tag":468,"props":469,"children":470},"td",{},[471],{"type":52,"tag":67,"props":472,"children":474},{"className":473},[],[475],{"type":58,"value":476},"string",{"type":52,"tag":468,"props":478,"children":479},{},[480],{"type":52,"tag":67,"props":481,"children":483},{"className":482},[],[484],{"type":58,"value":485},"\"hello\"",{"type":52,"tag":446,"props":487,"children":488},{},[489,498],{"type":52,"tag":468,"props":490,"children":491},{},[492],{"type":52,"tag":67,"props":493,"children":495},{"className":494},[],[496],{"type":58,"value":497},"bool",{"type":52,"tag":468,"props":499,"children":500},{},[501,507,509],{"type":52,"tag":67,"props":502,"children":504},{"className":503},[],[505],{"type":58,"value":506},"true",{"type":58,"value":508}," or ",{"type":52,"tag":67,"props":510,"children":512},{"className":511},[],[513],{"type":58,"value":514},"false",{"type":52,"tag":446,"props":516,"children":517},{},[518,549],{"type":52,"tag":468,"props":519,"children":520},{},[521,527,529,535,536,542,543],{"type":52,"tag":67,"props":522,"children":524},{"className":523},[],[525],{"type":58,"value":526},"int",{"type":58,"value":528},", ",{"type":52,"tag":67,"props":530,"children":532},{"className":531},[],[533],{"type":58,"value":534},"long",{"type":58,"value":528},{"type":52,"tag":67,"props":537,"children":539},{"className":538},[],[540],{"type":58,"value":541},"short",{"type":58,"value":528},{"type":52,"tag":67,"props":544,"children":546},{"className":545},[],[547],{"type":58,"value":548},"byte",{"type":52,"tag":468,"props":550,"children":551},{},[552],{"type":52,"tag":67,"props":553,"children":555},{"className":554},[],[556],{"type":58,"value":557},"42",{"type":52,"tag":446,"props":559,"children":560},{},[561,584],{"type":52,"tag":468,"props":562,"children":563},{},[564,570,571,577,578],{"type":52,"tag":67,"props":565,"children":567},{"className":566},[],[568],{"type":58,"value":569},"float",{"type":58,"value":528},{"type":52,"tag":67,"props":572,"children":574},{"className":573},[],[575],{"type":58,"value":576},"double",{"type":58,"value":528},{"type":52,"tag":67,"props":579,"children":581},{"className":580},[],[582],{"type":58,"value":583},"decimal",{"type":52,"tag":468,"props":585,"children":586},{},[587],{"type":52,"tag":67,"props":588,"children":590},{"className":589},[],[591],{"type":58,"value":592},"3.14",{"type":52,"tag":446,"props":594,"children":595},{},[596,605],{"type":52,"tag":468,"props":597,"children":598},{},[599],{"type":52,"tag":67,"props":600,"children":602},{"className":601},[],[603],{"type":58,"value":604},"enum",{"type":52,"tag":468,"props":606,"children":607},{},[608,614],{"type":52,"tag":67,"props":609,"children":611},{"className":610},[],[612],{"type":58,"value":613},"\"MemberName\"",{"type":58,"value":615}," (case-insensitive)",{"type":52,"tag":446,"props":617,"children":618},{},[619,624],{"type":52,"tag":468,"props":620,"children":621},{},[622],{"type":58,"value":623},"arrays and supported list interfaces",{"type":52,"tag":468,"props":625,"children":626},{},[627,633,634],{"type":52,"tag":67,"props":628,"children":630},{"className":629},[],[631],{"type":58,"value":632},"[\"a\", \"b\"]",{"type":58,"value":508},{"type":52,"tag":67,"props":635,"children":637},{"className":636},[],[638],{"type":58,"value":639},"[1, 2, 3]",{"type":52,"tag":446,"props":641,"children":642},{},[643,648],{"type":52,"tag":468,"props":644,"children":645},{},[646],{"type":58,"value":647},"nullable types",{"type":52,"tag":468,"props":649,"children":650},{},[651,657],{"type":52,"tag":67,"props":652,"children":654},{"className":653},[],[655],{"type":58,"value":656},"null",{"type":58,"value":658}," or the value",{"type":52,"tag":81,"props":660,"children":662},{"id":661},"batch-support",[663],{"type":58,"value":664},"Batch Support",{"type":52,"tag":61,"props":666,"children":667},{},[668,670,676],{"type":58,"value":669},"Use ",{"type":52,"tag":67,"props":671,"children":673},{"className":672},[],[674],{"type":58,"value":675},"invoke-action",{"type":58,"value":677}," in batches when setup needs several steps:",{"type":52,"tag":112,"props":679,"children":683},{"className":680,"code":681,"language":682,"meta":120,"style":120},"language-json shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","{\n  \"actions\": [\n    { \"action\": \"invoke-action\", \"name\": \"login-test-user\" },\n    { \"action\": \"invoke-action\", \"name\": \"seed-catalog\", \"args\": [100] },\n    { \"action\": \"tap\", \"elementId\": \"btn-advanced\" }\n  ]\n}\n","json",[684],{"type":52,"tag":67,"props":685,"children":686},{"__ignoreMap":120},[687,695,724,804,913,988,996],{"type":52,"tag":307,"props":688,"children":689},{"class":309,"line":310},[690],{"type":52,"tag":307,"props":691,"children":693},{"style":692},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[694],{"type":58,"value":353},{"type":52,"tag":307,"props":696,"children":697},{"class":309,"line":319},[698,703,709,714,719],{"type":52,"tag":307,"props":699,"children":700},{"style":692},[701],{"type":58,"value":702},"  \"",{"type":52,"tag":307,"props":704,"children":706},{"style":705},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[707],{"type":58,"value":708},"actions",{"type":52,"tag":307,"props":710,"children":711},{"style":692},[712],{"type":58,"value":713},"\"",{"type":52,"tag":307,"props":715,"children":716},{"style":692},[717],{"type":58,"value":718},":",{"type":52,"tag":307,"props":720,"children":721},{"style":692},[722],{"type":58,"value":723}," [\n",{"type":52,"tag":307,"props":725,"children":726},{"class":309,"line":328},[727,732,737,743,747,751,755,760,764,769,773,778,782,786,790,795,799],{"type":52,"tag":307,"props":728,"children":729},{"style":692},[730],{"type":58,"value":731},"    {",{"type":52,"tag":307,"props":733,"children":734},{"style":692},[735],{"type":58,"value":736}," \"",{"type":52,"tag":307,"props":738,"children":740},{"style":739},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[741],{"type":58,"value":742},"action",{"type":52,"tag":307,"props":744,"children":745},{"style":692},[746],{"type":58,"value":713},{"type":52,"tag":307,"props":748,"children":749},{"style":692},[750],{"type":58,"value":718},{"type":52,"tag":307,"props":752,"children":753},{"style":692},[754],{"type":58,"value":736},{"type":52,"tag":307,"props":756,"children":758},{"style":757},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[759],{"type":58,"value":675},{"type":52,"tag":307,"props":761,"children":762},{"style":692},[763],{"type":58,"value":713},{"type":52,"tag":307,"props":765,"children":766},{"style":692},[767],{"type":58,"value":768},",",{"type":52,"tag":307,"props":770,"children":771},{"style":692},[772],{"type":58,"value":736},{"type":52,"tag":307,"props":774,"children":775},{"style":739},[776],{"type":58,"value":777},"name",{"type":52,"tag":307,"props":779,"children":780},{"style":692},[781],{"type":58,"value":713},{"type":52,"tag":307,"props":783,"children":784},{"style":692},[785],{"type":58,"value":718},{"type":52,"tag":307,"props":787,"children":788},{"style":692},[789],{"type":58,"value":736},{"type":52,"tag":307,"props":791,"children":792},{"style":757},[793],{"type":58,"value":794},"login-test-user",{"type":52,"tag":307,"props":796,"children":797},{"style":692},[798],{"type":58,"value":713},{"type":52,"tag":307,"props":800,"children":801},{"style":692},[802],{"type":58,"value":803}," },\n",{"type":52,"tag":307,"props":805,"children":806},{"class":309,"line":338},[807,811,815,819,823,827,831,835,839,843,847,851,855,859,863,868,872,876,880,885,889,893,898,904,909],{"type":52,"tag":307,"props":808,"children":809},{"style":692},[810],{"type":58,"value":731},{"type":52,"tag":307,"props":812,"children":813},{"style":692},[814],{"type":58,"value":736},{"type":52,"tag":307,"props":816,"children":817},{"style":739},[818],{"type":58,"value":742},{"type":52,"tag":307,"props":820,"children":821},{"style":692},[822],{"type":58,"value":713},{"type":52,"tag":307,"props":824,"children":825},{"style":692},[826],{"type":58,"value":718},{"type":52,"tag":307,"props":828,"children":829},{"style":692},[830],{"type":58,"value":736},{"type":52,"tag":307,"props":832,"children":833},{"style":757},[834],{"type":58,"value":675},{"type":52,"tag":307,"props":836,"children":837},{"style":692},[838],{"type":58,"value":713},{"type":52,"tag":307,"props":840,"children":841},{"style":692},[842],{"type":58,"value":768},{"type":52,"tag":307,"props":844,"children":845},{"style":692},[846],{"type":58,"value":736},{"type":52,"tag":307,"props":848,"children":849},{"style":739},[850],{"type":58,"value":777},{"type":52,"tag":307,"props":852,"children":853},{"style":692},[854],{"type":58,"value":713},{"type":52,"tag":307,"props":856,"children":857},{"style":692},[858],{"type":58,"value":718},{"type":52,"tag":307,"props":860,"children":861},{"style":692},[862],{"type":58,"value":736},{"type":52,"tag":307,"props":864,"children":865},{"style":757},[866],{"type":58,"value":867},"seed-catalog",{"type":52,"tag":307,"props":869,"children":870},{"style":692},[871],{"type":58,"value":713},{"type":52,"tag":307,"props":873,"children":874},{"style":692},[875],{"type":58,"value":768},{"type":52,"tag":307,"props":877,"children":878},{"style":692},[879],{"type":58,"value":736},{"type":52,"tag":307,"props":881,"children":882},{"style":739},[883],{"type":58,"value":884},"args",{"type":52,"tag":307,"props":886,"children":887},{"style":692},[888],{"type":58,"value":713},{"type":52,"tag":307,"props":890,"children":891},{"style":692},[892],{"type":58,"value":718},{"type":52,"tag":307,"props":894,"children":895},{"style":692},[896],{"type":58,"value":897}," [",{"type":52,"tag":307,"props":899,"children":901},{"style":900},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[902],{"type":58,"value":903},"100",{"type":52,"tag":307,"props":905,"children":906},{"style":692},[907],{"type":58,"value":908},"]",{"type":52,"tag":307,"props":910,"children":911},{"style":692},[912],{"type":58,"value":803},{"type":52,"tag":307,"props":914,"children":915},{"class":309,"line":347},[916,920,924,928,932,936,940,945,949,953,957,962,966,970,974,979,983],{"type":52,"tag":307,"props":917,"children":918},{"style":692},[919],{"type":58,"value":731},{"type":52,"tag":307,"props":921,"children":922},{"style":692},[923],{"type":58,"value":736},{"type":52,"tag":307,"props":925,"children":926},{"style":739},[927],{"type":58,"value":742},{"type":52,"tag":307,"props":929,"children":930},{"style":692},[931],{"type":58,"value":713},{"type":52,"tag":307,"props":933,"children":934},{"style":692},[935],{"type":58,"value":718},{"type":52,"tag":307,"props":937,"children":938},{"style":692},[939],{"type":58,"value":736},{"type":52,"tag":307,"props":941,"children":942},{"style":757},[943],{"type":58,"value":944},"tap",{"type":52,"tag":307,"props":946,"children":947},{"style":692},[948],{"type":58,"value":713},{"type":52,"tag":307,"props":950,"children":951},{"style":692},[952],{"type":58,"value":768},{"type":52,"tag":307,"props":954,"children":955},{"style":692},[956],{"type":58,"value":736},{"type":52,"tag":307,"props":958,"children":959},{"style":739},[960],{"type":58,"value":961},"elementId",{"type":52,"tag":307,"props":963,"children":964},{"style":692},[965],{"type":58,"value":713},{"type":52,"tag":307,"props":967,"children":968},{"style":692},[969],{"type":58,"value":718},{"type":52,"tag":307,"props":971,"children":972},{"style":692},[973],{"type":58,"value":736},{"type":52,"tag":307,"props":975,"children":976},{"style":757},[977],{"type":58,"value":978},"btn-advanced",{"type":52,"tag":307,"props":980,"children":981},{"style":692},[982],{"type":58,"value":713},{"type":52,"tag":307,"props":984,"children":985},{"style":692},[986],{"type":58,"value":987}," }\n",{"type":52,"tag":307,"props":989,"children":990},{"class":309,"line":356},[991],{"type":52,"tag":307,"props":992,"children":993},{"style":692},[994],{"type":58,"value":995},"  ]\n",{"type":52,"tag":307,"props":997,"children":998},{"class":309,"line":365},[999],{"type":52,"tag":307,"props":1000,"children":1001},{"style":692},[1002],{"type":58,"value":425},{"type":52,"tag":81,"props":1004,"children":1006},{"id":1005},"rules-for-app-developers",[1007],{"type":58,"value":1008},"Rules for App Developers",{"type":52,"tag":129,"props":1010,"children":1011},{},[1012,1024,1029,1040,1082],{"type":52,"tag":133,"props":1013,"children":1014},{},[1015,1017,1023],{"type":58,"value":1016},"Methods must be ",{"type":52,"tag":67,"props":1018,"children":1020},{"className":1019},[],[1021],{"type":58,"value":1022},"public static",{"type":58,"value":248},{"type":52,"tag":133,"props":1025,"children":1026},{},[1027],{"type":58,"value":1028},"Parameters should be simple supported types, enums, nullable supported types, arrays, or supported list interfaces.",{"type":52,"tag":133,"props":1030,"children":1031},{},[1032,1033,1038],{"type":58,"value":253},{"type":52,"tag":67,"props":1034,"children":1036},{"className":1035},[],[1037],{"type":58,"value":259},{"type":58,"value":1039}," to parameters so AI agents know what to pass.",{"type":52,"tag":133,"props":1041,"children":1042},{},[1043,1045,1051,1052,1058,1059,1065,1066,1072,1074,1080],{"type":58,"value":1044},"Prefer returning ",{"type":52,"tag":67,"props":1046,"children":1048},{"className":1047},[],[1049],{"type":58,"value":1050},"void",{"type":58,"value":528},{"type":52,"tag":67,"props":1053,"children":1055},{"className":1054},[],[1056],{"type":58,"value":1057},"Task",{"type":58,"value":528},{"type":52,"tag":67,"props":1060,"children":1062},{"className":1061},[],[1063],{"type":58,"value":1064},"ValueTask",{"type":58,"value":528},{"type":52,"tag":67,"props":1067,"children":1069},{"className":1068},[],[1070],{"type":58,"value":1071},"Task\u003CT>",{"type":58,"value":1073},", or ",{"type":52,"tag":67,"props":1075,"children":1077},{"className":1076},[],[1078],{"type":58,"value":1079},"ValueTask\u003CT>",{"type":58,"value":1081}," with simple return values.",{"type":52,"tag":133,"props":1083,"children":1084},{},[1085],{"type":58,"value":1086},"Action names should be unique and intention-revealing.",{"type":52,"tag":61,"props":1088,"children":1089},{},[1090],{"type":58,"value":1091},"The DevFlow analyzer validates attributed methods:",{"type":52,"tag":438,"props":1093,"children":1094},{},[1095,1116],{"type":52,"tag":442,"props":1096,"children":1097},{},[1098],{"type":52,"tag":446,"props":1099,"children":1100},{},[1101,1106,1111],{"type":52,"tag":450,"props":1102,"children":1103},{},[1104],{"type":58,"value":1105},"Diagnostic",{"type":52,"tag":450,"props":1107,"children":1108},{},[1109],{"type":58,"value":1110},"Severity",{"type":52,"tag":450,"props":1112,"children":1113},{},[1114],{"type":58,"value":1115},"Description",{"type":52,"tag":461,"props":1117,"children":1118},{},[1119,1137,1154,1172,1197],{"type":52,"tag":446,"props":1120,"children":1121},{},[1122,1127,1132],{"type":52,"tag":468,"props":1123,"children":1124},{},[1125],{"type":58,"value":1126},"MAUI_DFA001",{"type":52,"tag":468,"props":1128,"children":1129},{},[1130],{"type":58,"value":1131},"Error",{"type":52,"tag":468,"props":1133,"children":1134},{},[1135],{"type":58,"value":1136},"Unsupported parameter type",{"type":52,"tag":446,"props":1138,"children":1139},{},[1140,1145,1149],{"type":52,"tag":468,"props":1141,"children":1142},{},[1143],{"type":58,"value":1144},"MAUI_DFA002",{"type":52,"tag":468,"props":1146,"children":1147},{},[1148],{"type":58,"value":1131},{"type":52,"tag":468,"props":1150,"children":1151},{},[1152],{"type":58,"value":1153},"Method must be public static",{"type":52,"tag":446,"props":1155,"children":1156},{},[1157,1162,1167],{"type":52,"tag":468,"props":1158,"children":1159},{},[1160],{"type":58,"value":1161},"MAUI_DFA003",{"type":52,"tag":468,"props":1163,"children":1164},{},[1165],{"type":58,"value":1166},"Warning",{"type":52,"tag":468,"props":1168,"children":1169},{},[1170],{"type":58,"value":1171},"Return type may not serialize cleanly",{"type":52,"tag":446,"props":1173,"children":1174},{},[1175,1180,1185],{"type":52,"tag":468,"props":1176,"children":1177},{},[1178],{"type":58,"value":1179},"MAUI_DFA004",{"type":52,"tag":468,"props":1181,"children":1182},{},[1183],{"type":58,"value":1184},"Info",{"type":52,"tag":468,"props":1186,"children":1187},{},[1188,1190,1195],{"type":58,"value":1189},"Missing ",{"type":52,"tag":67,"props":1191,"children":1193},{"className":1192},[],[1194],{"type":58,"value":259},{"type":58,"value":1196}," on parameter",{"type":52,"tag":446,"props":1198,"children":1199},{},[1200,1205,1209],{"type":52,"tag":468,"props":1201,"children":1202},{},[1203],{"type":58,"value":1204},"MAUI_DFA005",{"type":52,"tag":468,"props":1206,"children":1207},{},[1208],{"type":58,"value":1166},{"type":52,"tag":468,"props":1210,"children":1211},{},[1212,1214,1219],{"type":58,"value":1213},"Duplicate ",{"type":52,"tag":67,"props":1215,"children":1217},{"className":1216},[],[1218],{"type":58,"value":72},{"type":58,"value":1220}," name",{"type":52,"tag":81,"props":1222,"children":1224},{"id":1223},"common-patterns",[1225],{"type":58,"value":1226},"Common Patterns",{"type":52,"tag":1228,"props":1229,"children":1231},"h3",{"id":1230},"authentication-bypass",[1232],{"type":58,"value":1233},"Authentication Bypass",{"type":52,"tag":112,"props":1235,"children":1238},{"className":1236,"code":1237,"language":58},[115],"maui_list_actions\nmaui_invoke_action actionName=\"login-test-user\"\nmaui_screenshot\n",[1239],{"type":52,"tag":67,"props":1240,"children":1241},{"__ignoreMap":120},[1242],{"type":58,"value":1237},{"type":52,"tag":1228,"props":1244,"children":1246},{"id":1245},"data-seeding",[1247],{"type":58,"value":1248},"Data Seeding",{"type":52,"tag":112,"props":1250,"children":1253},{"className":1251,"code":1252,"language":58},[115],"maui_invoke_action actionName=\"seed-catalog\" argsJson='[200]'\nmaui_invoke_action actionName=\"seed-orders\" argsJson='[50, true]'\n",[1254],{"type":52,"tag":67,"props":1255,"children":1256},{"__ignoreMap":120},[1257],{"type":58,"value":1252},{"type":52,"tag":1228,"props":1259,"children":1261},{"id":1260},"feature-flag-override",[1262],{"type":58,"value":1263},"Feature Flag Override",{"type":52,"tag":112,"props":1265,"children":1268},{"className":1266,"code":1267,"language":58},[115],"maui_invoke_action actionName=\"set-feature-flag\" argsJson='[\"dark-mode\", true]'\nmaui_invoke_action actionName=\"set-feature-flag\" argsJson='[\"experimental-ui\", true]'\n",[1269],{"type":52,"tag":67,"props":1270,"children":1271},{"__ignoreMap":120},[1272],{"type":58,"value":1267},{"type":52,"tag":1228,"props":1274,"children":1276},{"id":1275},"navigate-to-a-deep-screen",[1277],{"type":58,"value":1278},"Navigate to a Deep Screen",{"type":52,"tag":112,"props":1280,"children":1283},{"className":1281,"code":1282,"language":58},[115],"maui_invoke_action actionName=\"navigate-to\" argsJson='[\"\u002F\u002Fsettings\u002Fadvanced\u002Fnetwork\"]'\n",[1284],{"type":52,"tag":67,"props":1285,"children":1286},{"__ignoreMap":120},[1287],{"type":58,"value":1282},{"type":52,"tag":1289,"props":1290,"children":1291},"style",{},[1292],{"type":58,"value":1293},"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":1295,"total":1458},[1296,1312,1329,1342,1359,1373,1392,1402,1414,1424,1437,1448],{"slug":1297,"name":1297,"fn":1298,"description":1299,"org":1300,"tags":1301,"stars":1309,"repoUrl":1310,"updatedAt":1311},"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},[1302,1303,1306],{"name":20,"slug":21,"type":15},{"name":1304,"slug":1305,"type":15},"Engineering","engineering",{"name":1307,"slug":1308,"type":15},"Performance","performance",5535,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmsbuild","2026-07-22T05:37:33.965588",{"slug":1313,"name":1313,"fn":1314,"description":1315,"org":1316,"tags":1317,"stars":1326,"repoUrl":1327,"updatedAt":1328},"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},[1318,1319,1322,1325],{"name":20,"slug":21,"type":15},{"name":1320,"slug":1321,"type":15},"Code Analysis","code-analysis",{"name":1323,"slug":1324,"type":15},"Debugging","debugging",{"name":1307,"slug":1308,"type":15},4576,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills","2026-07-12T08:23:25.400375",{"slug":1330,"name":1330,"fn":1331,"description":1332,"org":1333,"tags":1334,"stars":1326,"repoUrl":1327,"updatedAt":1341},"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},[1335,1336,1338,1339],{"name":20,"slug":21,"type":15},{"name":1337,"slug":32,"type":15},"Android",{"name":1323,"slug":1324,"type":15},{"name":1340,"slug":37,"type":15},"Microsoft","2026-07-12T08:23:21.595572",{"slug":1343,"name":1343,"fn":1344,"description":1345,"org":1346,"tags":1347,"stars":1326,"repoUrl":1327,"updatedAt":1358},"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},[1348,1349,1350,1352,1355],{"name":20,"slug":21,"type":15},{"name":1323,"slug":1324,"type":15},{"name":1351,"slug":34,"type":15},"iOS",{"name":1353,"slug":1354,"type":15},"macOS","macos",{"name":1356,"slug":1357,"type":15},"Observability","observability","2026-07-12T08:23:20.369986",{"slug":1360,"name":1360,"fn":1361,"description":1362,"org":1363,"tags":1364,"stars":1326,"repoUrl":1327,"updatedAt":1372},"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},[1365,1366,1369],{"name":1320,"slug":1321,"type":15},{"name":1367,"slug":1368,"type":15},"QA","qa",{"name":1370,"slug":1371,"type":15},"Testing","testing","2026-07-12T08:23:51.277743",{"slug":1374,"name":1374,"fn":1375,"description":1376,"org":1377,"tags":1378,"stars":1326,"repoUrl":1327,"updatedAt":1391},"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},[1379,1380,1383,1385,1388],{"name":20,"slug":21,"type":15},{"name":1381,"slug":1382,"type":15},"Blazor","blazor",{"name":1384,"slug":301,"type":15},"C#",{"name":1386,"slug":1387,"type":15},"UI Components","ui-components",{"name":1389,"slug":1390,"type":15},"Web Development","web-development","2026-07-15T06:03:29.216359",{"slug":1393,"name":1393,"fn":1394,"description":1395,"org":1396,"tags":1397,"stars":1326,"repoUrl":1327,"updatedAt":1401},"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},[1398,1399,1400],{"name":1320,"slug":1321,"type":15},{"name":1323,"slug":1324,"type":15},{"name":1340,"slug":37,"type":15},"2026-07-12T08:21:34.637923",{"slug":1403,"name":1403,"fn":1404,"description":1405,"org":1406,"tags":1407,"stars":1326,"repoUrl":1327,"updatedAt":1413},"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},[1408,1411,1412],{"name":1409,"slug":1410,"type":15},"Build","build",{"name":1323,"slug":1324,"type":15},{"name":1304,"slug":1305,"type":15},"2026-07-19T05:38:19.340791",{"slug":1415,"name":1415,"fn":1416,"description":1417,"org":1418,"tags":1419,"stars":1326,"repoUrl":1327,"updatedAt":1423},"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},[1420,1421,1422],{"name":20,"slug":21,"type":15},{"name":1304,"slug":1305,"type":15},{"name":1307,"slug":1308,"type":15},"2026-07-19T05:38:18.364937",{"slug":1425,"name":1425,"fn":1426,"description":1427,"org":1428,"tags":1429,"stars":1326,"repoUrl":1327,"updatedAt":1436},"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},[1430,1431,1434,1435],{"name":1304,"slug":1305,"type":15},{"name":1432,"slug":1433,"type":15},"Monitoring","monitoring",{"name":1307,"slug":1308,"type":15},{"name":1370,"slug":1371,"type":15},"2026-07-12T08:21:35.865649",{"slug":1438,"name":1438,"fn":1439,"description":1440,"org":1441,"tags":1442,"stars":1326,"repoUrl":1327,"updatedAt":1447},"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},[1443,1444,1445,1446],{"name":20,"slug":21,"type":15},{"name":1323,"slug":1324,"type":15},{"name":1304,"slug":1305,"type":15},{"name":1307,"slug":1308,"type":15},"2026-07-12T08:21:40.961722",{"slug":1449,"name":1449,"fn":1450,"description":1451,"org":1452,"tags":1453,"stars":1326,"repoUrl":1327,"updatedAt":1457},"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},[1454,1455,1456],{"name":1323,"slug":1324,"type":15},{"name":1304,"slug":1305,"type":15},{"name":1367,"slug":1368,"type":15},"2026-07-19T05:38:14.336279",144,{"items":1460,"total":1552},[1461,1477,1484,1496,1509,1525,1541],{"slug":1462,"name":1462,"fn":1463,"description":1464,"org":1465,"tags":1466,"stars":25,"repoUrl":26,"updatedAt":1476},"android-slim-bindings","create Android slim bindings for .NET","Create Android slim bindings for MAUI\u002F.NET Android. USE FOR: slim Android binding, Kotlin\u002FJava wrappers, build.gradle.kts, Maven, AAR\u002FJAR, AndroidMavenLibrary, AndroidLibrary, @JvmStatic, XA4241\u002FXA4242, Xamarin.AndroidX\u002FKotlin NuGets. DO NOT USE FOR: iOS\u002FmacOS bindings, general MAUI apps, or NuGet packaging.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1467,1468,1469,1472,1475],{"name":20,"slug":21,"type":15},{"name":1337,"slug":32,"type":15},{"name":1470,"slug":1471,"type":15},"Java","java",{"name":1473,"slug":1474,"type":15},"Kotlin","kotlin",{"name":23,"slug":24,"type":15},"2026-07-12T08:22:54.006105",{"slug":4,"name":4,"fn":5,"description":6,"org":1478,"tags":1479,"stars":25,"repoUrl":26,"updatedAt":27},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1480,1481,1482,1483],{"name":20,"slug":21,"type":15},{"name":17,"slug":18,"type":15},{"name":13,"slug":14,"type":15},{"name":23,"slug":24,"type":15},{"slug":1485,"name":1485,"fn":1486,"description":1487,"org":1488,"tags":1489,"stars":25,"repoUrl":26,"updatedAt":1495},"devflow-connect","diagnose DevFlow agent connectivity issues","Diagnose DevFlow agent connectivity. USE FOR: `maui devflow` connection failures, agent not found, ports, adb forwarding, broker. DO NOT USE FOR: build failures, setup, visual tree, or Blazor CDP.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1490,1491,1492],{"name":1323,"slug":1324,"type":15},{"name":13,"slug":14,"type":15},{"name":1493,"slug":1494,"type":15},"Networking","networking","2026-07-12T08:22:48.847431",{"slug":1497,"name":1497,"fn":1498,"description":1499,"org":1500,"tags":1501,"stars":25,"repoUrl":26,"updatedAt":1508},"dotnet-workload-info","discover MAUI workload metadata","Discover MAUI workload metadata from live NuGet APIs. USE FOR: workload manifest lookup, WorkloadDependencies.json, v3-flatcontainer, CLI-to-NuGet version conversion, Xcode\u002FJDK\u002FAndroid SDK requirements, CI sdkmanager packages, `packageid:Microsoft.Maui.Controls`. DO NOT USE FOR: installing workloads, build debugging, or app version edits.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1502,1503,1506,1507],{"name":1384,"slug":301,"type":15},{"name":1504,"slug":1505,"type":15},"CLI","cli",{"name":1304,"slug":1305,"type":15},{"name":13,"slug":14,"type":15},"2026-07-12T08:22:46.318953",{"slug":1510,"name":1510,"fn":1511,"description":1512,"org":1513,"tags":1514,"stars":25,"repoUrl":26,"updatedAt":1524},"ios-slim-bindings","create iOS slim bindings for MAUI","Create iOS slim bindings for MAUI. USE FOR: slim iOS binding, Native Library Interop, Swift\u002FObjective-C wrappers, XcodeGen project.yml, Podfile, CocoaPods static linking, BUILD_LIBRARY_FOR_DISTRIBUTION, XcodeProject MSBuild, `@objc`\u002F`[Export]` selector crashes, async completion handlers. DO NOT USE FOR: Android bindings, general MAUI apps, or NuGet packaging.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1515,1516,1517,1518,1521],{"name":20,"slug":21,"type":15},{"name":1351,"slug":34,"type":15},{"name":13,"slug":14,"type":15},{"name":1519,"slug":1520,"type":15},"Swift","swift",{"name":1522,"slug":1523,"type":15},"Xcode","xcode","2026-07-12T08:22:50.128667",{"slug":1526,"name":1526,"fn":1527,"description":1528,"org":1529,"tags":1530,"stars":25,"repoUrl":26,"updatedAt":1540},"maui-accessibility","implement accessibility in .NET MAUI apps","Make .NET MAUI apps accessible with semantic properties, screen reader labels\u002Fhints, heading levels, focus, announcements, AutomationProperties, touch targets, and platform checks. USE FOR: accessibility audits, WCAG UI fixes, TalkBack\u002FVoiceOver\u002FNarrator behavior, SemanticProperties.Description\u002FHint\u002FHeadingLevel, SemanticScreenReader.Announce, SetSemanticFocus, avoiding redundant Label metadata, hiding decorative content with IsInAccessibleTree=false, and CollectionView row semantics. DO NOT USE FOR: general layout, UI automation only, or performance tuning.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1531,1532,1535,1536,1537],{"name":20,"slug":21,"type":15},{"name":1533,"slug":1534,"type":15},"Accessibility","accessibility",{"name":13,"slug":14,"type":15},{"name":23,"slug":24,"type":15},{"name":1538,"slug":1539,"type":15},"WCAG","wcag","2026-07-12T08:22:17.823583",{"slug":1542,"name":1542,"fn":1543,"description":1544,"org":1545,"tags":1546,"stars":25,"repoUrl":26,"updatedAt":1551},"maui-ai-debugging","debug .NET MAUI application issues","Legacy DevFlow debug skill. USE FOR: `maui-ai-debugging`, `maui devflow`, screenshots, visual tree, Blazor CDP, simulator\u002Femulator debugging. DO NOT USE FOR: setup, desktop automation, AppleScript, host `xdotool`.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1547,1548,1549,1550],{"name":20,"slug":21,"type":15},{"name":1323,"slug":1324,"type":15},{"name":13,"slug":14,"type":15},{"name":23,"slug":24,"type":15},"2026-07-12T08:22:52.634889",32]