SkillAgentSearch skills...
Home

dotnet

106 skills across 106 repos579.9k repo starsGitHub

Showing 1–60 of 106 skills · Page 1 of 2

dotnet / analyzing-dotnet-performance

5.5k

Scans .NET code for ~50 performance anti-patterns across async, memory, strings, collections, LINQ, regex, serialization, and I/O with tiered severity classification

📄 SKILL.mdzed
skillreview
87
Updated 2d ago

dotnet / android-tombstone-symbolication

5.5k

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.

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / apple-crash-symbolication

5.5k

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.

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / assertion-quality

5.5k

Analyze assertion quality, depth, variety, and false confidence in existing tests. ALWAYS USE when asked about weak, shallow, trivial, always-true, self-referential, assertion-free, presence/truthiness-only, or insufficiently diverse assertions, including MSTest, Jest, pytest, and Go.

📄 SKILL.mduniversal
skilltesting
87
Updated 2d ago

dotnet / author-component

5.5k

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, IAsy…

📄 SKILL.mdzed
skillapireview
87
Updated 2d ago

dotnet / authoring-github-workflows

5.5k

Author and review GitHub Actions workflow YAML safely so syntactically-valid YAML can't ship a workflow that GitHub Actions refuses to run.

📄 SKILL.mduniversal
skillgitreview+1
87
Updated 2d ago

dotnet / binlog-failure-analysis

5.5k

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.

📄 SKILL.mduniversal
skillmcp
87
Updated 2d ago

dotnet / binlog-generation

5.5k

Generate MSBuild binary logs (binlogs) for build diagnostics and analysis. USE FOR: adding /bl:{} 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 inve…

📄 SKILL.mduniversal
skillrest
87
Updated 2d ago

dotnet / build-parallelism

5.5k

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.

📄 SKILL.mdzed
skill
87
Updated 2d ago

dotnet / build-perf-baseline

5.5k

Establish build performance baselines and apply systematic optimization techniques. USE FOR: diagnosing slow builds, establishing before/after measurements (cold, warm, no-op scenarios), applying optimization strategies like static graph builds, artifacts output, and dependency graph trimming.

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / build-perf-diagnostics

5.5k

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…

📄 SKILL.mduniversal
skillrest
87
Updated 2d ago

dotnet / check-bin-obj-clash

5.5k

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 m…

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / code-testing-agent

5.5k

ALWAYS USE whenever asked to write, add, or generate unit tests for existing code in xUnit, MSTest, NUnit, pytest, Vitest/Jest, Go, or another framework, including "tests only for" one helper, function, class, or missing regression case as well as project-wide suites.

📄 SKILL.mduniversal
skilltesting
87
Updated 2d ago

dotnet / code-testing-extensions

5.5k

Provides file paths to language-specific extension files for the code-testing pipeline. Call this skill to discover available extension guidance files (e.g., dotnet.md for .NET, cpp.md for C++). Do not use directly — invoked by code-testing agents and skills that need language-specific references.

📄 SKILL.mduniversal
skilltesting
87
Updated 2d ago

dotnet / collect-user-input

5.5k

Build forms, validate data, and react to user input in Blazor. USE FOR adding forms, search boxes, filter panels, inline editing, data-entry UI, file uploads, validation (annotations or custom), handling form submissions, and binding input controls.

📄 SKILL.mduniversal
skillreact
87
Updated 2d ago

dotnet / configure-auth

5.5k

Add authentication and authorization to a Blazor Web App, accounting for the app's render mode. USE WHEN the user needs [Authorize] on pages, AuthorizeView, role or policy-based access, login/logout Identity pages, or AuthenticationStateProvider.

📄 SKILL.mdzed
skill
87
Updated 2d ago

dotnet / convert-blazor-server-to-webapp

5.5k

Guides conversion of a pre-.NET 8 Blazor Server app into a .NET 8+ Blazor Web App. USE FOR: migrating apps that use AddServerSideBlazor and MapBlazorHub to the AddRazorComponents/MapRazorComponents model, converting _Host.cshtml to an App.razor root component, replacing blazor.server.js with blazor.…

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / convert-to-cpm

5.5k

Convert .NET projects and solutions (.sln, .slnx) to NuGet Central Package Management (CPM) using Directory.Packages.props.

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / coordinate-components

5.5k

Share state between components that don't have a direct parent-child parameter relationship, using cascading values, scoped services with change events, or CascadingValueSource via DI.

📄 SKILL.mduniversal
skillreact
87
Updated 2d ago

dotnet / copy-to-output-directory

5.5k

Choosing an MSBuild CopyToOutputDirectory / CopyToPublishDirectory mode: Never, PreserveNewest, Always, and IfDifferent (MSBuild 17.13+), plus $(SkipUnchangedFilesOnCopyAlways). USE FOR: removing the per-build Always copy perf hit; resetting output files mutated between builds.

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / coverage-analysis

5.5k

Activation requires either supplied .NET coverage reports/percentages/line, branch, or condition metrics, or an explicit request to collect .NET coverage for analysis.

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / crap-score

5.5k

Calculates CRAP (Change Risk Anti-Patterns) for a named .NET method, class, or file. USE FOR: explicit CRAP calculation or coverage-and-complexity risk within that named target, including which tests to prioritize.

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / create-blazor-project

5.5k

Create a new ASP.NET Core web application or web site using Blazor. USE FOR: creating a new Blazor web app, scaffolding a new web project, starting a new web site, choosing render modes (Static SSR, Interactive Server, Interactive WebAssembly, Auto), running dotnet new blazor with the right options,…

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / create-datadriven-aspnetcore

5.5k

Generate or scaffold ASP.NET Core code — Razor Pages, Blazor components, MVC controllers, views, and Minimal API endpoints — without using ASP.NET Core CLI scaffolding/code-generation tools

📄 SKILL.mduniversal
skillapidatabase
87
Updated 2d ago

dotnet / csharp-refactoring

5.5k

Performs safe, behavior-preserving refactoring of C#/.NET code, verified with build, tests, and analyzers. USE FOR: rename or move a symbol/type/file; extract a method/type/interface; inline a wrapper/method/local; merge or consolidate near-identical classes or duplicate helpers; split or modernize…

📄 SKILL.mdzed
skill
87
Updated 2d ago

dotnet / csharp-scripts

5.5k

Run file-based C# apps with the .NET CLI when the user explicitly wants C#/.NET code without creating a project. Use for C# language/API experiments, one-file C# apps, small multi-file C# apps composed with `#:include`/`#:exclude`, or C# file-based apps linked with `#:ref`.

📄 SKILL.mduniversal
skilltestingapi+2
87
Updated 2d ago

dotnet / detect-static-dependencies

5.5k

ACTIVATION PREREQUISITE: the request or discovered target must explicitly identify C#, .NET, `.cs`, or `.csproj`; otherwise stay dormant without invoking this skill.

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / directory-build-organization

5.5k

Guide for organizing MSBuild infrastructure with Directory.Build.props, Directory.Build.targets, Directory.Packages.props, and Directory.Build.rsp.

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / dotnet-aot-compat

5.5k

Make .NET projects compatible with Native AOT and trimming by systematically resolving IL trim/AOT analyzer warnings. USE FOR: making projects AOT-compatible, fixing trimming warnings, resolving IL warnings (IL2026, IL2070, IL2067, IL2072, IL3050), adding DynamicallyAccessedMembers annotations, enab…

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / dotnet-maui-doctor

5.5k

Diagnoses and fixes .NET MAUI development environment issues. Validates .NET SDK, workloads, Java JDK, Android SDK, Xcode, and Windows SDK. All version requirements discovered dynamically from NuGet WorkloadDependencies.json — never hardcoded

📄 SKILL.mduniversal
skilldevelopment
87
Updated 2d ago

dotnet / dotnet-pinvoke

5.5k

Correctly call native (C/C++) libraries from .NET using P/Invoke and LibraryImport. Covers function signatures, string marshalling, memory lifetime, SafeHandle, and cross-platform patterns.

📄 SKILL.mduniversal
skillreview
87
Updated 2d ago

dotnet / dotnet-webapi

5.5k

Guides creation and modification of ASP.NET Core Web API endpoints with correct HTTP semantics, OpenAPI metadata, and error handling. USE FOR: adding new API endpoints (controllers or minimal APIs), wiring up OpenAPI/Swagger, creating .http test files, setting up global error handling middleware.

📄 SKILL.mduniversal
skillapigrpc
87
Updated 2d ago

dotnet / dump-collect

5.5k

Configure and collect crash dumps for modern .NET applications. USE FOR: enabling automatic crash dumps for CoreCLR or NativeAOT, capturing dumps from running .NET processes, setting up dump collection in Docker or Kubernetes, using dotnet-dump collect or createdump.

📄 SKILL.mduniversal
skilldockerkubernetes
87
Updated 2d ago

dotnet / eval-performance

5.5k

