F-U-S-E-E/FuseDevelopmentGroup

22Stars on the repository
135Mods indexed here, across every type
12d agoLast push, which is what freshness is scored on
AGPL-3.0Licence, which decides whether bodies are shown

crap-analysis

25

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Analyze code coverage and CRAP (Change Risk Anti-Patterns) scores to identify high-risk code. Use OpenCover format with ReportGenerator for Risk Hotspots showing cyclomatic complexity and untested code paths.

not rated 22 +1 12d ago C 45 tokens AGPL-3.0

crap-score

26

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Calculates CRAP (Change Risk Anti-Patterns) score for .NET methods, classes, or files. Use when the user asks to assess test quality, identify risky untested code, compute CRAP scores, or evaluate whether complex methods have sufficient test coverage. Requires code coverage data (Cobertura XML) and cyclomatic…

not rated 22 +1 12d ago A 101 tokens AGPL-3.0

api-design

27

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Design stable, compatible public APIs using extend-only design principles. Manage API compatibility, wire compatibility, and versioning for NuGet packages and distributed systems.

not rated 22 +1 12d ago A 33 tokens AGPL-3.0

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Write modern, high-performance C# code using records, pattern matching, value objects, async/await, Span /Memory , and best-practice API design patterns. Emphasizes functional-style programming with C# 12+ features.

not rated 22 +1 12d ago A 58 tokens AGPL-3.0

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Choosing the right concurrency abstraction in .NET - from async/await for I/O to Channels for producer/consumer to Akka.NET for stateful entity management. Avoid locks and manual synchronization unless absolutely necessary.

not rated 22 +1 12d ago A 48 tokens AGPL-3.0

csharp-scripts

30

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Run single-file C# programs as scripts (file-based apps) for quick experimentation, prototyping, and concept testing. Use when the user wants to write and execute a small C# program without creating a full project.

not rated 22 +1 12d ago A 49 tokens AGPL-3.0

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Design .NET types for performance. Seal classes, use readonly structs, prefer static pure functions, avoid premature enumeration, and choose the right collection types.

not rated 22 +1 12d ago A 34 tokens AGPL-3.0

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Database access patterns for performance. Separate read/write models, avoid N+1 queries, use AsNoTracking, apply row limits, and never do application-side joins. Works with EF Core and Dapper.

not rated 22 +1 12d ago A 44 tokens AGPL-3.0

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Scan C# source files for hard-to-test static dependencies — DateTime.Now/UtcNow, File., Directory., Environment., HttpClient, Console., Process., and other untestable statics. Produces a ranked report of static call sites by frequency. USE FOR: find untestable statics, scan for static dependencies, testability audit…

not rated 22 +1 12d ago A 143 tokens AGPL-3.0

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Guide for organizing MSBuild infrastructure with Directory.Build.props, Directory.Build.targets, Directory.Packages.props, and Directory.Build.rsp. Only activate in MSBuild/.NET build context. USE FOR: structuring multi-project repos, centralizing build settings, implementing NuGet Central Package Management (CPM)…

not rated 22 +1 12d ago A 190 tokens AGPL-3.0

dotnet-aot-compat

35

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

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

not rated 22 +1 12d ago A 112 tokens AGPL-3.0

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Diagnose and fix .NET HTTPS dev certificate trust issues on Linux. Covers the full certificate lifecycle from generation to system CA bundle inclusion, with distro-specific guidance for Ubuntu, Fedora, Arch, and WSL2.

not rated 22 +1 12d ago D 50 tokens AGPL-3.0

dotnet-maui-doctor

37

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

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. Use when: setting up MAUI development, build errors mentioning…

not rated 22 +1 12d ago D 150 tokens AGPL-3.0

dotnet-pinvoke

38

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

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. USE FOR: writing new P/Invoke or LibraryImport declarations, reviewing or debugging existing native interop code, wrapping a C or…

not rated 22 +1 12d ago A 119 tokens AGPL-3.0

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Reference data for .NET test framework detection patterns, assertion APIs, skip annotations, setup/teardown methods, and common test smell indicators across MSTest, xUnit, NUnit, and TUnit. Loaded by test analysis skills (test-anti-patterns) as framework-specific lookup tables.

not rated 22 +1 12d ago A 64 tokens AGPL-3.0

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Guide developers through capturing diagnostic artifacts to diagnose production .NET performance issues. Use when the user needs help choosing diagnostic tools, collecting performance data, or understanding tool trade-offs across different environments (Windows/Linux, .NET Framework/modern .NET…

not rated 22 +1 12d ago A 59 tokens AGPL-3.0

dump-collect

41

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

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. DO NOT USE FOR: analyzing or debugging dumps…

not rated 22 +1 12d ago A 96 tokens AGPL-3.0

efcore-patterns

42

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Entity Framework Core best practices including NoTracking by default, query splitting for navigation collections, migration management, dedicated migration services, and common pitfalls to avoid.

not rated 22 +1 12d ago A 35 tokens AGPL-3.0

eval-performance

43

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

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

not rated 22 +1 12d ago A 180 tokens AGPL-3.0

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Analyzes the variety and depth of assertions across .NET test suites. Use when the user asks to evaluate assertion quality, find shallow testing, identify tests with only trivial assertions, measure assertion coverage diversity, or audit whether tests verify different facets of correctness. Produces metrics and…

not rated 22 +1 12d ago A 109 tokens AGPL-3.0

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Reference data for .NET test framework detection patterns, assertion APIs, skip annotations, setup/teardown methods, and common test smell indicators across MSTest, xUnit, NUnit, and TUnit. Loaded by test analysis skills (exp-test-smell-detection, exp-assertion-quality, exp-test-maintainability, exp-test-tagging) as…

not rated 22 +1 12d ago A 83 tokens AGPL-3.0

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

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. Use when the user asks to audit mock usage, find unused or unnecessary mock setups, check if mocks are needed, reduce mock duplication or over-mocking…

not rated 22 +1 12d ago A 102 tokens AGPL-3.0

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Optimizes hot-path scalar loops in .NET 8+ with cross-platform Vector128/Vector256/Vector512 SIMD intrinsics, or replaces manual math loops with single TensorPrimitives API calls. Covers byte-range validation, character counting, bulk bitwise ops, cross-type conversion, fused multi-array computations, and float/double…

not rated 22 +1 12d ago A 75 tokens AGPL-3.0

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Performs pseudo-mutation analysis on .NET production code to find gaps in existing test suites. Use when the user asks to find weak tests, discover untested edge cases, check if tests would catch a bug, or evaluate test effectiveness through mutation-style reasoning. Analyzes production code for mutation points…

not rated 22 +1 12d ago A 151 tokens AGPL-3.0

At most 3 mods per repository are shown here, and a mod shipped inside a plugin is left to that plugin's page — the rest are on their repository pages: