F-U-S-E-E/FuseDevelopmentGroup

This repository also configures its own agents. See what FuseDevelopmentGroup tells them →

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

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Detects duplicate boilerplate, copy-paste tests, and structural maintainability issues across .NET test suites. Use when the user asks to reduce repetition, consolidate similar test methods, convert copy-paste tests to data-driven parameterized tests, suggest a better test structure, or identify refactoring…

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

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Deep formal test smell audit based on academic research taxonomy (testsmells.org). Detects 19 categorized smell types — conditional logic, mystery guests, sensitive equality, eager tests, and more — with calibrated severity and research-backed remediation. Use for comprehensive test suite health assessments. For a…

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

exp-test-tagging

51

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Analyzes test suites and tags each test with a standardized set of traits (e.g., positive, negative, critical-path, boundary, smoke, regression). Use when the user wants to categorize, audit, or label tests with traits. Do not use for writing new tests, running tests, or migrating test frameworks.

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

filter-syntax

52

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Reference data for test filter syntax across all platform and framework combinations: VSTest --filter expressions, MTP filters for MSTest/NUnit/xUnit v3/TUnit, and VSTest-to-MTP filter translation. DO NOT USE directly — loaded by run-tests, mtp-hot-reload, and migrate-vstest-to-mtp when they need filter syntax.

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

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Generate wrapper interfaces and DI registration for hard-to-test static dependencies in C#. Produces IFileSystem, IEnvironmentProvider, IConsole, IProcessRunner wrappers, or guides adoption of TimeProvider and IHttpClientFactory. USE FOR: generate wrapper for static, create IFileSystem wrapper, wrap DateTime.Now, make…

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

ilspy-decompile

54

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Understand implementation details of .NET code by decompiling assemblies. Use when you want to see how a .NET API works internally, inspect NuGet package source, view framework implementation, or understand compiled .NET binaries.

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

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Fix MSBuild targets that generate files during the build but those files are missing from compilation or output. Only activate in MSBuild/.NET build context. 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…

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

incremental-build

56

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Guide for optimizing MSBuild incremental builds. Only activate in MSBuild/.NET build context. 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. Covers 8 common causes: missing Inputs/Outputs on…

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

dotnet-local-tools

57

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Managing local .NET tools with dotnet-tools.json for consistent tooling across development environments and CI/CD pipelines.

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

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Workflow for publishing skills and agents to the dotnet-skills Claude Code marketplace. Covers adding new content, updating plugin.json, validation, and release tagging.

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

maui-app-lifecycle

59

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

.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. USE FOR: "app lifecycle", "window lifecycle events"…

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

maui-collectionview

60

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

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. USE FOR: "CollectionView", "list view", "grid layout", "data template", "item template", "grouping", "pull…

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

maui-data-binding

61

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

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. USE FOR: setting up compiled bindings with x:DataType, implementing INotifyPropertyChanged or…

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

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

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. USE FOR: "dependency injection", "DI setup"…

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

maui-safe-area

63

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

.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. USE FOR: "safe…

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

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

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 navigation guards. Use when…

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

maui-theming

65

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

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

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

mcp-csharp-create

66

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Create MCP servers using the C# SDK and .NET project templates. Covers scaffolding, tool/prompt/resource implementation, and transport configuration for stdio and HTTP. USE FOR: creating new MCP server projects, scaffolding with dotnet new mcpserver, adding MCP tools/prompts/resources, choosing stdio vs HTTP…

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

mcp-csharp-debug

67

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Run and debug C# MCP servers locally. Covers IDE configuration, MCP Inspector testing, GitHub Copilot Agent Mode integration, logging setup, and troubleshooting. USE FOR: running MCP servers locally with dotnet run, configuring VS Code or Visual Studio for MCP debugging, testing tools with MCP Inspector, testing with…

not rated 22 +1 12d ago B 142 tokens AGPL-3.0

mcp-csharp-publish

68

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Publish and deploy C# MCP servers. Covers NuGet packaging for stdio servers, Docker containerization for HTTP servers, Azure Container Apps and App Service deployment, and publishing to the official MCP Registry. USE FOR: packaging stdio MCP servers as NuGet tools, creating Dockerfiles for HTTP MCP servers, deploying…

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

mcp-csharp-test

69

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Test C# MCP servers at multiple levels: unit tests for individual tools and integration tests using the MCP client SDK. USE FOR: unit testing MCP tool methods, integration testing with in-memory MCP client/server, end-to-end testing via MCP protocol, testing HTTP MCP servers with WebApplicationFactory, mocking…

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

microbenchmarking

70

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

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. Consider activating when answering a .NET performance question requires…

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

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Microsoft.Extensions.Options patterns including IValidateOptions, strongly-typed settings, validation on startup, and the Options pattern for clean configuration management.

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

F-U-S-E-E/FuseDevelopmentGroup

Skill Claude Code

Organize DI registrations using IServiceCollection extension methods. Group related services into composable Add methods for clean Program.cs and reusable configuration in tests.

not rated 22 +1 12d ago A 35 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: