[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-dotnet-template-comparison":3,"mdc-3mrcco-key":34,"related-org-dotnet-template-comparison":1077,"related-repo-dotnet-template-comparison":1241},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":22,"repoUrl":23,"updatedAt":24,"license":25,"forks":26,"topics":27,"repo":29,"sourceUrl":32,"mdContent":33},"template-comparison","compare .NET project templates","Compares two or more dotnet new templates side by side to help users choose between them based on parameters, feature support, frameworks, and classifications. USE FOR: deciding between similar templates (webapi vs webapp, blazor vs blazorwasm, console vs worker), producing a side-by-side comparison of parameters and feature support, understanding how templates differ before creating a project. DO NOT USE FOR: creating a project from a template (use template-instantiation), authoring or validating custom templates (use template-authoring and template-validation), general single-template discovery (use template-discovery).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"dotnet",".NET (Microsoft)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fdotnet.png",[12,16,19],{"name":13,"slug":14,"type":15},".NET","net","tag",{"name":17,"slug":18,"type":15},"Templates","templates",{"name":20,"slug":21,"type":15},"Engineering","engineering",4576,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills","2026-07-22T05:35:42.677641","MIT",332,[28],"agent-skills",{"repoUrl":23,"stars":22,"forks":26,"topics":30,"description":31},[28],"Repository for skills to assist AI coding agents with .NET and C#","https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fskills\u002Ftree\u002FHEAD\u002Fplugins\u002Fdotnet-template-engine\u002Fskills\u002Ftemplate-comparison","---\nname: template-comparison\ndescription: >\n  Compares two or more dotnet new templates side by side to help users choose between\n  them based on parameters, feature support, frameworks, and classifications.\n  USE FOR: deciding between similar templates (webapi vs webapp, blazor vs\n  blazorwasm, console vs worker), producing a side-by-side comparison of parameters and\n  feature support, understanding how templates differ before creating a project.\n  DO NOT USE FOR: creating a project from a template (use template-instantiation),\n  authoring or validating custom templates (use template-authoring and template-validation),\n  general single-template discovery (use template-discovery).\nlicense: MIT\n---\n\n# Template Comparison\n\nThis skill helps an agent compare 2+ `dotnet new` templates side by side so the user can\npick the right one. It inspects each template's parameters and feature support and renders\na comparison table.\n\n## When to Use\n\n- User is deciding between similar templates (e.g., `webapi` vs `webapp`, `blazor` vs `blazorwasm`)\n- User asks \"which template should I use for X?\"\n- User wants to understand how two or more templates differ before creating a project\n\n## When Not to Use\n\n- User wants to create a project — route to `template-instantiation`\n- User wants to author or validate a custom template — route to `template-authoring` or `template-validation`\n- User just needs to find or inspect a single template — route to `template-discovery`\n\n## Inputs\n\n| Input | Required | Description |\n|-------|----------|-------------|\n| Template short names | Yes | Two or more template short names to compare (e.g., `webapi`, `webapp`) |\n| Comparison focus | No | Optional aspect to emphasize (auth, AOT, frameworks, interactivity) |\n\n## Workflow\n\n### Step 1: Inspect each template\n\nRun `dotnet new \u003Ctemplate> --help` for each template being compared to collect its\nparameters (names, types, defaults, choices) and supported frameworks:\n\n```bash\ndotnet new webapi --help\ndotnet new webapp --help\n```\n\nIf a template is not installed, find and install it first (`dotnet new search \u003Ckeyword>`,\nthen `dotnet new install \u003Cpackage>`).\n\n> **Run `--help` calls sequentially.** The template engine uses a global mutex, so running\n> several `dotnet new \u003Ctemplate> --help` commands concurrently can fail with a transient\n> \"mutex\"\u002F\"persistence\" error and empty output. Inspect templates one at a time; if a call\n> fails, retry it once before moving on, and still produce the comparison from whatever\n> parameter knowledge you have rather than ending with no answer.\n\n### Step 2: Build the comparison table\n\nProduce a side-by-side table covering:\n\n- **Parameters** — name, type, default, choices\n- **Feature support** — auth, AOT, Docker, controllers, interactivity\n- **Available frameworks** — e.g., net8.0, net9.0, net10.0\n- **Classifications** — categories the template advertises (Web, API, Blazor, etc.)\n\nExample shape:\n\n| Aspect | `webapi` | `webapp` |\n|--------|----------|----------|\n| Auth (`--auth`) | None, Individual, SingleOrg, Windows | None, Individual, SingleOrg, ... |\n| AOT (`--aot` flag) | present if `dotnet new webapi --help` lists `--aot` | present if `dotnet new webapp --help` lists `--aot` |\n| Controllers (`--use-controllers`) | Yes | n\u002Fa |\n| Interactivity | n\u002Fa | n\u002Fa |\n| Frameworks | net8.0 \u002F net9.0 \u002F net10.0 | net8.0 \u002F net9.0 \u002F net10.0 |\n| Classifications | Web, WebAPI | Web, Razor Pages |\n\n### Step 3: Recommend\n\nEnd with a decisive **Recommendation** line — never leave the user with just a table. Format:\n\n> **Recommendation: `\u003Ctemplate>`** — one sentence tying the choice to the user's stated scenario. (Pick the other if `\u003Ccondition>`.)\n\nThen link to `template-instantiation` to create it. A comparison that ends without naming a winner (or a clear \"it depends on X\") is incomplete — that indecision is what makes this skill tie with a plain answer.\n\n### Decision shortcuts for common pairs\n\nUse these as the opinionated default when the user hasn't given a countervailing constraint. Still inspect with `--help` to confirm parameters, but lead with the verdict:\n\n| Pair | Default pick | Because |\n|------|-------------|---------|\n| `webapi` vs `webapp` | **`webapi`** for a JSON\u002FREST backend; `webapp` for server-rendered HTML\u002FRazor Pages | webapi ships controllers\u002Fminimal APIs + OpenAPI, no UI |\n| `blazor` vs `blazorwasm` | **`blazorwasm`** when offline \u002F no server is required; `blazor` (Web App) for flexible server + client interactivity | Standalone WASM runs fully client-side, works offline |\n| `worker` vs `console` | **`worker`** for long-lived\u002Fqueue\u002Fbackground processing | Generic Host: DI, logging, config, graceful shutdown, `IHostedService` lifecycle |\n| `mvc` vs `webapp` | **`webapp`** (Razor Pages) for page-focused apps; `mvc` for controller\u002Fview separation at scale | Razor Pages is lighter for CRUD-style pages |\n\n## Validation\n\n- [ ] Every template requested was inspected via `dotnet new \u003Ctemplate> --help`\n- [ ] The comparison covers parameters, feature support, frameworks, and classifications\n- [ ] Differences relevant to the user's scenario are called out explicitly\n- [ ] A recommendation (or clear trade-off) is provided\n\n## Common Pitfalls\n\n| Pitfall | Solution |\n|---------|----------|\n| Comparing uninstalled templates from memory | Install and inspect each template so the comparison reflects the real parameters and choices. |\n| Assuming feature parity | Parameter names and feature support vary by template — confirm each with `--help`. |\n| Comparing fundamentally different template types | Only compare templates that solve overlapping problems; note when they target different scenarios. |\n\n## More Info\n\n- [dotnet new templates](https:\u002F\u002Flearn.microsoft.com\u002Fdotnet\u002Fcore\u002Ftools\u002Fdotnet-new-sdk-templates) — built-in template reference\n- [dotnet new](https:\u002F\u002Flearn.microsoft.com\u002Fdotnet\u002Fcore\u002Ftools\u002Fdotnet-new) — CLI reference\n",{"data":35,"body":36},{"name":4,"description":6,"license":25},{"type":37,"children":38},"root",[39,47,62,69,120,126,170,176,257,263,270,283,342,363,392,398,403,446,451,633,639,651,678,690,696,708,907,913,963,969,1037,1043,1071],{"type":40,"tag":41,"props":42,"children":43},"element","h1",{"id":4},[44],{"type":45,"value":46},"text","Template Comparison",{"type":40,"tag":48,"props":49,"children":50},"p",{},[51,53,60],{"type":45,"value":52},"This skill helps an agent compare 2+ ",{"type":40,"tag":54,"props":55,"children":57},"code",{"className":56},[],[58],{"type":45,"value":59},"dotnet new",{"type":45,"value":61}," templates side by side so the user can\npick the right one. It inspects each template's parameters and feature support and renders\na comparison table.",{"type":40,"tag":63,"props":64,"children":66},"h2",{"id":65},"when-to-use",[67],{"type":45,"value":68},"When to Use",{"type":40,"tag":70,"props":71,"children":72},"ul",{},[73,110,115],{"type":40,"tag":74,"props":75,"children":76},"li",{},[77,79,85,87,93,95,101,102,108],{"type":45,"value":78},"User is deciding between similar templates (e.g., ",{"type":40,"tag":54,"props":80,"children":82},{"className":81},[],[83],{"type":45,"value":84},"webapi",{"type":45,"value":86}," vs ",{"type":40,"tag":54,"props":88,"children":90},{"className":89},[],[91],{"type":45,"value":92},"webapp",{"type":45,"value":94},", ",{"type":40,"tag":54,"props":96,"children":98},{"className":97},[],[99],{"type":45,"value":100},"blazor",{"type":45,"value":86},{"type":40,"tag":54,"props":103,"children":105},{"className":104},[],[106],{"type":45,"value":107},"blazorwasm",{"type":45,"value":109},")",{"type":40,"tag":74,"props":111,"children":112},{},[113],{"type":45,"value":114},"User asks \"which template should I use for X?\"",{"type":40,"tag":74,"props":116,"children":117},{},[118],{"type":45,"value":119},"User wants to understand how two or more templates differ before creating a project",{"type":40,"tag":63,"props":121,"children":123},{"id":122},"when-not-to-use",[124],{"type":45,"value":125},"When Not to Use",{"type":40,"tag":70,"props":127,"children":128},{},[129,140,159],{"type":40,"tag":74,"props":130,"children":131},{},[132,134],{"type":45,"value":133},"User wants to create a project — route to ",{"type":40,"tag":54,"props":135,"children":137},{"className":136},[],[138],{"type":45,"value":139},"template-instantiation",{"type":40,"tag":74,"props":141,"children":142},{},[143,145,151,153],{"type":45,"value":144},"User wants to author or validate a custom template — route to ",{"type":40,"tag":54,"props":146,"children":148},{"className":147},[],[149],{"type":45,"value":150},"template-authoring",{"type":45,"value":152}," or ",{"type":40,"tag":54,"props":154,"children":156},{"className":155},[],[157],{"type":45,"value":158},"template-validation",{"type":40,"tag":74,"props":160,"children":161},{},[162,164],{"type":45,"value":163},"User just needs to find or inspect a single template — route to ",{"type":40,"tag":54,"props":165,"children":167},{"className":166},[],[168],{"type":45,"value":169},"template-discovery",{"type":40,"tag":63,"props":171,"children":173},{"id":172},"inputs",[174],{"type":45,"value":175},"Inputs",{"type":40,"tag":177,"props":178,"children":179},"table",{},[180,204],{"type":40,"tag":181,"props":182,"children":183},"thead",{},[184],{"type":40,"tag":185,"props":186,"children":187},"tr",{},[188,194,199],{"type":40,"tag":189,"props":190,"children":191},"th",{},[192],{"type":45,"value":193},"Input",{"type":40,"tag":189,"props":195,"children":196},{},[197],{"type":45,"value":198},"Required",{"type":40,"tag":189,"props":200,"children":201},{},[202],{"type":45,"value":203},"Description",{"type":40,"tag":205,"props":206,"children":207},"tbody",{},[208,239],{"type":40,"tag":185,"props":209,"children":210},{},[211,217,222],{"type":40,"tag":212,"props":213,"children":214},"td",{},[215],{"type":45,"value":216},"Template short names",{"type":40,"tag":212,"props":218,"children":219},{},[220],{"type":45,"value":221},"Yes",{"type":40,"tag":212,"props":223,"children":224},{},[225,227,232,233,238],{"type":45,"value":226},"Two or more template short names to compare (e.g., ",{"type":40,"tag":54,"props":228,"children":230},{"className":229},[],[231],{"type":45,"value":84},{"type":45,"value":94},{"type":40,"tag":54,"props":234,"children":236},{"className":235},[],[237],{"type":45,"value":92},{"type":45,"value":109},{"type":40,"tag":185,"props":240,"children":241},{},[242,247,252],{"type":40,"tag":212,"props":243,"children":244},{},[245],{"type":45,"value":246},"Comparison focus",{"type":40,"tag":212,"props":248,"children":249},{},[250],{"type":45,"value":251},"No",{"type":40,"tag":212,"props":253,"children":254},{},[255],{"type":45,"value":256},"Optional aspect to emphasize (auth, AOT, frameworks, interactivity)",{"type":40,"tag":63,"props":258,"children":260},{"id":259},"workflow",[261],{"type":45,"value":262},"Workflow",{"type":40,"tag":264,"props":265,"children":267},"h3",{"id":266},"step-1-inspect-each-template",[268],{"type":45,"value":269},"Step 1: Inspect each template",{"type":40,"tag":48,"props":271,"children":272},{},[273,275,281],{"type":45,"value":274},"Run ",{"type":40,"tag":54,"props":276,"children":278},{"className":277},[],[279],{"type":45,"value":280},"dotnet new \u003Ctemplate> --help",{"type":45,"value":282}," for each template being compared to collect its\nparameters (names, types, defaults, choices) and supported frameworks:",{"type":40,"tag":284,"props":285,"children":290},"pre",{"className":286,"code":287,"language":288,"meta":289,"style":289},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","dotnet new webapi --help\ndotnet new webapp --help\n","bash","",[291],{"type":40,"tag":54,"props":292,"children":293},{"__ignoreMap":289},[294,321],{"type":40,"tag":295,"props":296,"children":299},"span",{"class":297,"line":298},"line",1,[300,305,311,316],{"type":40,"tag":295,"props":301,"children":303},{"style":302},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[304],{"type":45,"value":8},{"type":40,"tag":295,"props":306,"children":308},{"style":307},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[309],{"type":45,"value":310}," new",{"type":40,"tag":295,"props":312,"children":313},{"style":307},[314],{"type":45,"value":315}," webapi",{"type":40,"tag":295,"props":317,"children":318},{"style":307},[319],{"type":45,"value":320}," --help\n",{"type":40,"tag":295,"props":322,"children":324},{"class":297,"line":323},2,[325,329,333,338],{"type":40,"tag":295,"props":326,"children":327},{"style":302},[328],{"type":45,"value":8},{"type":40,"tag":295,"props":330,"children":331},{"style":307},[332],{"type":45,"value":310},{"type":40,"tag":295,"props":334,"children":335},{"style":307},[336],{"type":45,"value":337}," webapp",{"type":40,"tag":295,"props":339,"children":340},{"style":307},[341],{"type":45,"value":320},{"type":40,"tag":48,"props":343,"children":344},{},[345,347,353,355,361],{"type":45,"value":346},"If a template is not installed, find and install it first (",{"type":40,"tag":54,"props":348,"children":350},{"className":349},[],[351],{"type":45,"value":352},"dotnet new search \u003Ckeyword>",{"type":45,"value":354},",\nthen ",{"type":40,"tag":54,"props":356,"children":358},{"className":357},[],[359],{"type":45,"value":360},"dotnet new install \u003Cpackage>",{"type":45,"value":362},").",{"type":40,"tag":364,"props":365,"children":366},"blockquote",{},[367],{"type":40,"tag":48,"props":368,"children":369},{},[370,383,385,390],{"type":40,"tag":371,"props":372,"children":373},"strong",{},[374,375,381],{"type":45,"value":274},{"type":40,"tag":54,"props":376,"children":378},{"className":377},[],[379],{"type":45,"value":380},"--help",{"type":45,"value":382}," calls sequentially.",{"type":45,"value":384}," The template engine uses a global mutex, so running\nseveral ",{"type":40,"tag":54,"props":386,"children":388},{"className":387},[],[389],{"type":45,"value":280},{"type":45,"value":391}," commands concurrently can fail with a transient\n\"mutex\"\u002F\"persistence\" error and empty output. Inspect templates one at a time; if a call\nfails, retry it once before moving on, and still produce the comparison from whatever\nparameter knowledge you have rather than ending with no answer.",{"type":40,"tag":264,"props":393,"children":395},{"id":394},"step-2-build-the-comparison-table",[396],{"type":45,"value":397},"Step 2: Build the comparison table",{"type":40,"tag":48,"props":399,"children":400},{},[401],{"type":45,"value":402},"Produce a side-by-side table covering:",{"type":40,"tag":70,"props":404,"children":405},{},[406,416,426,436],{"type":40,"tag":74,"props":407,"children":408},{},[409,414],{"type":40,"tag":371,"props":410,"children":411},{},[412],{"type":45,"value":413},"Parameters",{"type":45,"value":415}," — name, type, default, choices",{"type":40,"tag":74,"props":417,"children":418},{},[419,424],{"type":40,"tag":371,"props":420,"children":421},{},[422],{"type":45,"value":423},"Feature support",{"type":45,"value":425}," — auth, AOT, Docker, controllers, interactivity",{"type":40,"tag":74,"props":427,"children":428},{},[429,434],{"type":40,"tag":371,"props":430,"children":431},{},[432],{"type":45,"value":433},"Available frameworks",{"type":45,"value":435}," — e.g., net8.0, net9.0, net10.0",{"type":40,"tag":74,"props":437,"children":438},{},[439,444],{"type":40,"tag":371,"props":440,"children":441},{},[442],{"type":45,"value":443},"Classifications",{"type":45,"value":445}," — categories the template advertises (Web, API, Blazor, etc.)",{"type":40,"tag":48,"props":447,"children":448},{},[449],{"type":45,"value":450},"Example shape:",{"type":40,"tag":177,"props":452,"children":453},{},[454,481],{"type":40,"tag":181,"props":455,"children":456},{},[457],{"type":40,"tag":185,"props":458,"children":459},{},[460,465,473],{"type":40,"tag":189,"props":461,"children":462},{},[463],{"type":45,"value":464},"Aspect",{"type":40,"tag":189,"props":466,"children":467},{},[468],{"type":40,"tag":54,"props":469,"children":471},{"className":470},[],[472],{"type":45,"value":84},{"type":40,"tag":189,"props":474,"children":475},{},[476],{"type":40,"tag":54,"props":477,"children":479},{"className":478},[],[480],{"type":45,"value":92},{"type":40,"tag":205,"props":482,"children":483},{},[484,509,559,583,599,616],{"type":40,"tag":185,"props":485,"children":486},{},[487,499,504],{"type":40,"tag":212,"props":488,"children":489},{},[490,492,498],{"type":45,"value":491},"Auth (",{"type":40,"tag":54,"props":493,"children":495},{"className":494},[],[496],{"type":45,"value":497},"--auth",{"type":45,"value":109},{"type":40,"tag":212,"props":500,"children":501},{},[502],{"type":45,"value":503},"None, Individual, SingleOrg, Windows",{"type":40,"tag":212,"props":505,"children":506},{},[507],{"type":45,"value":508},"None, Individual, SingleOrg, ...",{"type":40,"tag":185,"props":510,"children":511},{},[512,525,543],{"type":40,"tag":212,"props":513,"children":514},{},[515,517,523],{"type":45,"value":516},"AOT (",{"type":40,"tag":54,"props":518,"children":520},{"className":519},[],[521],{"type":45,"value":522},"--aot",{"type":45,"value":524}," flag)",{"type":40,"tag":212,"props":526,"children":527},{},[528,530,536,538],{"type":45,"value":529},"present if ",{"type":40,"tag":54,"props":531,"children":533},{"className":532},[],[534],{"type":45,"value":535},"dotnet new webapi --help",{"type":45,"value":537}," lists ",{"type":40,"tag":54,"props":539,"children":541},{"className":540},[],[542],{"type":45,"value":522},{"type":40,"tag":212,"props":544,"children":545},{},[546,547,553,554],{"type":45,"value":529},{"type":40,"tag":54,"props":548,"children":550},{"className":549},[],[551],{"type":45,"value":552},"dotnet new webapp --help",{"type":45,"value":537},{"type":40,"tag":54,"props":555,"children":557},{"className":556},[],[558],{"type":45,"value":522},{"type":40,"tag":185,"props":560,"children":561},{},[562,574,578],{"type":40,"tag":212,"props":563,"children":564},{},[565,567,573],{"type":45,"value":566},"Controllers (",{"type":40,"tag":54,"props":568,"children":570},{"className":569},[],[571],{"type":45,"value":572},"--use-controllers",{"type":45,"value":109},{"type":40,"tag":212,"props":575,"children":576},{},[577],{"type":45,"value":221},{"type":40,"tag":212,"props":579,"children":580},{},[581],{"type":45,"value":582},"n\u002Fa",{"type":40,"tag":185,"props":584,"children":585},{},[586,591,595],{"type":40,"tag":212,"props":587,"children":588},{},[589],{"type":45,"value":590},"Interactivity",{"type":40,"tag":212,"props":592,"children":593},{},[594],{"type":45,"value":582},{"type":40,"tag":212,"props":596,"children":597},{},[598],{"type":45,"value":582},{"type":40,"tag":185,"props":600,"children":601},{},[602,607,612],{"type":40,"tag":212,"props":603,"children":604},{},[605],{"type":45,"value":606},"Frameworks",{"type":40,"tag":212,"props":608,"children":609},{},[610],{"type":45,"value":611},"net8.0 \u002F net9.0 \u002F net10.0",{"type":40,"tag":212,"props":613,"children":614},{},[615],{"type":45,"value":611},{"type":40,"tag":185,"props":617,"children":618},{},[619,623,628],{"type":40,"tag":212,"props":620,"children":621},{},[622],{"type":45,"value":443},{"type":40,"tag":212,"props":624,"children":625},{},[626],{"type":45,"value":627},"Web, WebAPI",{"type":40,"tag":212,"props":629,"children":630},{},[631],{"type":45,"value":632},"Web, Razor Pages",{"type":40,"tag":264,"props":634,"children":636},{"id":635},"step-3-recommend",[637],{"type":45,"value":638},"Step 3: Recommend",{"type":40,"tag":48,"props":640,"children":641},{},[642,644,649],{"type":45,"value":643},"End with a decisive ",{"type":40,"tag":371,"props":645,"children":646},{},[647],{"type":45,"value":648},"Recommendation",{"type":45,"value":650}," line — never leave the user with just a table. Format:",{"type":40,"tag":364,"props":652,"children":653},{},[654],{"type":40,"tag":48,"props":655,"children":656},{},[657,668,670,676],{"type":40,"tag":371,"props":658,"children":659},{},[660,662],{"type":45,"value":661},"Recommendation: ",{"type":40,"tag":54,"props":663,"children":665},{"className":664},[],[666],{"type":45,"value":667},"\u003Ctemplate>",{"type":45,"value":669}," — one sentence tying the choice to the user's stated scenario. (Pick the other if ",{"type":40,"tag":54,"props":671,"children":673},{"className":672},[],[674],{"type":45,"value":675},"\u003Ccondition>",{"type":45,"value":677},".)",{"type":40,"tag":48,"props":679,"children":680},{},[681,683,688],{"type":45,"value":682},"Then link to ",{"type":40,"tag":54,"props":684,"children":686},{"className":685},[],[687],{"type":45,"value":139},{"type":45,"value":689}," to create it. A comparison that ends without naming a winner (or a clear \"it depends on X\") is incomplete — that indecision is what makes this skill tie with a plain answer.",{"type":40,"tag":264,"props":691,"children":693},{"id":692},"decision-shortcuts-for-common-pairs",[694],{"type":45,"value":695},"Decision shortcuts for common pairs",{"type":40,"tag":48,"props":697,"children":698},{},[699,701,706],{"type":45,"value":700},"Use these as the opinionated default when the user hasn't given a countervailing constraint. Still inspect with ",{"type":40,"tag":54,"props":702,"children":704},{"className":703},[],[705],{"type":45,"value":380},{"type":45,"value":707}," to confirm parameters, but lead with the verdict:",{"type":40,"tag":177,"props":709,"children":710},{},[711,732],{"type":40,"tag":181,"props":712,"children":713},{},[714],{"type":40,"tag":185,"props":715,"children":716},{},[717,722,727],{"type":40,"tag":189,"props":718,"children":719},{},[720],{"type":45,"value":721},"Pair",{"type":40,"tag":189,"props":723,"children":724},{},[725],{"type":45,"value":726},"Default pick",{"type":40,"tag":189,"props":728,"children":729},{},[730],{"type":45,"value":731},"Because",{"type":40,"tag":205,"props":733,"children":734},{},[735,777,819,864],{"type":40,"tag":185,"props":736,"children":737},{},[738,752,772],{"type":40,"tag":212,"props":739,"children":740},{},[741,746,747],{"type":40,"tag":54,"props":742,"children":744},{"className":743},[],[745],{"type":45,"value":84},{"type":45,"value":86},{"type":40,"tag":54,"props":748,"children":750},{"className":749},[],[751],{"type":45,"value":92},{"type":40,"tag":212,"props":753,"children":754},{},[755,763,765,770],{"type":40,"tag":371,"props":756,"children":757},{},[758],{"type":40,"tag":54,"props":759,"children":761},{"className":760},[],[762],{"type":45,"value":84},{"type":45,"value":764}," for a JSON\u002FREST backend; ",{"type":40,"tag":54,"props":766,"children":768},{"className":767},[],[769],{"type":45,"value":92},{"type":45,"value":771}," for server-rendered HTML\u002FRazor Pages",{"type":40,"tag":212,"props":773,"children":774},{},[775],{"type":45,"value":776},"webapi ships controllers\u002Fminimal APIs + OpenAPI, no UI",{"type":40,"tag":185,"props":778,"children":779},{},[780,794,814],{"type":40,"tag":212,"props":781,"children":782},{},[783,788,789],{"type":40,"tag":54,"props":784,"children":786},{"className":785},[],[787],{"type":45,"value":100},{"type":45,"value":86},{"type":40,"tag":54,"props":790,"children":792},{"className":791},[],[793],{"type":45,"value":107},{"type":40,"tag":212,"props":795,"children":796},{},[797,805,807,812],{"type":40,"tag":371,"props":798,"children":799},{},[800],{"type":40,"tag":54,"props":801,"children":803},{"className":802},[],[804],{"type":45,"value":107},{"type":45,"value":806}," when offline \u002F no server is required; ",{"type":40,"tag":54,"props":808,"children":810},{"className":809},[],[811],{"type":45,"value":100},{"type":45,"value":813}," (Web App) for flexible server + client interactivity",{"type":40,"tag":212,"props":815,"children":816},{},[817],{"type":45,"value":818},"Standalone WASM runs fully client-side, works offline",{"type":40,"tag":185,"props":820,"children":821},{},[822,838,851],{"type":40,"tag":212,"props":823,"children":824},{},[825,831,832],{"type":40,"tag":54,"props":826,"children":828},{"className":827},[],[829],{"type":45,"value":830},"worker",{"type":45,"value":86},{"type":40,"tag":54,"props":833,"children":835},{"className":834},[],[836],{"type":45,"value":837},"console",{"type":40,"tag":212,"props":839,"children":840},{},[841,849],{"type":40,"tag":371,"props":842,"children":843},{},[844],{"type":40,"tag":54,"props":845,"children":847},{"className":846},[],[848],{"type":45,"value":830},{"type":45,"value":850}," for long-lived\u002Fqueue\u002Fbackground processing",{"type":40,"tag":212,"props":852,"children":853},{},[854,856,862],{"type":45,"value":855},"Generic Host: DI, logging, config, graceful shutdown, ",{"type":40,"tag":54,"props":857,"children":859},{"className":858},[],[860],{"type":45,"value":861},"IHostedService",{"type":45,"value":863}," lifecycle",{"type":40,"tag":185,"props":865,"children":866},{},[867,882,902],{"type":40,"tag":212,"props":868,"children":869},{},[870,876,877],{"type":40,"tag":54,"props":871,"children":873},{"className":872},[],[874],{"type":45,"value":875},"mvc",{"type":45,"value":86},{"type":40,"tag":54,"props":878,"children":880},{"className":879},[],[881],{"type":45,"value":92},{"type":40,"tag":212,"props":883,"children":884},{},[885,893,895,900],{"type":40,"tag":371,"props":886,"children":887},{},[888],{"type":40,"tag":54,"props":889,"children":891},{"className":890},[],[892],{"type":45,"value":92},{"type":45,"value":894}," (Razor Pages) for page-focused apps; ",{"type":40,"tag":54,"props":896,"children":898},{"className":897},[],[899],{"type":45,"value":875},{"type":45,"value":901}," for controller\u002Fview separation at scale",{"type":40,"tag":212,"props":903,"children":904},{},[905],{"type":45,"value":906},"Razor Pages is lighter for CRUD-style pages",{"type":40,"tag":63,"props":908,"children":910},{"id":909},"validation",[911],{"type":45,"value":912},"Validation",{"type":40,"tag":70,"props":914,"children":917},{"className":915},[916],"contains-task-list",[918,936,945,954],{"type":40,"tag":74,"props":919,"children":922},{"className":920},[921],"task-list-item",[923,929,931],{"type":40,"tag":924,"props":925,"children":928},"input",{"disabled":926,"type":927},true,"checkbox",[],{"type":45,"value":930}," Every template requested was inspected via ",{"type":40,"tag":54,"props":932,"children":934},{"className":933},[],[935],{"type":45,"value":280},{"type":40,"tag":74,"props":937,"children":939},{"className":938},[921],[940,943],{"type":40,"tag":924,"props":941,"children":942},{"disabled":926,"type":927},[],{"type":45,"value":944}," The comparison covers parameters, feature support, frameworks, and classifications",{"type":40,"tag":74,"props":946,"children":948},{"className":947},[921],[949,952],{"type":40,"tag":924,"props":950,"children":951},{"disabled":926,"type":927},[],{"type":45,"value":953}," Differences relevant to the user's scenario are called out explicitly",{"type":40,"tag":74,"props":955,"children":957},{"className":956},[921],[958,961],{"type":40,"tag":924,"props":959,"children":960},{"disabled":926,"type":927},[],{"type":45,"value":962}," A recommendation (or clear trade-off) is provided",{"type":40,"tag":63,"props":964,"children":966},{"id":965},"common-pitfalls",[967],{"type":45,"value":968},"Common Pitfalls",{"type":40,"tag":177,"props":970,"children":971},{},[972,988],{"type":40,"tag":181,"props":973,"children":974},{},[975],{"type":40,"tag":185,"props":976,"children":977},{},[978,983],{"type":40,"tag":189,"props":979,"children":980},{},[981],{"type":45,"value":982},"Pitfall",{"type":40,"tag":189,"props":984,"children":985},{},[986],{"type":45,"value":987},"Solution",{"type":40,"tag":205,"props":989,"children":990},{},[991,1004,1024],{"type":40,"tag":185,"props":992,"children":993},{},[994,999],{"type":40,"tag":212,"props":995,"children":996},{},[997],{"type":45,"value":998},"Comparing uninstalled templates from memory",{"type":40,"tag":212,"props":1000,"children":1001},{},[1002],{"type":45,"value":1003},"Install and inspect each template so the comparison reflects the real parameters and choices.",{"type":40,"tag":185,"props":1005,"children":1006},{},[1007,1012],{"type":40,"tag":212,"props":1008,"children":1009},{},[1010],{"type":45,"value":1011},"Assuming feature parity",{"type":40,"tag":212,"props":1013,"children":1014},{},[1015,1017,1022],{"type":45,"value":1016},"Parameter names and feature support vary by template — confirm each with ",{"type":40,"tag":54,"props":1018,"children":1020},{"className":1019},[],[1021],{"type":45,"value":380},{"type":45,"value":1023},".",{"type":40,"tag":185,"props":1025,"children":1026},{},[1027,1032],{"type":40,"tag":212,"props":1028,"children":1029},{},[1030],{"type":45,"value":1031},"Comparing fundamentally different template types",{"type":40,"tag":212,"props":1033,"children":1034},{},[1035],{"type":45,"value":1036},"Only compare templates that solve overlapping problems; note when they target different scenarios.",{"type":40,"tag":63,"props":1038,"children":1040},{"id":1039},"more-info",[1041],{"type":45,"value":1042},"More Info",{"type":40,"tag":70,"props":1044,"children":1045},{},[1046,1060],{"type":40,"tag":74,"props":1047,"children":1048},{},[1049,1058],{"type":40,"tag":1050,"props":1051,"children":1055},"a",{"href":1052,"rel":1053},"https:\u002F\u002Flearn.microsoft.com\u002Fdotnet\u002Fcore\u002Ftools\u002Fdotnet-new-sdk-templates",[1054],"nofollow",[1056],{"type":45,"value":1057},"dotnet new templates",{"type":45,"value":1059}," — built-in template reference",{"type":40,"tag":74,"props":1061,"children":1062},{},[1063,1069],{"type":40,"tag":1050,"props":1064,"children":1067},{"href":1065,"rel":1066},"https:\u002F\u002Flearn.microsoft.com\u002Fdotnet\u002Fcore\u002Ftools\u002Fdotnet-new",[1054],[1068],{"type":45,"value":59},{"type":45,"value":1070}," — CLI reference",{"type":40,"tag":1072,"props":1073,"children":1074},"style",{},[1075],{"type":45,"value":1076},"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":1078,"total":1240},[1079,1093,1108,1123,1141,1155,1174,1184,1196,1206,1219,1230],{"slug":1080,"name":1080,"fn":1081,"description":1082,"org":1083,"tags":1084,"stars":1090,"repoUrl":1091,"updatedAt":1092},"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},[1085,1086,1087],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":1088,"slug":1089,"type":15},"Performance","performance",5535,"https:\u002F\u002Fgithub.com\u002Fdotnet\u002Fmsbuild","2026-07-22T05:37:33.965588",{"slug":1094,"name":1094,"fn":1095,"description":1096,"org":1097,"tags":1098,"stars":22,"repoUrl":23,"updatedAt":1107},"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},[1099,1100,1103,1106],{"name":13,"slug":14,"type":15},{"name":1101,"slug":1102,"type":15},"Code Analysis","code-analysis",{"name":1104,"slug":1105,"type":15},"Debugging","debugging",{"name":1088,"slug":1089,"type":15},"2026-07-12T08:23:25.400375",{"slug":1109,"name":1109,"fn":1110,"description":1111,"org":1112,"tags":1113,"stars":22,"repoUrl":23,"updatedAt":1122},"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},[1114,1115,1118,1119],{"name":13,"slug":14,"type":15},{"name":1116,"slug":1117,"type":15},"Android","android",{"name":1104,"slug":1105,"type":15},{"name":1120,"slug":1121,"type":15},"Microsoft","microsoft","2026-07-12T08:23:21.595572",{"slug":1124,"name":1124,"fn":1125,"description":1126,"org":1127,"tags":1128,"stars":22,"repoUrl":23,"updatedAt":1140},"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},[1129,1130,1131,1134,1137],{"name":13,"slug":14,"type":15},{"name":1104,"slug":1105,"type":15},{"name":1132,"slug":1133,"type":15},"iOS","ios",{"name":1135,"slug":1136,"type":15},"macOS","macos",{"name":1138,"slug":1139,"type":15},"Observability","observability","2026-07-12T08:23:20.369986",{"slug":1142,"name":1142,"fn":1143,"description":1144,"org":1145,"tags":1146,"stars":22,"repoUrl":23,"updatedAt":1154},"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},[1147,1148,1151],{"name":1101,"slug":1102,"type":15},{"name":1149,"slug":1150,"type":15},"QA","qa",{"name":1152,"slug":1153,"type":15},"Testing","testing","2026-07-12T08:23:51.277743",{"slug":1156,"name":1156,"fn":1157,"description":1158,"org":1159,"tags":1160,"stars":22,"repoUrl":23,"updatedAt":1173},"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},[1161,1162,1164,1167,1170],{"name":13,"slug":14,"type":15},{"name":1163,"slug":100,"type":15},"Blazor",{"name":1165,"slug":1166,"type":15},"C#","csharp",{"name":1168,"slug":1169,"type":15},"UI Components","ui-components",{"name":1171,"slug":1172,"type":15},"Web Development","web-development","2026-07-15T06:03:29.216359",{"slug":1175,"name":1175,"fn":1176,"description":1177,"org":1178,"tags":1179,"stars":22,"repoUrl":23,"updatedAt":1183},"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},[1180,1181,1182],{"name":1101,"slug":1102,"type":15},{"name":1104,"slug":1105,"type":15},{"name":1120,"slug":1121,"type":15},"2026-07-12T08:21:34.637923",{"slug":1185,"name":1185,"fn":1186,"description":1187,"org":1188,"tags":1189,"stars":22,"repoUrl":23,"updatedAt":1195},"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},[1190,1193,1194],{"name":1191,"slug":1192,"type":15},"Build","build",{"name":1104,"slug":1105,"type":15},{"name":20,"slug":21,"type":15},"2026-07-19T05:38:19.340791",{"slug":1197,"name":1197,"fn":1198,"description":1199,"org":1200,"tags":1201,"stars":22,"repoUrl":23,"updatedAt":1205},"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},[1202,1203,1204],{"name":13,"slug":14,"type":15},{"name":20,"slug":21,"type":15},{"name":1088,"slug":1089,"type":15},"2026-07-19T05:38:18.364937",{"slug":1207,"name":1207,"fn":1208,"description":1209,"org":1210,"tags":1211,"stars":22,"repoUrl":23,"updatedAt":1218},"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},[1212,1213,1216,1217],{"name":20,"slug":21,"type":15},{"name":1214,"slug":1215,"type":15},"Monitoring","monitoring",{"name":1088,"slug":1089,"type":15},{"name":1152,"slug":1153,"type":15},"2026-07-12T08:21:35.865649",{"slug":1220,"name":1220,"fn":1221,"description":1222,"org":1223,"tags":1224,"stars":22,"repoUrl":23,"updatedAt":1229},"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},[1225,1226,1227,1228],{"name":13,"slug":14,"type":15},{"name":1104,"slug":1105,"type":15},{"name":20,"slug":21,"type":15},{"name":1088,"slug":1089,"type":15},"2026-07-12T08:21:40.961722",{"slug":1231,"name":1231,"fn":1232,"description":1233,"org":1234,"tags":1235,"stars":22,"repoUrl":23,"updatedAt":1239},"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},[1236,1237,1238],{"name":1104,"slug":1105,"type":15},{"name":20,"slug":21,"type":15},{"name":1149,"slug":1150,"type":15},"2026-07-19T05:38:14.336279",144,{"items":1242,"total":1291},[1243,1250,1257,1265,1271,1279,1285],{"slug":1094,"name":1094,"fn":1095,"description":1096,"org":1244,"tags":1245,"stars":22,"repoUrl":23,"updatedAt":1107},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1246,1247,1248,1249],{"name":13,"slug":14,"type":15},{"name":1101,"slug":1102,"type":15},{"name":1104,"slug":1105,"type":15},{"name":1088,"slug":1089,"type":15},{"slug":1109,"name":1109,"fn":1110,"description":1111,"org":1251,"tags":1252,"stars":22,"repoUrl":23,"updatedAt":1122},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1253,1254,1255,1256],{"name":13,"slug":14,"type":15},{"name":1116,"slug":1117,"type":15},{"name":1104,"slug":1105,"type":15},{"name":1120,"slug":1121,"type":15},{"slug":1124,"name":1124,"fn":1125,"description":1126,"org":1258,"tags":1259,"stars":22,"repoUrl":23,"updatedAt":1140},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1260,1261,1262,1263,1264],{"name":13,"slug":14,"type":15},{"name":1104,"slug":1105,"type":15},{"name":1132,"slug":1133,"type":15},{"name":1135,"slug":1136,"type":15},{"name":1138,"slug":1139,"type":15},{"slug":1142,"name":1142,"fn":1143,"description":1144,"org":1266,"tags":1267,"stars":22,"repoUrl":23,"updatedAt":1154},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1268,1269,1270],{"name":1101,"slug":1102,"type":15},{"name":1149,"slug":1150,"type":15},{"name":1152,"slug":1153,"type":15},{"slug":1156,"name":1156,"fn":1157,"description":1158,"org":1272,"tags":1273,"stars":22,"repoUrl":23,"updatedAt":1173},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1274,1275,1276,1277,1278],{"name":13,"slug":14,"type":15},{"name":1163,"slug":100,"type":15},{"name":1165,"slug":1166,"type":15},{"name":1168,"slug":1169,"type":15},{"name":1171,"slug":1172,"type":15},{"slug":1175,"name":1175,"fn":1176,"description":1177,"org":1280,"tags":1281,"stars":22,"repoUrl":23,"updatedAt":1183},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1282,1283,1284],{"name":1101,"slug":1102,"type":15},{"name":1104,"slug":1105,"type":15},{"name":1120,"slug":1121,"type":15},{"slug":1185,"name":1185,"fn":1186,"description":1187,"org":1286,"tags":1287,"stars":22,"repoUrl":23,"updatedAt":1195},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1288,1289,1290],{"name":1191,"slug":1192,"type":15},{"name":1104,"slug":1105,"type":15},{"name":20,"slug":21,"type":15},96]