[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-dotnet-maui-app-architecture":3,"mdc-4500w5-key":46,"related-org-dotnet-maui-app-architecture":843,"related-repo-dotnet-maui-app-architecture":1008},{"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},"maui-app-architecture","design .NET MAUI application architecture","Design .NET MAUI architecture around DI, MVVM, compiled bindings, Shell navigation, route registration, query parameters, and testable services. USE FOR: MauiProgram service registration, page\u002FViewModel wiring, Shell GoToAsync, Routing.RegisterRoute, trim-safe IQueryAttributable vs [QueryProperty] for full trimming\u002FNativeAOT, Uri.EscapeDataString\u002FUnescapeDataString query handling, x:DataType on pages\u002FDataTemplates, AddTransient page lifetimes, and avoiding BuildServiceProvider\u002Fservice locator patterns. DO NOT USE FOR: project layout, API currency, or runtime debug tools.",{"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},"Architecture","architecture","tag",{"name":17,"slug":18,"type":15},"MAUI","maui",{"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:26.837082",null,21,[31,32,33,8,34,35,18,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,18,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-app\u002Fskills\u002Fmaui-app-architecture","---\nname: maui-app-architecture\ndescription: >-\n  Design .NET MAUI architecture around DI, MVVM, compiled bindings, Shell navigation, route registration, query parameters, and testable services. USE FOR: MauiProgram service registration, page\u002FViewModel wiring, Shell GoToAsync, Routing.RegisterRoute, trim-safe IQueryAttributable vs [QueryProperty] for full trimming\u002FNativeAOT, Uri.EscapeDataString\u002FUnescapeDataString query handling, x:DataType on pages\u002FDataTemplates, AddTransient page lifetimes, and avoiding BuildServiceProvider\u002Fservice locator patterns. DO NOT USE FOR: project layout, API currency, or runtime debug tools.\n---\n\n# MAUI App Architecture\n\nUse this skill for app-level wiring: services, pages, ViewModels, bindings, and\nnavigation. Favor explicit, testable architecture over service locator patterns.\n\n## Workflow\n\n1. Inspect `MauiProgram.cs`, `AppShell.xaml`, page constructors, and existing\n   ViewModels.\n2. Preserve the app's UI pattern: XAML\u002FMVVM, C# Markup, MauiReactor, Blazor\n   Hybrid, or a mix.\n3. Register dependencies in `MauiProgram.cs`.\n4. Use constructor injection for pages and ViewModels.\n5. Use compiled bindings with `x:DataType` in pages and data templates.\n6. Register Shell routes once, near app startup. When asked how to register a\n   Shell route, show the literal `Routing.RegisterRoute(...)` call, not only a\n   prose summary.\n7. Pass navigation data through Shell route query parameters. For trim-sensitive\n   or NativeAOT-sensitive flows, prefer `IQueryAttributable` over\n   `[QueryProperty]`.\n8. Keep platform APIs behind interfaces so ViewModels remain unit-testable.\n\n## Dependency Injection Guidance\n\n| Dependency | Typical lifetime |\n| --- | --- |\n| Stateless API clients and data services | Singleton or typed `HttpClient` service |\n| ViewModels with page state | Transient |\n| Pages | Transient |\n| User session\u002Fstate service | Singleton if intentionally app-wide |\n| Disposable per-flow services | Scoped only if the app has an explicit scope boundary |\n\nAvoid calling `BuildServiceProvider()` inside `MauiProgram.cs`. Register the\ntype and let MAUI resolve it.\n\n## Shell Navigation Pattern\n\n```csharp\nRouting.RegisterRoute(nameof(DetailsPage), typeof(DetailsPage));\n\nawait Shell.Current.GoToAsync($\"{nameof(DetailsPage)}?id={Uri.EscapeDataString(id)}\");\n```\n\n```csharp\npublic sealed partial class DetailsViewModel : ObservableObject, IQueryAttributable\n{\n    public void ApplyQueryAttributes(IDictionary\u003Cstring, object> query)\n    {\n        if (query.TryGetValue(\"id\", out var value) && value is string id)\n        {\n            Load(Uri.UnescapeDataString(id));\n        }\n    }\n}\n```\n\n## Trim-safe Shell query parameters\n\n- `[QueryProperty]` is convenient, but it is **not trim-safe**.\n- When full trimming or NativeAOT is in scope, use `IQueryAttributable` on the\n  receiving page or ViewModel instead.\n- `ApplyQueryAttributes` keeps parsing, validation, conversion, and failure\n  handling explicit instead of relying on attribute-based property assignment.\n- When values came from URI-based Shell navigation, string entries received via\n  `IQueryAttributable` are not automatically URL-decoded. Decode them\n  explicitly, for example with `Uri.UnescapeDataString`, before using them.\n\n## Compiled Binding Pattern\n\nCompiled bindings with `x:DataType` give compile-time type checking, eliminate\nreflection overhead, and can provide measurable startup and scrolling performance\nimprovements over reflection-based bindings.\n\n```xml\n\u003CContentPage\n    x:Class=\"MyApp.Views.ProductsPage\"\n    xmlns=\"http:\u002F\u002Fschemas.microsoft.com\u002Fdotnet\u002F2021\u002Fmaui\"\n    xmlns:x=\"http:\u002F\u002Fschemas.microsoft.com\u002Fwinfx\u002F2009\u002Fxaml\"\n    xmlns:viewModels=\"clr-namespace:MyApp.ViewModels\"\n    xmlns:models=\"clr-namespace:MyApp.Models\"\n    x:DataType=\"viewModels:ProductsViewModel\">\n    \u003CCollectionView ItemsSource=\"{Binding Products}\">\n        \u003CCollectionView.ItemTemplate>\n            \u003CDataTemplate x:DataType=\"models:Product\">\n                \u003CLabel Text=\"{Binding Name}\" \u002F>\n            \u003C\u002FDataTemplate>\n        \u003C\u002FCollectionView.ItemTemplate>\n    \u003C\u002FCollectionView>\n\u003C\u002FContentPage>\n```\n\n## Migration from Older Patterns\n\n| Older pattern | Preferred MAUI pattern |\n| --- | --- |\n| `DependencyService.Get\u003CT>()` | Register `T` in DI and inject it |\n| Static service locators | Constructor injection |\n| Stringly typed BindingContext setup everywhere | Page\u002FViewModel registration and compiled bindings |\n| Unregistered Shell route strings | `Routing.RegisterRoute` plus constants or `nameof` |\n| Platform code in ViewModels | Interface abstraction with platform implementations |\n\n## Validation Checklist\n\n- Services, pages, and ViewModels are registered consistently.\n- No new service locator or `BuildServiceProvider()` usage was introduced.\n- Pages and templates that bind to ViewModels\u002Fmodels have `x:DataType`.\n- Routes are registered before use and query values are encoded.\n- Trim-sensitive or NativeAOT-sensitive Shell navigation uses\n  `IQueryAttributable`, and string URI query values are explicitly decoded.\n- ViewModels remain testable without starting a MAUI app.\n",{"data":47,"body":48},{"name":4,"description":6},{"type":49,"children":50},"root",[51,59,65,72,172,178,278,298,304,345,439,445,509,515,527,661,667,778,784,837],{"type":52,"tag":53,"props":54,"children":55},"element","h1",{"id":4},[56],{"type":57,"value":58},"text","MAUI App Architecture",{"type":52,"tag":60,"props":61,"children":62},"p",{},[63],{"type":57,"value":64},"Use this skill for app-level wiring: services, pages, ViewModels, bindings, and\nnavigation. Favor explicit, testable architecture over service locator patterns.",{"type":52,"tag":66,"props":67,"children":69},"h2",{"id":68},"workflow",[70],{"type":57,"value":71},"Workflow",{"type":52,"tag":73,"props":74,"children":75},"ol",{},[76,99,104,116,121,134,147,167],{"type":52,"tag":77,"props":78,"children":79},"li",{},[80,82,89,91,97],{"type":57,"value":81},"Inspect ",{"type":52,"tag":83,"props":84,"children":86},"code",{"className":85},[],[87],{"type":57,"value":88},"MauiProgram.cs",{"type":57,"value":90},", ",{"type":52,"tag":83,"props":92,"children":94},{"className":93},[],[95],{"type":57,"value":96},"AppShell.xaml",{"type":57,"value":98},", page constructors, and existing\nViewModels.",{"type":52,"tag":77,"props":100,"children":101},{},[102],{"type":57,"value":103},"Preserve the app's UI pattern: XAML\u002FMVVM, C# Markup, MauiReactor, Blazor\nHybrid, or a mix.",{"type":52,"tag":77,"props":105,"children":106},{},[107,109,114],{"type":57,"value":108},"Register dependencies in ",{"type":52,"tag":83,"props":110,"children":112},{"className":111},[],[113],{"type":57,"value":88},{"type":57,"value":115},".",{"type":52,"tag":77,"props":117,"children":118},{},[119],{"type":57,"value":120},"Use constructor injection for pages and ViewModels.",{"type":52,"tag":77,"props":122,"children":123},{},[124,126,132],{"type":57,"value":125},"Use compiled bindings with ",{"type":52,"tag":83,"props":127,"children":129},{"className":128},[],[130],{"type":57,"value":131},"x:DataType",{"type":57,"value":133}," in pages and data templates.",{"type":52,"tag":77,"props":135,"children":136},{},[137,139,145],{"type":57,"value":138},"Register Shell routes once, near app startup. When asked how to register a\nShell route, show the literal ",{"type":52,"tag":83,"props":140,"children":142},{"className":141},[],[143],{"type":57,"value":144},"Routing.RegisterRoute(...)",{"type":57,"value":146}," call, not only a\nprose summary.",{"type":52,"tag":77,"props":148,"children":149},{},[150,152,158,160,166],{"type":57,"value":151},"Pass navigation data through Shell route query parameters. For trim-sensitive\nor NativeAOT-sensitive flows, prefer ",{"type":52,"tag":83,"props":153,"children":155},{"className":154},[],[156],{"type":57,"value":157},"IQueryAttributable",{"type":57,"value":159}," over\n",{"type":52,"tag":83,"props":161,"children":163},{"className":162},[],[164],{"type":57,"value":165},"[QueryProperty]",{"type":57,"value":115},{"type":52,"tag":77,"props":168,"children":169},{},[170],{"type":57,"value":171},"Keep platform APIs behind interfaces so ViewModels remain unit-testable.",{"type":52,"tag":66,"props":173,"children":175},{"id":174},"dependency-injection-guidance",[176],{"type":57,"value":177},"Dependency Injection Guidance",{"type":52,"tag":179,"props":180,"children":181},"table",{},[182,201],{"type":52,"tag":183,"props":184,"children":185},"thead",{},[186],{"type":52,"tag":187,"props":188,"children":189},"tr",{},[190,196],{"type":52,"tag":191,"props":192,"children":193},"th",{},[194],{"type":57,"value":195},"Dependency",{"type":52,"tag":191,"props":197,"children":198},{},[199],{"type":57,"value":200},"Typical lifetime",{"type":52,"tag":202,"props":203,"children":204},"tbody",{},[205,227,240,252,265],{"type":52,"tag":187,"props":206,"children":207},{},[208,214],{"type":52,"tag":209,"props":210,"children":211},"td",{},[212],{"type":57,"value":213},"Stateless API clients and data services",{"type":52,"tag":209,"props":215,"children":216},{},[217,219,225],{"type":57,"value":218},"Singleton or typed ",{"type":52,"tag":83,"props":220,"children":222},{"className":221},[],[223],{"type":57,"value":224},"HttpClient",{"type":57,"value":226}," service",{"type":52,"tag":187,"props":228,"children":229},{},[230,235],{"type":52,"tag":209,"props":231,"children":232},{},[233],{"type":57,"value":234},"ViewModels with page state",{"type":52,"tag":209,"props":236,"children":237},{},[238],{"type":57,"value":239},"Transient",{"type":52,"tag":187,"props":241,"children":242},{},[243,248],{"type":52,"tag":209,"props":244,"children":245},{},[246],{"type":57,"value":247},"Pages",{"type":52,"tag":209,"props":249,"children":250},{},[251],{"type":57,"value":239},{"type":52,"tag":187,"props":253,"children":254},{},[255,260],{"type":52,"tag":209,"props":256,"children":257},{},[258],{"type":57,"value":259},"User session\u002Fstate service",{"type":52,"tag":209,"props":261,"children":262},{},[263],{"type":57,"value":264},"Singleton if intentionally app-wide",{"type":52,"tag":187,"props":266,"children":267},{},[268,273],{"type":52,"tag":209,"props":269,"children":270},{},[271],{"type":57,"value":272},"Disposable per-flow services",{"type":52,"tag":209,"props":274,"children":275},{},[276],{"type":57,"value":277},"Scoped only if the app has an explicit scope boundary",{"type":52,"tag":60,"props":279,"children":280},{},[281,283,289,291,296],{"type":57,"value":282},"Avoid calling ",{"type":52,"tag":83,"props":284,"children":286},{"className":285},[],[287],{"type":57,"value":288},"BuildServiceProvider()",{"type":57,"value":290}," inside ",{"type":52,"tag":83,"props":292,"children":294},{"className":293},[],[295],{"type":57,"value":88},{"type":57,"value":297},". Register the\ntype and let MAUI resolve it.",{"type":52,"tag":66,"props":299,"children":301},{"id":300},"shell-navigation-pattern",[302],{"type":57,"value":303},"Shell Navigation Pattern",{"type":52,"tag":305,"props":306,"children":311},"pre",{"className":307,"code":308,"language":309,"meta":310,"style":310},"language-csharp shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","Routing.RegisterRoute(nameof(DetailsPage), typeof(DetailsPage));\n\nawait Shell.Current.GoToAsync($\"{nameof(DetailsPage)}?id={Uri.EscapeDataString(id)}\");\n","csharp","",[312],{"type":52,"tag":83,"props":313,"children":314},{"__ignoreMap":310},[315,326,336],{"type":52,"tag":316,"props":317,"children":320},"span",{"class":318,"line":319},"line",1,[321],{"type":52,"tag":316,"props":322,"children":323},{},[324],{"type":57,"value":325},"Routing.RegisterRoute(nameof(DetailsPage), typeof(DetailsPage));\n",{"type":52,"tag":316,"props":327,"children":329},{"class":318,"line":328},2,[330],{"type":52,"tag":316,"props":331,"children":333},{"emptyLinePlaceholder":332},true,[334],{"type":57,"value":335},"\n",{"type":52,"tag":316,"props":337,"children":339},{"class":318,"line":338},3,[340],{"type":52,"tag":316,"props":341,"children":342},{},[343],{"type":57,"value":344},"await Shell.Current.GoToAsync($\"{nameof(DetailsPage)}?id={Uri.EscapeDataString(id)}\");\n",{"type":52,"tag":305,"props":346,"children":348},{"className":307,"code":347,"language":309,"meta":310,"style":310},"public sealed partial class DetailsViewModel : ObservableObject, IQueryAttributable\n{\n    public void ApplyQueryAttributes(IDictionary\u003Cstring, object> query)\n    {\n        if (query.TryGetValue(\"id\", out var value) && value is string id)\n        {\n            Load(Uri.UnescapeDataString(id));\n        }\n    }\n}\n",[349],{"type":52,"tag":83,"props":350,"children":351},{"__ignoreMap":310},[352,360,368,376,385,394,403,412,421,430],{"type":52,"tag":316,"props":353,"children":354},{"class":318,"line":319},[355],{"type":52,"tag":316,"props":356,"children":357},{},[358],{"type":57,"value":359},"public sealed partial class DetailsViewModel : ObservableObject, IQueryAttributable\n",{"type":52,"tag":316,"props":361,"children":362},{"class":318,"line":328},[363],{"type":52,"tag":316,"props":364,"children":365},{},[366],{"type":57,"value":367},"{\n",{"type":52,"tag":316,"props":369,"children":370},{"class":318,"line":338},[371],{"type":52,"tag":316,"props":372,"children":373},{},[374],{"type":57,"value":375},"    public void ApplyQueryAttributes(IDictionary\u003Cstring, object> query)\n",{"type":52,"tag":316,"props":377,"children":379},{"class":318,"line":378},4,[380],{"type":52,"tag":316,"props":381,"children":382},{},[383],{"type":57,"value":384},"    {\n",{"type":52,"tag":316,"props":386,"children":388},{"class":318,"line":387},5,[389],{"type":52,"tag":316,"props":390,"children":391},{},[392],{"type":57,"value":393},"        if (query.TryGetValue(\"id\", out var value) && value is string id)\n",{"type":52,"tag":316,"props":395,"children":397},{"class":318,"line":396},6,[398],{"type":52,"tag":316,"props":399,"children":400},{},[401],{"type":57,"value":402},"        {\n",{"type":52,"tag":316,"props":404,"children":406},{"class":318,"line":405},7,[407],{"type":52,"tag":316,"props":408,"children":409},{},[410],{"type":57,"value":411},"            Load(Uri.UnescapeDataString(id));\n",{"type":52,"tag":316,"props":413,"children":415},{"class":318,"line":414},8,[416],{"type":52,"tag":316,"props":417,"children":418},{},[419],{"type":57,"value":420},"        }\n",{"type":52,"tag":316,"props":422,"children":424},{"class":318,"line":423},9,[425],{"type":52,"tag":316,"props":426,"children":427},{},[428],{"type":57,"value":429},"    }\n",{"type":52,"tag":316,"props":431,"children":433},{"class":318,"line":432},10,[434],{"type":52,"tag":316,"props":435,"children":436},{},[437],{"type":57,"value":438},"}\n",{"type":52,"tag":66,"props":440,"children":442},{"id":441},"trim-safe-shell-query-parameters",[443],{"type":57,"value":444},"Trim-safe Shell query parameters",{"type":52,"tag":446,"props":447,"children":448},"ul",{},[449,466,478,489],{"type":52,"tag":77,"props":450,"children":451},{},[452,457,459,465],{"type":52,"tag":83,"props":453,"children":455},{"className":454},[],[456],{"type":57,"value":165},{"type":57,"value":458}," is convenient, but it is ",{"type":52,"tag":460,"props":461,"children":462},"strong",{},[463],{"type":57,"value":464},"not trim-safe",{"type":57,"value":115},{"type":52,"tag":77,"props":467,"children":468},{},[469,471,476],{"type":57,"value":470},"When full trimming or NativeAOT is in scope, use ",{"type":52,"tag":83,"props":472,"children":474},{"className":473},[],[475],{"type":57,"value":157},{"type":57,"value":477}," on the\nreceiving page or ViewModel instead.",{"type":52,"tag":77,"props":479,"children":480},{},[481,487],{"type":52,"tag":83,"props":482,"children":484},{"className":483},[],[485],{"type":57,"value":486},"ApplyQueryAttributes",{"type":57,"value":488}," keeps parsing, validation, conversion, and failure\nhandling explicit instead of relying on attribute-based property assignment.",{"type":52,"tag":77,"props":490,"children":491},{},[492,494,499,501,507],{"type":57,"value":493},"When values came from URI-based Shell navigation, string entries received via\n",{"type":52,"tag":83,"props":495,"children":497},{"className":496},[],[498],{"type":57,"value":157},{"type":57,"value":500}," are not automatically URL-decoded. Decode them\nexplicitly, for example with ",{"type":52,"tag":83,"props":502,"children":504},{"className":503},[],[505],{"type":57,"value":506},"Uri.UnescapeDataString",{"type":57,"value":508},", before using them.",{"type":52,"tag":66,"props":510,"children":512},{"id":511},"compiled-binding-pattern",[513],{"type":57,"value":514},"Compiled Binding Pattern",{"type":52,"tag":60,"props":516,"children":517},{},[518,520,525],{"type":57,"value":519},"Compiled bindings with ",{"type":52,"tag":83,"props":521,"children":523},{"className":522},[],[524],{"type":57,"value":131},{"type":57,"value":526}," give compile-time type checking, eliminate\nreflection overhead, and can provide measurable startup and scrolling performance\nimprovements over reflection-based bindings.",{"type":52,"tag":305,"props":528,"children":532},{"className":529,"code":530,"language":531,"meta":310,"style":310},"language-xml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003CContentPage\n    x:Class=\"MyApp.Views.ProductsPage\"\n    xmlns=\"http:\u002F\u002Fschemas.microsoft.com\u002Fdotnet\u002F2021\u002Fmaui\"\n    xmlns:x=\"http:\u002F\u002Fschemas.microsoft.com\u002Fwinfx\u002F2009\u002Fxaml\"\n    xmlns:viewModels=\"clr-namespace:MyApp.ViewModels\"\n    xmlns:models=\"clr-namespace:MyApp.Models\"\n    x:DataType=\"viewModels:ProductsViewModel\">\n    \u003CCollectionView ItemsSource=\"{Binding Products}\">\n        \u003CCollectionView.ItemTemplate>\n            \u003CDataTemplate x:DataType=\"models:Product\">\n                \u003CLabel Text=\"{Binding Name}\" \u002F>\n            \u003C\u002FDataTemplate>\n        \u003C\u002FCollectionView.ItemTemplate>\n    \u003C\u002FCollectionView>\n\u003C\u002FContentPage>\n","xml",[533],{"type":52,"tag":83,"props":534,"children":535},{"__ignoreMap":310},[536,544,552,560,568,576,584,592,600,608,616,625,634,643,652],{"type":52,"tag":316,"props":537,"children":538},{"class":318,"line":319},[539],{"type":52,"tag":316,"props":540,"children":541},{},[542],{"type":57,"value":543},"\u003CContentPage\n",{"type":52,"tag":316,"props":545,"children":546},{"class":318,"line":328},[547],{"type":52,"tag":316,"props":548,"children":549},{},[550],{"type":57,"value":551},"    x:Class=\"MyApp.Views.ProductsPage\"\n",{"type":52,"tag":316,"props":553,"children":554},{"class":318,"line":338},[555],{"type":52,"tag":316,"props":556,"children":557},{},[558],{"type":57,"value":559},"    xmlns=\"http:\u002F\u002Fschemas.microsoft.com\u002Fdotnet\u002F2021\u002Fmaui\"\n",{"type":52,"tag":316,"props":561,"children":562},{"class":318,"line":378},[563],{"type":52,"tag":316,"props":564,"children":565},{},[566],{"type":57,"value":567},"    xmlns:x=\"http:\u002F\u002Fschemas.microsoft.com\u002Fwinfx\u002F2009\u002Fxaml\"\n",{"type":52,"tag":316,"props":569,"children":570},{"class":318,"line":387},[571],{"type":52,"tag":316,"props":572,"children":573},{},[574],{"type":57,"value":575},"    xmlns:viewModels=\"clr-namespace:MyApp.ViewModels\"\n",{"type":52,"tag":316,"props":577,"children":578},{"class":318,"line":396},[579],{"type":52,"tag":316,"props":580,"children":581},{},[582],{"type":57,"value":583},"    xmlns:models=\"clr-namespace:MyApp.Models\"\n",{"type":52,"tag":316,"props":585,"children":586},{"class":318,"line":405},[587],{"type":52,"tag":316,"props":588,"children":589},{},[590],{"type":57,"value":591},"    x:DataType=\"viewModels:ProductsViewModel\">\n",{"type":52,"tag":316,"props":593,"children":594},{"class":318,"line":414},[595],{"type":52,"tag":316,"props":596,"children":597},{},[598],{"type":57,"value":599},"    \u003CCollectionView ItemsSource=\"{Binding Products}\">\n",{"type":52,"tag":316,"props":601,"children":602},{"class":318,"line":423},[603],{"type":52,"tag":316,"props":604,"children":605},{},[606],{"type":57,"value":607},"        \u003CCollectionView.ItemTemplate>\n",{"type":52,"tag":316,"props":609,"children":610},{"class":318,"line":432},[611],{"type":52,"tag":316,"props":612,"children":613},{},[614],{"type":57,"value":615},"            \u003CDataTemplate x:DataType=\"models:Product\">\n",{"type":52,"tag":316,"props":617,"children":619},{"class":318,"line":618},11,[620],{"type":52,"tag":316,"props":621,"children":622},{},[623],{"type":57,"value":624},"                \u003CLabel Text=\"{Binding Name}\" \u002F>\n",{"type":52,"tag":316,"props":626,"children":628},{"class":318,"line":627},12,[629],{"type":52,"tag":316,"props":630,"children":631},{},[632],{"type":57,"value":633},"            \u003C\u002FDataTemplate>\n",{"type":52,"tag":316,"props":635,"children":637},{"class":318,"line":636},13,[638],{"type":52,"tag":316,"props":639,"children":640},{},[641],{"type":57,"value":642},"        \u003C\u002FCollectionView.ItemTemplate>\n",{"type":52,"tag":316,"props":644,"children":646},{"class":318,"line":645},14,[647],{"type":52,"tag":316,"props":648,"children":649},{},[650],{"type":57,"value":651},"    \u003C\u002FCollectionView>\n",{"type":52,"tag":316,"props":653,"children":655},{"class":318,"line":654},15,[656],{"type":52,"tag":316,"props":657,"children":658},{},[659],{"type":57,"value":660},"\u003C\u002FContentPage>\n",{"type":52,"tag":66,"props":662,"children":664},{"id":663},"migration-from-older-patterns",[665],{"type":57,"value":666},"Migration from Older Patterns",{"type":52,"tag":179,"props":668,"children":669},{},[670,686],{"type":52,"tag":183,"props":671,"children":672},{},[673],{"type":52,"tag":187,"props":674,"children":675},{},[676,681],{"type":52,"tag":191,"props":677,"children":678},{},[679],{"type":57,"value":680},"Older pattern",{"type":52,"tag":191,"props":682,"children":683},{},[684],{"type":57,"value":685},"Preferred MAUI pattern",{"type":52,"tag":202,"props":687,"children":688},{},[689,714,727,740,765],{"type":52,"tag":187,"props":690,"children":691},{},[692,701],{"type":52,"tag":209,"props":693,"children":694},{},[695],{"type":52,"tag":83,"props":696,"children":698},{"className":697},[],[699],{"type":57,"value":700},"DependencyService.Get\u003CT>()",{"type":52,"tag":209,"props":702,"children":703},{},[704,706,712],{"type":57,"value":705},"Register ",{"type":52,"tag":83,"props":707,"children":709},{"className":708},[],[710],{"type":57,"value":711},"T",{"type":57,"value":713}," in DI and inject it",{"type":52,"tag":187,"props":715,"children":716},{},[717,722],{"type":52,"tag":209,"props":718,"children":719},{},[720],{"type":57,"value":721},"Static service locators",{"type":52,"tag":209,"props":723,"children":724},{},[725],{"type":57,"value":726},"Constructor injection",{"type":52,"tag":187,"props":728,"children":729},{},[730,735],{"type":52,"tag":209,"props":731,"children":732},{},[733],{"type":57,"value":734},"Stringly typed BindingContext setup everywhere",{"type":52,"tag":209,"props":736,"children":737},{},[738],{"type":57,"value":739},"Page\u002FViewModel registration and compiled bindings",{"type":52,"tag":187,"props":741,"children":742},{},[743,748],{"type":52,"tag":209,"props":744,"children":745},{},[746],{"type":57,"value":747},"Unregistered Shell route strings",{"type":52,"tag":209,"props":749,"children":750},{},[751,757,759],{"type":52,"tag":83,"props":752,"children":754},{"className":753},[],[755],{"type":57,"value":756},"Routing.RegisterRoute",{"type":57,"value":758}," plus constants or ",{"type":52,"tag":83,"props":760,"children":762},{"className":761},[],[763],{"type":57,"value":764},"nameof",{"type":52,"tag":187,"props":766,"children":767},{},[768,773],{"type":52,"tag":209,"props":769,"children":770},{},[771],{"type":57,"value":772},"Platform code in ViewModels",{"type":52,"tag":209,"props":774,"children":775},{},[776],{"type":57,"value":777},"Interface abstraction with platform implementations",{"type":52,"tag":66,"props":779,"children":781},{"id":780},"validation-checklist",[782],{"type":57,"value":783},"Validation Checklist",{"type":52,"tag":446,"props":785,"children":786},{},[787,792,804,815,820,832],{"type":52,"tag":77,"props":788,"children":789},{},[790],{"type":57,"value":791},"Services, pages, and ViewModels are registered consistently.",{"type":52,"tag":77,"props":793,"children":794},{},[795,797,802],{"type":57,"value":796},"No new service locator or ",{"type":52,"tag":83,"props":798,"children":800},{"className":799},[],[801],{"type":57,"value":288},{"type":57,"value":803}," usage was introduced.",{"type":52,"tag":77,"props":805,"children":806},{},[807,809,814],{"type":57,"value":808},"Pages and templates that bind to ViewModels\u002Fmodels have ",{"type":52,"tag":83,"props":810,"children":812},{"className":811},[],[813],{"type":57,"value":131},{"type":57,"value":115},{"type":52,"tag":77,"props":816,"children":817},{},[818],{"type":57,"value":819},"Routes are registered before use and query values are encoded.",{"type":52,"tag":77,"props":821,"children":822},{},[823,825,830],{"type":57,"value":824},"Trim-sensitive or NativeAOT-sensitive Shell navigation uses\n",{"type":52,"tag":83,"props":826,"children":828},{"className":827},[],[829],{"type":57,"value":157},{"type":57,"value":831},", and string URI query values are explicitly decoded.",{"type":52,"tag":77,"props":833,"children":834},{},[835],{"type":57,"value":836},"ViewModels remain testable without starting a MAUI app.",{"type":52,"tag":838,"props":839,"children":840},"style",{},[841],{"type":57,"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":1007},[845,861,878,891,908,922,941,951,963,973,986,997],{"slug":846,"name":846,"fn":847,"description":848,"org":849,"tags":850,"stars":858,"repoUrl":859,"updatedAt":860},"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},[851,852,855],{"name":20,"slug":21,"type":15},{"name":853,"slug":854,"type":15},"Engineering","engineering",{"name":856,"slug":857,"type":15},"Performance","performance",5535,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmsbuild","2026-07-22T05:37:33.965588",{"slug":862,"name":862,"fn":863,"description":864,"org":865,"tags":866,"stars":875,"repoUrl":876,"updatedAt":877},"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},[867,868,871,874],{"name":20,"slug":21,"type":15},{"name":869,"slug":870,"type":15},"Code Analysis","code-analysis",{"name":872,"slug":873,"type":15},"Debugging","debugging",{"name":856,"slug":857,"type":15},4576,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills","2026-07-12T08:23:25.400375",{"slug":879,"name":879,"fn":880,"description":881,"org":882,"tags":883,"stars":875,"repoUrl":876,"updatedAt":890},"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},[884,885,887,888],{"name":20,"slug":21,"type":15},{"name":886,"slug":32,"type":15},"Android",{"name":872,"slug":873,"type":15},{"name":889,"slug":37,"type":15},"Microsoft","2026-07-12T08:23:21.595572",{"slug":892,"name":892,"fn":893,"description":894,"org":895,"tags":896,"stars":875,"repoUrl":876,"updatedAt":907},"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},[897,898,899,901,904],{"name":20,"slug":21,"type":15},{"name":872,"slug":873,"type":15},{"name":900,"slug":34,"type":15},"iOS",{"name":902,"slug":903,"type":15},"macOS","macos",{"name":905,"slug":906,"type":15},"Observability","observability","2026-07-12T08:23:20.369986",{"slug":909,"name":909,"fn":910,"description":911,"org":912,"tags":913,"stars":875,"repoUrl":876,"updatedAt":921},"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},[914,915,918],{"name":869,"slug":870,"type":15},{"name":916,"slug":917,"type":15},"QA","qa",{"name":919,"slug":920,"type":15},"Testing","testing","2026-07-12T08:23:51.277743",{"slug":923,"name":923,"fn":924,"description":925,"org":926,"tags":927,"stars":875,"repoUrl":876,"updatedAt":940},"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},[928,929,932,934,937],{"name":20,"slug":21,"type":15},{"name":930,"slug":931,"type":15},"Blazor","blazor",{"name":933,"slug":309,"type":15},"C#",{"name":935,"slug":936,"type":15},"UI Components","ui-components",{"name":938,"slug":939,"type":15},"Web Development","web-development","2026-07-15T06:03:29.216359",{"slug":942,"name":942,"fn":943,"description":944,"org":945,"tags":946,"stars":875,"repoUrl":876,"updatedAt":950},"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},[947,948,949],{"name":869,"slug":870,"type":15},{"name":872,"slug":873,"type":15},{"name":889,"slug":37,"type":15},"2026-07-12T08:21:34.637923",{"slug":952,"name":952,"fn":953,"description":954,"org":955,"tags":956,"stars":875,"repoUrl":876,"updatedAt":962},"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},[957,960,961],{"name":958,"slug":959,"type":15},"Build","build",{"name":872,"slug":873,"type":15},{"name":853,"slug":854,"type":15},"2026-07-19T05:38:19.340791",{"slug":964,"name":964,"fn":965,"description":966,"org":967,"tags":968,"stars":875,"repoUrl":876,"updatedAt":972},"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},[969,970,971],{"name":20,"slug":21,"type":15},{"name":853,"slug":854,"type":15},{"name":856,"slug":857,"type":15},"2026-07-19T05:38:18.364937",{"slug":974,"name":974,"fn":975,"description":976,"org":977,"tags":978,"stars":875,"repoUrl":876,"updatedAt":985},"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},[979,980,983,984],{"name":853,"slug":854,"type":15},{"name":981,"slug":982,"type":15},"Monitoring","monitoring",{"name":856,"slug":857,"type":15},{"name":919,"slug":920,"type":15},"2026-07-12T08:21:35.865649",{"slug":987,"name":987,"fn":988,"description":989,"org":990,"tags":991,"stars":875,"repoUrl":876,"updatedAt":996},"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},[992,993,994,995],{"name":20,"slug":21,"type":15},{"name":872,"slug":873,"type":15},{"name":853,"slug":854,"type":15},{"name":856,"slug":857,"type":15},"2026-07-12T08:21:40.961722",{"slug":998,"name":998,"fn":999,"description":1000,"org":1001,"tags":1002,"stars":875,"repoUrl":876,"updatedAt":1006},"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},[1003,1004,1005],{"name":872,"slug":873,"type":15},{"name":853,"slug":854,"type":15},{"name":916,"slug":917,"type":15},"2026-07-19T05:38:14.336279",144,{"items":1009,"total":1107},[1010,1026,1039,1051,1064,1080,1096],{"slug":1011,"name":1011,"fn":1012,"description":1013,"org":1014,"tags":1015,"stars":25,"repoUrl":26,"updatedAt":1025},"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},[1016,1017,1018,1021,1024],{"name":20,"slug":21,"type":15},{"name":886,"slug":32,"type":15},{"name":1019,"slug":1020,"type":15},"Java","java",{"name":1022,"slug":1023,"type":15},"Kotlin","kotlin",{"name":23,"slug":24,"type":15},"2026-07-12T08:22:54.006105",{"slug":1027,"name":1027,"fn":1028,"description":1029,"org":1030,"tags":1031,"stars":25,"repoUrl":26,"updatedAt":1038},"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},[1032,1033,1036,1037],{"name":20,"slug":21,"type":15},{"name":1034,"slug":1035,"type":15},"Automation","automation",{"name":17,"slug":18,"type":15},{"name":23,"slug":24,"type":15},"2026-07-12T08:22:56.616564",{"slug":1040,"name":1040,"fn":1041,"description":1042,"org":1043,"tags":1044,"stars":25,"repoUrl":26,"updatedAt":1050},"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},[1045,1046,1047],{"name":872,"slug":873,"type":15},{"name":17,"slug":18,"type":15},{"name":1048,"slug":1049,"type":15},"Networking","networking","2026-07-12T08:22:48.847431",{"slug":1052,"name":1052,"fn":1053,"description":1054,"org":1055,"tags":1056,"stars":25,"repoUrl":26,"updatedAt":1063},"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},[1057,1058,1061,1062],{"name":933,"slug":309,"type":15},{"name":1059,"slug":1060,"type":15},"CLI","cli",{"name":853,"slug":854,"type":15},{"name":17,"slug":18,"type":15},"2026-07-12T08:22:46.318953",{"slug":1065,"name":1065,"fn":1066,"description":1067,"org":1068,"tags":1069,"stars":25,"repoUrl":26,"updatedAt":1079},"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},[1070,1071,1072,1073,1076],{"name":20,"slug":21,"type":15},{"name":900,"slug":34,"type":15},{"name":17,"slug":18,"type":15},{"name":1074,"slug":1075,"type":15},"Swift","swift",{"name":1077,"slug":1078,"type":15},"Xcode","xcode","2026-07-12T08:22:50.128667",{"slug":1081,"name":1081,"fn":1082,"description":1083,"org":1084,"tags":1085,"stars":25,"repoUrl":26,"updatedAt":1095},"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},[1086,1087,1090,1091,1092],{"name":20,"slug":21,"type":15},{"name":1088,"slug":1089,"type":15},"Accessibility","accessibility",{"name":17,"slug":18,"type":15},{"name":23,"slug":24,"type":15},{"name":1093,"slug":1094,"type":15},"WCAG","wcag","2026-07-12T08:22:17.823583",{"slug":1097,"name":1097,"fn":1098,"description":1099,"org":1100,"tags":1101,"stars":25,"repoUrl":26,"updatedAt":1106},"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},[1102,1103,1104,1105],{"name":20,"slug":21,"type":15},{"name":872,"slug":873,"type":15},{"name":17,"slug":18,"type":15},{"name":23,"slug":24,"type":15},"2026-07-12T08:22:52.634889",32]