[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-dotnet-maui-controls-deep-dive":3,"mdc-sv0y8-key":46,"related-org-dotnet-maui-controls-deep-dive":1031,"related-repo-dotnet-maui-controls-deep-dive":1194},{"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-controls-deep-dive","apply advanced .NET MAUI control patterns","Apply advanced MAUI control guidance. USE FOR: `CollectionView` incremental loading, `RemainingItemsThreshold`, `EmptyView`, `AutomationId`, avoiding `ScrollView` wrappers, `SafeAreaEdges` on .NET 10, `GraphicsView`\u002F`IDrawable`\u002F`Invalidate` hot-path performance, gestures, animations. DO NOT USE FOR: general layout, full accessibility audits, profiling, or handlers.",{"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},".NET","net",{"name":20,"slug":21,"type":15},"Mobile","mobile",{"name":23,"slug":24,"type":15},"UI Components","ui-components",190,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmaui-labs","2026-07-12T08:22:32.245388",null,21,[31,32,33,8,34,35,14,36,37,21,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,21,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-controls-deep-dive","---\nname: maui-controls-deep-dive\ndescription: >-\n  Apply advanced MAUI control guidance. USE FOR: `CollectionView` incremental loading, `RemainingItemsThreshold`, `EmptyView`, `AutomationId`, avoiding `ScrollView` wrappers, `SafeAreaEdges` on .NET 10, `GraphicsView`\u002F`IDrawable`\u002F`Invalidate` hot-path performance, gestures, animations. DO NOT USE FOR: general layout, full accessibility audits, profiling, or handlers.\n---\n\n# MAUI Controls Deep Dive\n\nUse this skill when the user is already working with MAUI controls and needs\ndetails beyond basic layout guidance. Keep control choices aligned with current\nMAUI APIs.\n\n## Response Checklist\n\n- For list scenarios, prefer `CollectionView` with `EmptyView`,\n  `RemainingItemsThreshold`, and stable `AutomationId` hooks.\n- For edge-to-edge scenarios, call out `.NET 10` `SafeAreaEdges` values.\n- For `GraphicsView`, keep `IDrawable.Draw` hot-path guidance and add semantic\n  alternatives (`SemanticProperties` \u002F accessible companion UI).\n\n## Workflow\n\n1. Inspect the target framework and whether the UI is XAML, C# Markup, or another\n   MAUI UI style.\n2. Identify the control area: `CollectionView`, safe area, gestures, animations,\n   or `GraphicsView`.\n3. Apply the focused guidance below. Route broad accessibility audits to\n   `maui-accessibility`; for GraphicsView-specific semantics, apply\n   `SemanticProperties` and `AutomationId` directly (see GraphicsView section).\n   Route performance profiling to `maui-performance`.\n4. Validate the control on the intended device sizes and platforms.\n\n## CollectionView\n\nUse `CollectionView` for repeated data and let it own scrolling:\n\n- Do not wrap it in `ScrollView`.\n- Use `EmptyView`, header\u002Ffooter, and surrounding `Grid` rows for non-item UI.\n- Use `RemainingItemsThreshold` \u002F `RemainingItemsThresholdReachedCommand` for\n  incremental loading.\n- Use `SelectionMode`, `SelectedItem`, and `SelectionChangedCommand` instead of\n  tap gestures on item roots when selection is the intent.\n- Keep item templates lightweight. Avoid nested layouts and expensive converters\n  in large lists.\n- Prefer stable `AutomationId` values on the list and critical item controls.\n- For .NET 10 iOS\u002FMac Catalyst behavior, check current handler guidance before\n  opting into or reverting CollectionView handlers.\n\nExample state shell:\n\n```xml\n\u003CGrid RowDefinitions=\"Auto,*\">\n    \u003CActivityIndicator\n        AutomationId=\"orders-loading\"\n        IsRunning=\"{Binding IsBusy}\"\n        IsVisible=\"{Binding IsBusy}\" \u002F>\n\n    \u003CCollectionView\n        Grid.Row=\"1\"\n        AutomationId=\"orders-list\"\n        ItemsSource=\"{Binding Orders}\"\n        RemainingItemsThreshold=\"5\"\n        RemainingItemsThresholdReachedCommand=\"{Binding LoadMoreCommand}\">\n        \u003CCollectionView.EmptyView>\n            \u003CLabel\n                AutomationId=\"orders-empty\"\n                Text=\"No orders found.\" \u002F>\n        \u003C\u002FCollectionView.EmptyView>\n    \u003C\u002FCollectionView>\n\u003C\u002FGrid>\n```\n\n## Safe Areas\n\nFor .NET 10+ safe-area work, use `SafeAreaEdges` on the root container instead\nof hard-coded iOS-only padding:\n\n| Value | Effect |\n|---|---|\n| `SafeAreaEdges.Container` | Insets only the device bezel\u002Fnotch boundary |\n| `SafeAreaEdges.SoftInput` | Also avoids the on-screen keyboard |\n| `SafeAreaEdges.All` | All edges including status bar and navigation areas |\n\n```xml\n\u003C!-- XAML: apply on the outermost layout that should respect device edges -->\n\u003CGrid SafeAreaEdges=\"Container\">\n    ...\n\u003C\u002FGrid>\n```\n\n```csharp\n\u002F\u002F C# Markup\nnew Grid { SafeAreaEdges = SafeAreaEdges.Container }\n```\n\nKeep safe-area behavior declarative. Test with notches, rounded corners, desktop\ntitle bars, and soft keyboard scenarios when the page uses edge-to-edge layout.\nIf the MAUI version is unknown, use `maui-current-apis` before changing APIs.\n\n## Gestures\n\n- Use `TapGestureRecognizer` for click\u002Ftap. Do not use removed or obsolete\n  click gesture APIs.\n- Use `PointerGestureRecognizer` for hover\u002Fdesktop pointer affordances.\n- Use `PanGestureRecognizer`, `SwipeGestureRecognizer`, and\n  `PinchGestureRecognizer` only where the gesture maps to an obvious UI action.\n- Do not attach competing gestures to deeply nested controls without testing\n  hit-testing and scrolling interactions.\n- Preserve accessibility alternatives: commands, buttons, menu items, keyboard\n  accelerators, or semantic descriptions as appropriate.\n\n## Animations\n\n- Prefer built-in async animation helpers such as `FadeTo`, `ScaleTo`,\n  `TranslateTo`, and `RotateTo` for view animations.\n- Await or coordinate animations so state changes do not race.\n- Cancel or ignore stale animations when view models unload or commands rerun.\n- Avoid animation-only feedback for important state; expose semantic state and\n  visual states too.\n- Keep list item animations modest; animating many recycled cells can hurt\n  scrolling performance.\n\n## GraphicsView\n\nUse `GraphicsView` for custom drawing, charts, signatures, or lightweight\nvisualizations:\n\n- Put drawing code in an `IDrawable`.\n- Treat `Draw(ICanvas canvas, RectF dirtyRect)` as a hot path: avoid allocations,\n  blocking I\u002FO, async calls, and service lookups.\n- Store state outside the drawable and call `Invalidate()` when state changes.\n- Handle pointer\u002Ftouch input at the view or page layer and translate it to\n  drawing state.\n- For important information in the drawing, provide accessible alternatives\n  outside the canvas: wrap the `GraphicsView` alongside a `Label` or use\n  `SemanticProperties.Description` on the view so screen readers announce it.\n  `AutomationId` on the `GraphicsView` enables UI-test targeting.\n- Use `SemanticScreenReader.Announce` for dynamic changes that must be audible.\n- If drawing stutters or allocates heavily, consult `maui-performance`.\n\n## Validation Checklist\n\n- `CollectionView` owns its scrolling and has empty\u002Floading behavior where data\n  can be absent.\n- Safe-area code matches the detected MAUI version and target platforms.\n- Gestures have accessible alternatives for critical actions.\n- Animations cannot leave the UI in stale state after cancellation or navigation.\n- `GraphicsView` drawing is allocation-conscious and exposes important content\n  outside the canvas.\n",{"data":47,"body":48},{"name":4,"description":6},{"type":49,"children":50},"root",[51,59,65,72,165,171,238,243,255,358,363,548,554,566,645,683,708,721,727,791,797,854,859,870,981,987,1025],{"type":52,"tag":53,"props":54,"children":55},"element","h1",{"id":4},[56],{"type":57,"value":58},"text","MAUI Controls Deep Dive",{"type":52,"tag":60,"props":61,"children":62},"p",{},[63],{"type":57,"value":64},"Use this skill when the user is already working with MAUI controls and needs\ndetails beyond basic layout guidance. Keep control choices aligned with current\nMAUI APIs.",{"type":52,"tag":66,"props":67,"children":69},"h2",{"id":68},"response-checklist",[70],{"type":57,"value":71},"Response Checklist",{"type":52,"tag":73,"props":74,"children":75},"ul",{},[76,115,136],{"type":52,"tag":77,"props":78,"children":79},"li",{},[80,82,89,91,97,99,105,107,113],{"type":57,"value":81},"For list scenarios, prefer ",{"type":52,"tag":83,"props":84,"children":86},"code",{"className":85},[],[87],{"type":57,"value":88},"CollectionView",{"type":57,"value":90}," with ",{"type":52,"tag":83,"props":92,"children":94},{"className":93},[],[95],{"type":57,"value":96},"EmptyView",{"type":57,"value":98},",\n",{"type":52,"tag":83,"props":100,"children":102},{"className":101},[],[103],{"type":57,"value":104},"RemainingItemsThreshold",{"type":57,"value":106},", and stable ",{"type":52,"tag":83,"props":108,"children":110},{"className":109},[],[111],{"type":57,"value":112},"AutomationId",{"type":57,"value":114}," hooks.",{"type":52,"tag":77,"props":116,"children":117},{},[118,120,126,128,134],{"type":57,"value":119},"For edge-to-edge scenarios, call out ",{"type":52,"tag":83,"props":121,"children":123},{"className":122},[],[124],{"type":57,"value":125},".NET 10",{"type":57,"value":127}," ",{"type":52,"tag":83,"props":129,"children":131},{"className":130},[],[132],{"type":57,"value":133},"SafeAreaEdges",{"type":57,"value":135}," values.",{"type":52,"tag":77,"props":137,"children":138},{},[139,141,147,149,155,157,163],{"type":57,"value":140},"For ",{"type":52,"tag":83,"props":142,"children":144},{"className":143},[],[145],{"type":57,"value":146},"GraphicsView",{"type":57,"value":148},", keep ",{"type":52,"tag":83,"props":150,"children":152},{"className":151},[],[153],{"type":57,"value":154},"IDrawable.Draw",{"type":57,"value":156}," hot-path guidance and add semantic\nalternatives (",{"type":52,"tag":83,"props":158,"children":160},{"className":159},[],[161],{"type":57,"value":162},"SemanticProperties",{"type":57,"value":164}," \u002F accessible companion UI).",{"type":52,"tag":66,"props":166,"children":168},{"id":167},"workflow",[169],{"type":57,"value":170},"Workflow",{"type":52,"tag":172,"props":173,"children":174},"ol",{},[175,180,199,233],{"type":52,"tag":77,"props":176,"children":177},{},[178],{"type":57,"value":179},"Inspect the target framework and whether the UI is XAML, C# Markup, or another\nMAUI UI style.",{"type":52,"tag":77,"props":181,"children":182},{},[183,185,190,192,197],{"type":57,"value":184},"Identify the control area: ",{"type":52,"tag":83,"props":186,"children":188},{"className":187},[],[189],{"type":57,"value":88},{"type":57,"value":191},", safe area, gestures, animations,\nor ",{"type":52,"tag":83,"props":193,"children":195},{"className":194},[],[196],{"type":57,"value":146},{"type":57,"value":198},".",{"type":52,"tag":77,"props":200,"children":201},{},[202,204,210,212,217,219,224,226,232],{"type":57,"value":203},"Apply the focused guidance below. Route broad accessibility audits to\n",{"type":52,"tag":83,"props":205,"children":207},{"className":206},[],[208],{"type":57,"value":209},"maui-accessibility",{"type":57,"value":211},"; for GraphicsView-specific semantics, apply\n",{"type":52,"tag":83,"props":213,"children":215},{"className":214},[],[216],{"type":57,"value":162},{"type":57,"value":218}," and ",{"type":52,"tag":83,"props":220,"children":222},{"className":221},[],[223],{"type":57,"value":112},{"type":57,"value":225}," directly (see GraphicsView section).\nRoute performance profiling to ",{"type":52,"tag":83,"props":227,"children":229},{"className":228},[],[230],{"type":57,"value":231},"maui-performance",{"type":57,"value":198},{"type":52,"tag":77,"props":234,"children":235},{},[236],{"type":57,"value":237},"Validate the control on the intended device sizes and platforms.",{"type":52,"tag":66,"props":239,"children":241},{"id":240},"collectionview",[242],{"type":57,"value":88},{"type":52,"tag":60,"props":244,"children":245},{},[246,248,253],{"type":57,"value":247},"Use ",{"type":52,"tag":83,"props":249,"children":251},{"className":250},[],[252],{"type":57,"value":88},{"type":57,"value":254}," for repeated data and let it own scrolling:",{"type":52,"tag":73,"props":256,"children":257},{},[258,270,289,308,336,341,353],{"type":52,"tag":77,"props":259,"children":260},{},[261,263,269],{"type":57,"value":262},"Do not wrap it in ",{"type":52,"tag":83,"props":264,"children":266},{"className":265},[],[267],{"type":57,"value":268},"ScrollView",{"type":57,"value":198},{"type":52,"tag":77,"props":271,"children":272},{},[273,274,279,281,287],{"type":57,"value":247},{"type":52,"tag":83,"props":275,"children":277},{"className":276},[],[278],{"type":57,"value":96},{"type":57,"value":280},", header\u002Ffooter, and surrounding ",{"type":52,"tag":83,"props":282,"children":284},{"className":283},[],[285],{"type":57,"value":286},"Grid",{"type":57,"value":288}," rows for non-item UI.",{"type":52,"tag":77,"props":290,"children":291},{},[292,293,298,300,306],{"type":57,"value":247},{"type":52,"tag":83,"props":294,"children":296},{"className":295},[],[297],{"type":57,"value":104},{"type":57,"value":299}," \u002F ",{"type":52,"tag":83,"props":301,"children":303},{"className":302},[],[304],{"type":57,"value":305},"RemainingItemsThresholdReachedCommand",{"type":57,"value":307}," for\nincremental loading.",{"type":52,"tag":77,"props":309,"children":310},{},[311,312,318,320,326,328,334],{"type":57,"value":247},{"type":52,"tag":83,"props":313,"children":315},{"className":314},[],[316],{"type":57,"value":317},"SelectionMode",{"type":57,"value":319},", ",{"type":52,"tag":83,"props":321,"children":323},{"className":322},[],[324],{"type":57,"value":325},"SelectedItem",{"type":57,"value":327},", and ",{"type":52,"tag":83,"props":329,"children":331},{"className":330},[],[332],{"type":57,"value":333},"SelectionChangedCommand",{"type":57,"value":335}," instead of\ntap gestures on item roots when selection is the intent.",{"type":52,"tag":77,"props":337,"children":338},{},[339],{"type":57,"value":340},"Keep item templates lightweight. Avoid nested layouts and expensive converters\nin large lists.",{"type":52,"tag":77,"props":342,"children":343},{},[344,346,351],{"type":57,"value":345},"Prefer stable ",{"type":52,"tag":83,"props":347,"children":349},{"className":348},[],[350],{"type":57,"value":112},{"type":57,"value":352}," values on the list and critical item controls.",{"type":52,"tag":77,"props":354,"children":355},{},[356],{"type":57,"value":357},"For .NET 10 iOS\u002FMac Catalyst behavior, check current handler guidance before\nopting into or reverting CollectionView handlers.",{"type":52,"tag":60,"props":359,"children":360},{},[361],{"type":57,"value":362},"Example state shell:",{"type":52,"tag":364,"props":365,"children":370},"pre",{"className":366,"code":367,"language":368,"meta":369,"style":369},"language-xml shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003CGrid RowDefinitions=\"Auto,*\">\n    \u003CActivityIndicator\n        AutomationId=\"orders-loading\"\n        IsRunning=\"{Binding IsBusy}\"\n        IsVisible=\"{Binding IsBusy}\" \u002F>\n\n    \u003CCollectionView\n        Grid.Row=\"1\"\n        AutomationId=\"orders-list\"\n        ItemsSource=\"{Binding Orders}\"\n        RemainingItemsThreshold=\"5\"\n        RemainingItemsThresholdReachedCommand=\"{Binding LoadMoreCommand}\">\n        \u003CCollectionView.EmptyView>\n            \u003CLabel\n                AutomationId=\"orders-empty\"\n                Text=\"No orders found.\" \u002F>\n        \u003C\u002FCollectionView.EmptyView>\n    \u003C\u002FCollectionView>\n\u003C\u002FGrid>\n","xml","",[371],{"type":52,"tag":83,"props":372,"children":373},{"__ignoreMap":369},[374,385,394,403,412,421,431,440,449,458,467,476,485,494,503,512,521,530,539],{"type":52,"tag":375,"props":376,"children":379},"span",{"class":377,"line":378},"line",1,[380],{"type":52,"tag":375,"props":381,"children":382},{},[383],{"type":57,"value":384},"\u003CGrid RowDefinitions=\"Auto,*\">\n",{"type":52,"tag":375,"props":386,"children":388},{"class":377,"line":387},2,[389],{"type":52,"tag":375,"props":390,"children":391},{},[392],{"type":57,"value":393},"    \u003CActivityIndicator\n",{"type":52,"tag":375,"props":395,"children":397},{"class":377,"line":396},3,[398],{"type":52,"tag":375,"props":399,"children":400},{},[401],{"type":57,"value":402},"        AutomationId=\"orders-loading\"\n",{"type":52,"tag":375,"props":404,"children":406},{"class":377,"line":405},4,[407],{"type":52,"tag":375,"props":408,"children":409},{},[410],{"type":57,"value":411},"        IsRunning=\"{Binding IsBusy}\"\n",{"type":52,"tag":375,"props":413,"children":415},{"class":377,"line":414},5,[416],{"type":52,"tag":375,"props":417,"children":418},{},[419],{"type":57,"value":420},"        IsVisible=\"{Binding IsBusy}\" \u002F>\n",{"type":52,"tag":375,"props":422,"children":424},{"class":377,"line":423},6,[425],{"type":52,"tag":375,"props":426,"children":428},{"emptyLinePlaceholder":427},true,[429],{"type":57,"value":430},"\n",{"type":52,"tag":375,"props":432,"children":434},{"class":377,"line":433},7,[435],{"type":52,"tag":375,"props":436,"children":437},{},[438],{"type":57,"value":439},"    \u003CCollectionView\n",{"type":52,"tag":375,"props":441,"children":443},{"class":377,"line":442},8,[444],{"type":52,"tag":375,"props":445,"children":446},{},[447],{"type":57,"value":448},"        Grid.Row=\"1\"\n",{"type":52,"tag":375,"props":450,"children":452},{"class":377,"line":451},9,[453],{"type":52,"tag":375,"props":454,"children":455},{},[456],{"type":57,"value":457},"        AutomationId=\"orders-list\"\n",{"type":52,"tag":375,"props":459,"children":461},{"class":377,"line":460},10,[462],{"type":52,"tag":375,"props":463,"children":464},{},[465],{"type":57,"value":466},"        ItemsSource=\"{Binding Orders}\"\n",{"type":52,"tag":375,"props":468,"children":470},{"class":377,"line":469},11,[471],{"type":52,"tag":375,"props":472,"children":473},{},[474],{"type":57,"value":475},"        RemainingItemsThreshold=\"5\"\n",{"type":52,"tag":375,"props":477,"children":479},{"class":377,"line":478},12,[480],{"type":52,"tag":375,"props":481,"children":482},{},[483],{"type":57,"value":484},"        RemainingItemsThresholdReachedCommand=\"{Binding LoadMoreCommand}\">\n",{"type":52,"tag":375,"props":486,"children":488},{"class":377,"line":487},13,[489],{"type":52,"tag":375,"props":490,"children":491},{},[492],{"type":57,"value":493},"        \u003CCollectionView.EmptyView>\n",{"type":52,"tag":375,"props":495,"children":497},{"class":377,"line":496},14,[498],{"type":52,"tag":375,"props":499,"children":500},{},[501],{"type":57,"value":502},"            \u003CLabel\n",{"type":52,"tag":375,"props":504,"children":506},{"class":377,"line":505},15,[507],{"type":52,"tag":375,"props":508,"children":509},{},[510],{"type":57,"value":511},"                AutomationId=\"orders-empty\"\n",{"type":52,"tag":375,"props":513,"children":515},{"class":377,"line":514},16,[516],{"type":52,"tag":375,"props":517,"children":518},{},[519],{"type":57,"value":520},"                Text=\"No orders found.\" \u002F>\n",{"type":52,"tag":375,"props":522,"children":524},{"class":377,"line":523},17,[525],{"type":52,"tag":375,"props":526,"children":527},{},[528],{"type":57,"value":529},"        \u003C\u002FCollectionView.EmptyView>\n",{"type":52,"tag":375,"props":531,"children":533},{"class":377,"line":532},18,[534],{"type":52,"tag":375,"props":535,"children":536},{},[537],{"type":57,"value":538},"    \u003C\u002FCollectionView>\n",{"type":52,"tag":375,"props":540,"children":542},{"class":377,"line":541},19,[543],{"type":52,"tag":375,"props":544,"children":545},{},[546],{"type":57,"value":547},"\u003C\u002FGrid>\n",{"type":52,"tag":66,"props":549,"children":551},{"id":550},"safe-areas",[552],{"type":57,"value":553},"Safe Areas",{"type":52,"tag":60,"props":555,"children":556},{},[557,559,564],{"type":57,"value":558},"For .NET 10+ safe-area work, use ",{"type":52,"tag":83,"props":560,"children":562},{"className":561},[],[563],{"type":57,"value":133},{"type":57,"value":565}," on the root container instead\nof hard-coded iOS-only padding:",{"type":52,"tag":567,"props":568,"children":569},"table",{},[570,589],{"type":52,"tag":571,"props":572,"children":573},"thead",{},[574],{"type":52,"tag":575,"props":576,"children":577},"tr",{},[578,584],{"type":52,"tag":579,"props":580,"children":581},"th",{},[582],{"type":57,"value":583},"Value",{"type":52,"tag":579,"props":585,"children":586},{},[587],{"type":57,"value":588},"Effect",{"type":52,"tag":590,"props":591,"children":592},"tbody",{},[593,611,628],{"type":52,"tag":575,"props":594,"children":595},{},[596,606],{"type":52,"tag":597,"props":598,"children":599},"td",{},[600],{"type":52,"tag":83,"props":601,"children":603},{"className":602},[],[604],{"type":57,"value":605},"SafeAreaEdges.Container",{"type":52,"tag":597,"props":607,"children":608},{},[609],{"type":57,"value":610},"Insets only the device bezel\u002Fnotch boundary",{"type":52,"tag":575,"props":612,"children":613},{},[614,623],{"type":52,"tag":597,"props":615,"children":616},{},[617],{"type":52,"tag":83,"props":618,"children":620},{"className":619},[],[621],{"type":57,"value":622},"SafeAreaEdges.SoftInput",{"type":52,"tag":597,"props":624,"children":625},{},[626],{"type":57,"value":627},"Also avoids the on-screen keyboard",{"type":52,"tag":575,"props":629,"children":630},{},[631,640],{"type":52,"tag":597,"props":632,"children":633},{},[634],{"type":52,"tag":83,"props":635,"children":637},{"className":636},[],[638],{"type":57,"value":639},"SafeAreaEdges.All",{"type":52,"tag":597,"props":641,"children":642},{},[643],{"type":57,"value":644},"All edges including status bar and navigation areas",{"type":52,"tag":364,"props":646,"children":648},{"className":366,"code":647,"language":368,"meta":369,"style":369},"\u003C!-- XAML: apply on the outermost layout that should respect device edges -->\n\u003CGrid SafeAreaEdges=\"Container\">\n    ...\n\u003C\u002FGrid>\n",[649],{"type":52,"tag":83,"props":650,"children":651},{"__ignoreMap":369},[652,660,668,676],{"type":52,"tag":375,"props":653,"children":654},{"class":377,"line":378},[655],{"type":52,"tag":375,"props":656,"children":657},{},[658],{"type":57,"value":659},"\u003C!-- XAML: apply on the outermost layout that should respect device edges -->\n",{"type":52,"tag":375,"props":661,"children":662},{"class":377,"line":387},[663],{"type":52,"tag":375,"props":664,"children":665},{},[666],{"type":57,"value":667},"\u003CGrid SafeAreaEdges=\"Container\">\n",{"type":52,"tag":375,"props":669,"children":670},{"class":377,"line":396},[671],{"type":52,"tag":375,"props":672,"children":673},{},[674],{"type":57,"value":675},"    ...\n",{"type":52,"tag":375,"props":677,"children":678},{"class":377,"line":405},[679],{"type":52,"tag":375,"props":680,"children":681},{},[682],{"type":57,"value":547},{"type":52,"tag":364,"props":684,"children":688},{"className":685,"code":686,"language":687,"meta":369,"style":369},"language-csharp shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u002F\u002F C# Markup\nnew Grid { SafeAreaEdges = SafeAreaEdges.Container }\n","csharp",[689],{"type":52,"tag":83,"props":690,"children":691},{"__ignoreMap":369},[692,700],{"type":52,"tag":375,"props":693,"children":694},{"class":377,"line":378},[695],{"type":52,"tag":375,"props":696,"children":697},{},[698],{"type":57,"value":699},"\u002F\u002F C# Markup\n",{"type":52,"tag":375,"props":701,"children":702},{"class":377,"line":387},[703],{"type":52,"tag":375,"props":704,"children":705},{},[706],{"type":57,"value":707},"new Grid { SafeAreaEdges = SafeAreaEdges.Container }\n",{"type":52,"tag":60,"props":709,"children":710},{},[711,713,719],{"type":57,"value":712},"Keep safe-area behavior declarative. Test with notches, rounded corners, desktop\ntitle bars, and soft keyboard scenarios when the page uses edge-to-edge layout.\nIf the MAUI version is unknown, use ",{"type":52,"tag":83,"props":714,"children":716},{"className":715},[],[717],{"type":57,"value":718},"maui-current-apis",{"type":57,"value":720}," before changing APIs.",{"type":52,"tag":66,"props":722,"children":724},{"id":723},"gestures",[725],{"type":57,"value":726},"Gestures",{"type":52,"tag":73,"props":728,"children":729},{},[730,742,754,781,786],{"type":52,"tag":77,"props":731,"children":732},{},[733,734,740],{"type":57,"value":247},{"type":52,"tag":83,"props":735,"children":737},{"className":736},[],[738],{"type":57,"value":739},"TapGestureRecognizer",{"type":57,"value":741}," for click\u002Ftap. Do not use removed or obsolete\nclick gesture APIs.",{"type":52,"tag":77,"props":743,"children":744},{},[745,746,752],{"type":57,"value":247},{"type":52,"tag":83,"props":747,"children":749},{"className":748},[],[750],{"type":57,"value":751},"PointerGestureRecognizer",{"type":57,"value":753}," for hover\u002Fdesktop pointer affordances.",{"type":52,"tag":77,"props":755,"children":756},{},[757,758,764,765,771,773,779],{"type":57,"value":247},{"type":52,"tag":83,"props":759,"children":761},{"className":760},[],[762],{"type":57,"value":763},"PanGestureRecognizer",{"type":57,"value":319},{"type":52,"tag":83,"props":766,"children":768},{"className":767},[],[769],{"type":57,"value":770},"SwipeGestureRecognizer",{"type":57,"value":772},", and\n",{"type":52,"tag":83,"props":774,"children":776},{"className":775},[],[777],{"type":57,"value":778},"PinchGestureRecognizer",{"type":57,"value":780}," only where the gesture maps to an obvious UI action.",{"type":52,"tag":77,"props":782,"children":783},{},[784],{"type":57,"value":785},"Do not attach competing gestures to deeply nested controls without testing\nhit-testing and scrolling interactions.",{"type":52,"tag":77,"props":787,"children":788},{},[789],{"type":57,"value":790},"Preserve accessibility alternatives: commands, buttons, menu items, keyboard\naccelerators, or semantic descriptions as appropriate.",{"type":52,"tag":66,"props":792,"children":794},{"id":793},"animations",[795],{"type":57,"value":796},"Animations",{"type":52,"tag":73,"props":798,"children":799},{},[800,834,839,844,849],{"type":52,"tag":77,"props":801,"children":802},{},[803,805,811,812,818,819,825,826,832],{"type":57,"value":804},"Prefer built-in async animation helpers such as ",{"type":52,"tag":83,"props":806,"children":808},{"className":807},[],[809],{"type":57,"value":810},"FadeTo",{"type":57,"value":319},{"type":52,"tag":83,"props":813,"children":815},{"className":814},[],[816],{"type":57,"value":817},"ScaleTo",{"type":57,"value":98},{"type":52,"tag":83,"props":820,"children":822},{"className":821},[],[823],{"type":57,"value":824},"TranslateTo",{"type":57,"value":327},{"type":52,"tag":83,"props":827,"children":829},{"className":828},[],[830],{"type":57,"value":831},"RotateTo",{"type":57,"value":833}," for view animations.",{"type":52,"tag":77,"props":835,"children":836},{},[837],{"type":57,"value":838},"Await or coordinate animations so state changes do not race.",{"type":52,"tag":77,"props":840,"children":841},{},[842],{"type":57,"value":843},"Cancel or ignore stale animations when view models unload or commands rerun.",{"type":52,"tag":77,"props":845,"children":846},{},[847],{"type":57,"value":848},"Avoid animation-only feedback for important state; expose semantic state and\nvisual states too.",{"type":52,"tag":77,"props":850,"children":851},{},[852],{"type":57,"value":853},"Keep list item animations modest; animating many recycled cells can hurt\nscrolling performance.",{"type":52,"tag":66,"props":855,"children":857},{"id":856},"graphicsview",[858],{"type":57,"value":146},{"type":52,"tag":60,"props":860,"children":861},{},[862,863,868],{"type":57,"value":247},{"type":52,"tag":83,"props":864,"children":866},{"className":865},[],[867],{"type":57,"value":146},{"type":57,"value":869}," for custom drawing, charts, signatures, or lightweight\nvisualizations:",{"type":52,"tag":73,"props":871,"children":872},{},[873,885,898,911,916,958,970],{"type":52,"tag":77,"props":874,"children":875},{},[876,878,884],{"type":57,"value":877},"Put drawing code in an ",{"type":52,"tag":83,"props":879,"children":881},{"className":880},[],[882],{"type":57,"value":883},"IDrawable",{"type":57,"value":198},{"type":52,"tag":77,"props":886,"children":887},{},[888,890,896],{"type":57,"value":889},"Treat ",{"type":52,"tag":83,"props":891,"children":893},{"className":892},[],[894],{"type":57,"value":895},"Draw(ICanvas canvas, RectF dirtyRect)",{"type":57,"value":897}," as a hot path: avoid allocations,\nblocking I\u002FO, async calls, and service lookups.",{"type":52,"tag":77,"props":899,"children":900},{},[901,903,909],{"type":57,"value":902},"Store state outside the drawable and call ",{"type":52,"tag":83,"props":904,"children":906},{"className":905},[],[907],{"type":57,"value":908},"Invalidate()",{"type":57,"value":910}," when state changes.",{"type":52,"tag":77,"props":912,"children":913},{},[914],{"type":57,"value":915},"Handle pointer\u002Ftouch input at the view or page layer and translate it to\ndrawing state.",{"type":52,"tag":77,"props":917,"children":918},{},[919,921,926,928,934,936,942,944,949,951,956],{"type":57,"value":920},"For important information in the drawing, provide accessible alternatives\noutside the canvas: wrap the ",{"type":52,"tag":83,"props":922,"children":924},{"className":923},[],[925],{"type":57,"value":146},{"type":57,"value":927}," alongside a ",{"type":52,"tag":83,"props":929,"children":931},{"className":930},[],[932],{"type":57,"value":933},"Label",{"type":57,"value":935}," or use\n",{"type":52,"tag":83,"props":937,"children":939},{"className":938},[],[940],{"type":57,"value":941},"SemanticProperties.Description",{"type":57,"value":943}," on the view so screen readers announce it.\n",{"type":52,"tag":83,"props":945,"children":947},{"className":946},[],[948],{"type":57,"value":112},{"type":57,"value":950}," on the ",{"type":52,"tag":83,"props":952,"children":954},{"className":953},[],[955],{"type":57,"value":146},{"type":57,"value":957}," enables UI-test targeting.",{"type":52,"tag":77,"props":959,"children":960},{},[961,962,968],{"type":57,"value":247},{"type":52,"tag":83,"props":963,"children":965},{"className":964},[],[966],{"type":57,"value":967},"SemanticScreenReader.Announce",{"type":57,"value":969}," for dynamic changes that must be audible.",{"type":52,"tag":77,"props":971,"children":972},{},[973,975,980],{"type":57,"value":974},"If drawing stutters or allocates heavily, consult ",{"type":52,"tag":83,"props":976,"children":978},{"className":977},[],[979],{"type":57,"value":231},{"type":57,"value":198},{"type":52,"tag":66,"props":982,"children":984},{"id":983},"validation-checklist",[985],{"type":57,"value":986},"Validation Checklist",{"type":52,"tag":73,"props":988,"children":989},{},[990,1000,1005,1010,1015],{"type":52,"tag":77,"props":991,"children":992},{},[993,998],{"type":52,"tag":83,"props":994,"children":996},{"className":995},[],[997],{"type":57,"value":88},{"type":57,"value":999}," owns its scrolling and has empty\u002Floading behavior where data\ncan be absent.",{"type":52,"tag":77,"props":1001,"children":1002},{},[1003],{"type":57,"value":1004},"Safe-area code matches the detected MAUI version and target platforms.",{"type":52,"tag":77,"props":1006,"children":1007},{},[1008],{"type":57,"value":1009},"Gestures have accessible alternatives for critical actions.",{"type":52,"tag":77,"props":1011,"children":1012},{},[1013],{"type":57,"value":1014},"Animations cannot leave the UI in stale state after cancellation or navigation.",{"type":52,"tag":77,"props":1016,"children":1017},{},[1018,1023],{"type":52,"tag":83,"props":1019,"children":1021},{"className":1020},[],[1022],{"type":57,"value":146},{"type":57,"value":1024}," drawing is allocation-conscious and exposes important content\noutside the canvas.",{"type":52,"tag":1026,"props":1027,"children":1028},"style",{},[1029],{"type":57,"value":1030},"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":1032,"total":1193},[1033,1049,1066,1079,1096,1110,1127,1137,1149,1159,1172,1183],{"slug":1034,"name":1034,"fn":1035,"description":1036,"org":1037,"tags":1038,"stars":1046,"repoUrl":1047,"updatedAt":1048},"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},[1039,1040,1043],{"name":17,"slug":18,"type":15},{"name":1041,"slug":1042,"type":15},"Engineering","engineering",{"name":1044,"slug":1045,"type":15},"Performance","performance",5535,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmsbuild","2026-07-22T05:37:33.965588",{"slug":1050,"name":1050,"fn":1051,"description":1052,"org":1053,"tags":1054,"stars":1063,"repoUrl":1064,"updatedAt":1065},"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},[1055,1056,1059,1062],{"name":17,"slug":18,"type":15},{"name":1057,"slug":1058,"type":15},"Code Analysis","code-analysis",{"name":1060,"slug":1061,"type":15},"Debugging","debugging",{"name":1044,"slug":1045,"type":15},4576,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills","2026-07-12T08:23:25.400375",{"slug":1067,"name":1067,"fn":1068,"description":1069,"org":1070,"tags":1071,"stars":1063,"repoUrl":1064,"updatedAt":1078},"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},[1072,1073,1075,1076],{"name":17,"slug":18,"type":15},{"name":1074,"slug":32,"type":15},"Android",{"name":1060,"slug":1061,"type":15},{"name":1077,"slug":37,"type":15},"Microsoft","2026-07-12T08:23:21.595572",{"slug":1080,"name":1080,"fn":1081,"description":1082,"org":1083,"tags":1084,"stars":1063,"repoUrl":1064,"updatedAt":1095},"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},[1085,1086,1087,1089,1092],{"name":17,"slug":18,"type":15},{"name":1060,"slug":1061,"type":15},{"name":1088,"slug":34,"type":15},"iOS",{"name":1090,"slug":1091,"type":15},"macOS","macos",{"name":1093,"slug":1094,"type":15},"Observability","observability","2026-07-12T08:23:20.369986",{"slug":1097,"name":1097,"fn":1098,"description":1099,"org":1100,"tags":1101,"stars":1063,"repoUrl":1064,"updatedAt":1109},"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},[1102,1103,1106],{"name":1057,"slug":1058,"type":15},{"name":1104,"slug":1105,"type":15},"QA","qa",{"name":1107,"slug":1108,"type":15},"Testing","testing","2026-07-12T08:23:51.277743",{"slug":1111,"name":1111,"fn":1112,"description":1113,"org":1114,"tags":1115,"stars":1063,"repoUrl":1064,"updatedAt":1126},"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},[1116,1117,1120,1122,1123],{"name":17,"slug":18,"type":15},{"name":1118,"slug":1119,"type":15},"Blazor","blazor",{"name":1121,"slug":687,"type":15},"C#",{"name":23,"slug":24,"type":15},{"name":1124,"slug":1125,"type":15},"Web Development","web-development","2026-07-15T06:03:29.216359",{"slug":1128,"name":1128,"fn":1129,"description":1130,"org":1131,"tags":1132,"stars":1063,"repoUrl":1064,"updatedAt":1136},"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},[1133,1134,1135],{"name":1057,"slug":1058,"type":15},{"name":1060,"slug":1061,"type":15},{"name":1077,"slug":37,"type":15},"2026-07-12T08:21:34.637923",{"slug":1138,"name":1138,"fn":1139,"description":1140,"org":1141,"tags":1142,"stars":1063,"repoUrl":1064,"updatedAt":1148},"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},[1143,1146,1147],{"name":1144,"slug":1145,"type":15},"Build","build",{"name":1060,"slug":1061,"type":15},{"name":1041,"slug":1042,"type":15},"2026-07-19T05:38:19.340791",{"slug":1150,"name":1150,"fn":1151,"description":1152,"org":1153,"tags":1154,"stars":1063,"repoUrl":1064,"updatedAt":1158},"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},[1155,1156,1157],{"name":17,"slug":18,"type":15},{"name":1041,"slug":1042,"type":15},{"name":1044,"slug":1045,"type":15},"2026-07-19T05:38:18.364937",{"slug":1160,"name":1160,"fn":1161,"description":1162,"org":1163,"tags":1164,"stars":1063,"repoUrl":1064,"updatedAt":1171},"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},[1165,1166,1169,1170],{"name":1041,"slug":1042,"type":15},{"name":1167,"slug":1168,"type":15},"Monitoring","monitoring",{"name":1044,"slug":1045,"type":15},{"name":1107,"slug":1108,"type":15},"2026-07-12T08:21:35.865649",{"slug":1173,"name":1173,"fn":1174,"description":1175,"org":1176,"tags":1177,"stars":1063,"repoUrl":1064,"updatedAt":1182},"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},[1178,1179,1180,1181],{"name":17,"slug":18,"type":15},{"name":1060,"slug":1061,"type":15},{"name":1041,"slug":1042,"type":15},{"name":1044,"slug":1045,"type":15},"2026-07-12T08:21:40.961722",{"slug":1184,"name":1184,"fn":1185,"description":1186,"org":1187,"tags":1188,"stars":1063,"repoUrl":1064,"updatedAt":1192},"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},[1189,1190,1191],{"name":1060,"slug":1061,"type":15},{"name":1041,"slug":1042,"type":15},{"name":1104,"slug":1105,"type":15},"2026-07-19T05:38:14.336279",144,{"items":1195,"total":1292},[1196,1212,1225,1237,1250,1266,1281],{"slug":1197,"name":1197,"fn":1198,"description":1199,"org":1200,"tags":1201,"stars":25,"repoUrl":26,"updatedAt":1211},"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},[1202,1203,1204,1207,1210],{"name":17,"slug":18,"type":15},{"name":1074,"slug":32,"type":15},{"name":1205,"slug":1206,"type":15},"Java","java",{"name":1208,"slug":1209,"type":15},"Kotlin","kotlin",{"name":20,"slug":21,"type":15},"2026-07-12T08:22:54.006105",{"slug":1213,"name":1213,"fn":1214,"description":1215,"org":1216,"tags":1217,"stars":25,"repoUrl":26,"updatedAt":1224},"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},[1218,1219,1222,1223],{"name":17,"slug":18,"type":15},{"name":1220,"slug":1221,"type":15},"Automation","automation",{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-07-12T08:22:56.616564",{"slug":1226,"name":1226,"fn":1227,"description":1228,"org":1229,"tags":1230,"stars":25,"repoUrl":26,"updatedAt":1236},"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},[1231,1232,1233],{"name":1060,"slug":1061,"type":15},{"name":13,"slug":14,"type":15},{"name":1234,"slug":1235,"type":15},"Networking","networking","2026-07-12T08:22:48.847431",{"slug":1238,"name":1238,"fn":1239,"description":1240,"org":1241,"tags":1242,"stars":25,"repoUrl":26,"updatedAt":1249},"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},[1243,1244,1247,1248],{"name":1121,"slug":687,"type":15},{"name":1245,"slug":1246,"type":15},"CLI","cli",{"name":1041,"slug":1042,"type":15},{"name":13,"slug":14,"type":15},"2026-07-12T08:22:46.318953",{"slug":1251,"name":1251,"fn":1252,"description":1253,"org":1254,"tags":1255,"stars":25,"repoUrl":26,"updatedAt":1265},"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},[1256,1257,1258,1259,1262],{"name":17,"slug":18,"type":15},{"name":1088,"slug":34,"type":15},{"name":13,"slug":14,"type":15},{"name":1260,"slug":1261,"type":15},"Swift","swift",{"name":1263,"slug":1264,"type":15},"Xcode","xcode","2026-07-12T08:22:50.128667",{"slug":209,"name":209,"fn":1267,"description":1268,"org":1269,"tags":1270,"stars":25,"repoUrl":26,"updatedAt":1280},"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},[1271,1272,1275,1276,1277],{"name":17,"slug":18,"type":15},{"name":1273,"slug":1274,"type":15},"Accessibility","accessibility",{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":1278,"slug":1279,"type":15},"WCAG","wcag","2026-07-12T08:22:17.823583",{"slug":1282,"name":1282,"fn":1283,"description":1284,"org":1285,"tags":1286,"stars":25,"repoUrl":26,"updatedAt":1291},"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},[1287,1288,1289,1290],{"name":17,"slug":18,"type":15},{"name":1060,"slug":1061,"type":15},{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},"2026-07-12T08:22:52.634889",32]