Guide for diagnosing and improving MSBuild project evaluation performance. USE FOR: builds slow before any compilation starts, high evaluation time in binlog analysis, expensive glob patterns walking large directories (node_modules, .git, bin/obj), deep import chains (>20 levels), preprocessed outpu…

📄 SKILL.mduniversal
skillgit
87
Updated 2d ago

dotnet / exp-mock-usage-analysis

5.5k

Audits .NET test mock usage by tracing each mock setup through the production code's execution path to find dead, unreachable, redundant, or replaceable mocks

📄 SKILL.mduniversal
skillreview
87
Updated 2d ago

dotnet / extension-points

5.5k

Guide for MSBuild extensibility: CustomBefore/CustomAfter hooks, wildcard imports with alphabetic ordering, import gating with control properties, NuGet package build extension layout (build/buildTransitive), and the MicrosoftCommonPropsHasBeenImported guard.

📄 SKILL.mduniversal
skillreview
87
Updated 2d ago

dotnet / fetch-and-send-data

5.5k

Call APIs, load data into components, and handle the async lifecycle in Blazor. USE FOR fetching data from a backend, submitting data to an API, displaying loading/error states, registering HttpClient, building service abstractions for Auto/WebAssembly render modes.

📄 SKILL.mdcodex
skillapi
87
Updated 2d ago

dotnet / filter-syntax

5.5k

Reference-only filter syntax for VSTest and MTP with MSTest, NUnit, xUnit v3, and TUnit. Load only after the platform/framework is known and a consumer needs to create or translate a filter. Do not load for unfiltered runs or platform detection.

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / find-untested-sources

5.5k

MANDATORY for static source-to-test pairing: find or list source files/modules without corresponding tests, or suggest test locations from repository structure. Invoke even for a tiny package; do not substitute manual globbing.

📄 SKILL.mduniversal
skillpythonrust
87
Updated 2d ago

dotnet / generate-testability-wrappers

5.5k

DO NOT USE when the target already consumes an injected interface or built-in abstraction such as IFileSystem or TimeProvider, even if the request says "generate a wrapper"; no new wrapper is needed.

📄 SKILL.mduniversal
skillapi
87
Updated 2d ago

dotnet / grade-tests

5.5k

Grade specified test methods individually and produce a concise PR-ready table with each fully qualified test name, an A-F grade, score band, and one-line note. USE FOR per-test feedback on a curated list such as new or modified tests in a pull request, not a suite-wide audit.

📄 SKILL.mduniversal
skillpythonrust
87
Updated 2d ago

dotnet / improve-skill-quality

5.5k

Diagnoses and fixes skills in the dotnet/skills repository that lose to their own baseline, fail to activate, time out, or return "no credible improvement"

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / including-generated-files

5.5k

Fix MSBuild targets that generate files during the build but those files are missing from compilation or output. USE FOR: generated source files not compiling (CS0246 for a type that should exist), custom build tasks that create files but they are invisible to subsequent targets, globs not capturing…

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / incremental-build

5.5k

Guide for optimizing MSBuild incremental builds. USE FOR: builds slower than expected on subsequent runs, 'nothing changed but it rebuilds anyway', diagnosing why targets re-execute unnecessarily, fixing broken no-op builds.

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / item-management

5.5k

Patterns for managing MSBuild item groups: Include/Remove/Update semantics, item metadata, batching with %(Metadata), transforms, per-item filtering, and cross-product batching pitfalls.

📄 SKILL.mduniversal
skillreview
87
Updated 2d ago

dotnet / maui-app-lifecycle

5.5k

.NET MAUI app lifecycle guidance — the four app states, cross-platform Window lifecycle events (Created, Activated, Deactivated, Stopped, Resumed, Destroying), platform-specific lifecycle mapping, backgrounding and resume behavior, and state-preservation patterns.

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / maui-collectionview

5.5k

Guidance for implementing CollectionView in .NET MAUI apps — data display, layouts (list & grid), selection, grouping, scrolling, empty views, templates, incremental loading, swipe actions, and pull-to-refresh.

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / maui-data-binding

5.5k

Guidance for .NET MAUI XAML and C# data bindings — compiled bindings, INotifyPropertyChanged / ObservableObject, value converters, binding modes, multi-binding, relative bindings, fallbacks, and MVVM best practices.

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / maui-dependency-injection

5.5k

Guidance for configuring dependency injection in .NET MAUI apps — service registration in MauiProgram.cs, lifetime selection (Singleton / Transient / Scoped), constructor injection, Shell navigation auto-resolution, platform-specific registrations, and testability patterns.

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / maui-safe-area

5.5k

.NET MAUI safe area and edge-to-edge layout guidance for .NET 10+. Covers the new SafeAreaEdges property, SafeAreaRegions enum, per-edge control, keyboard avoidance, Blazor Hybrid CSS safe areas, migration from legacy iOS-only APIs, and platform-specific behavior for Android, iOS, and Mac Catalyst.

📄 SKILL.mduniversal
skillapi
87
Updated 2d ago

dotnet / maui-shell-navigation

5.5k

Guide for implementing Shell-based navigation in .NET MAUI apps. Covers AppShell setup, visual hierarchy (FlyoutItem, TabBar, Tab, ShellContent), URI-based navigation with GoToAsync, route registration, query parameters, back navigation, flyout and tab configuration, navigation events, and navigatio…

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / maui-theming

5.5k

Guide for theming .NET MAUI apps — light/dark mode via AppThemeBinding, ResourceDictionary theme switching, DynamicResource bindings, system theme detection, and user theme preferences

📄 SKILL.mduniversal
skilldocumentation
87
Updated 2d ago

dotnet / microbenchmarking

5.5k

Activate this skill when BenchmarkDotNet (BDN) is involved in the task — creating, running, configuring, or reviewing BDN benchmarks. Also activate when microbenchmarking .NET code would be useful and BenchmarkDotNet is the likely tool.

📄 SKILL.mduniversal
skilldesignreview
87
Updated 2d ago

dotnet / migrate-dotnet10-to-dotnet11

5.5k

Migrate a .NET 10 project or solution to .NET 11 and resolve all breaking changes. This is a MIGRATION skill — use it when upgrading from .NET 10 to .NET 11, NOT for writing new programs.

📄 SKILL.mduniversal
skilldocker
87
Updated 2d ago

dotnet / migrate-dotnet8-to-dotnet9

5.5k

Migrate a .NET 8 project to .NET 9 and resolve all breaking changes. USE FOR: upgrading TargetFramework from net8.0 to net9.0, fixing build errors after updating the .NET 9 SDK, resolving behavioral changes in .NET 9 / C# 13 / ASP.NET Core 9 / EF Core 9, replacing BinaryFormatter (now always throws)…

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / migrate-dotnet9-to-dotnet10

5.5k

Migrate a .NET 9 project or solution to .NET 10 and resolve all breaking changes. USE FOR: upgrading TargetFramework from net9.0 to net10.0, fixing build errors after updating the .NET 10 SDK, resolving source and behavioral changes in .NET 10 / C# 14 / ASP.NET Core 10 / EF Core 10, updating Dockerf…

📄 SKILL.mduniversal
skillapidocker+1
87
Updated 2d ago

dotnet / migrate-mstest-v1v2-to-v3

5.5k

Use this skill before answering or editing whenever an MSTest v1/v2 project is being upgraded or repaired for v3. Triggers include QualityTools assembly references; MSTest.TestFramework/TestAdapter 1.x-2.x; "upgrade to MSTest v3"; comparing v1 and v2 migration paths; choosing MSTest or MSTest.Sdk; C…

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / migrate-mstest-v3-to-v4

5.5k

Use this skill before answering, planning, or editing any MSTest 3.x-to-4.x upgrade or post-upgrade failure. Triggers include "MSTest v4 breaking changes"; CS0507/CS0103/CS1061/CS1615; ExecuteAsync, CallerInfo, DisplayName, or custom TestMethodAttribute; ClassCleanupBehavior; ContainsKey; ThrowsExac…

📄 SKILL.mduniversal
skill
87
Updated 2d ago

dotnet / migrate-nullable-references

5.5k

Enable nullable reference types in a C# project and systematically resolve all warnings. USE FOR: adopting NRTs in existing codebases, file-by-file or project-wide migration, fixing CS8602/CS8618/CS86xx warnings, annotating APIs for nullability, cleaning up null-forgiving operators, upgrading depend…

📄 SKILL.mduniversal
skillapi
87
Updated 2d ago

dotnet / migrate-nunit-to-mstest

5.5k

Convert .NET tests from NUnit 3/4 to MSTest v4 while preserving VSTest or MTP. Use for replacing NUnit/NUnit3TestAdapter packages, Test/TestCase/ TestCaseSource/Values attributes, constraint assertions, SetUp/TearDown, OneTimeSetUp, SetUpFixture, FixtureLifeCycle, TestContext, categories, retries, t…

📄 SKILL.mduniversal
skill
87
Updated 2d ago