Performance optimization and measurement for .NET applications. Navigation skill covering Span, ArrayPool, memory management, benchmarking, profiling, Native AOT, and optimization patterns. For building high-performance applications. Keywords: performance,…
Skills in this repository
rudironsoni/Synaxis - Page 5
SkillsMP has collected 966 skills from rudironsoni/Synaxis. Open a skill to review its source and details.
rudironsoni/SynaxisShowing 40 of 966 collected skills.
Automates browser tests in .NET. Playwright E2E, CI browser caching, trace viewer, codegen.
Diagnoses .NET performance issues. dotnet-counters, dotnet-trace, dotnet-dump, flame graphs.
Analyzes .NET solution layout and build config -- .sln, .csproj, CPM.
Sets up .NET solution layout. .slnx, Directory.Build.props, CPM, .editorconfig, analyzers.
Builds real-time features. SignalR hubs, SSE (.NET 10), JSON-RPC 2.0, gRPC streaming, scaling.
Manages .NET release lifecycle. NBGV versioning, SemVer, changelogs, pre-release, branching.
Adds fault tolerance. Polly v8 + MS.Extensions.Http.Resilience, retry/circuit breaker/timeout.
Authors Roslyn analyzers. DiagnosticAnalyzer, CodeFixProvider, CodeRefactoring, multi-version.
Creates a new .NET project. Generates solution with CPM, analyzers, editorconfig, SourceLink.
Manages secrets and sensitive config. User secrets, environment variables, rotation.
Hardens .NET apps per OWASP Top 10 -- injection, auth, XSS, deprecated security APIs.
Security hardening and best practices for .NET applications. Navigation skill covering OWASP Top 10, authentication, authorization, cryptography, secrets management, and secure coding. For building secure applications. Keywords: security, owasp,…
Code analysis patterns using Serena MCP for architecture validation and pattern detection
Efficient code navigation using Serena MCP symbol operations instead of text search
Symbol-level refactoring with automatic reference updates using Serena MCP
Serializes data. System.Text.Json source generators, Protobuf, MessagePack, AOT-safe patterns.
Chooses inter-service protocols. REST vs gRPC vs SignalR vs SSE decision matrix, tradeoffs.
Runs Slopwatch CLI to detect LLM reward hacking -- disabled tests, suppressed warnings.
Verifies complex outputs with Verify. API responses, scrubbing non-deterministic values.
Applies SOLID and DRY principles. C# anti-patterns, fixes, SRP compliance checks.
Orients in .NET solutions -- entry points, .sln/.slnx, dependency graphs, config.
Renders rich console output. Spectre.Console tables, trees, progress, prompts, live displays.
Designs log pipelines. Aggregation, structured queries, sampling, PII scrubbing, correlation.
Builds .NET CLI apps with System.CommandLine 2.0. Commands, options, SetAction, parsing, testing.
Builds full TUI apps. Terminal.Gui v2 -- views, layout (Pos/Dim), menus, dialogs, bindings, themes.
Measures test effectiveness. Coverlet code coverage, Stryker.NET mutation testing, flaky tests.
Complete guide for .NET Aspire Testing integration testing framework. Use when testing .NET Aspire distributed applications, configuring AppHost tests, or migrating from Testcontainers to Aspire testing. Covers DistributedApplicationTestingBuilder, container…
Specialized skill for ASP.NET Core integration testing. Use when testing Web API endpoints, HTTP request/response, middleware, and dependency injection. Covers WebApplicationFactory, TestServer, HttpClient testing, in-memory database configuration. Keywords:…
.NET advanced testing skills overview and navigation center. Triggered when users ask about "integration testing", "API testing", "containerized testing", "microservice testing", "test framework migration", "Testcontainers", "Aspire testing", and other…
Specialized skill for containerized database testing using Testcontainers. Use when testing real database behavior, using SQL Server/PostgreSQL/MySQL containers, testing EF Core/Dapper. Covers container startup, database migrations, test isolation, container…
Complete guide for Testcontainers NoSQL integration testing. Use when containerized integration testing for MongoDB or Redis. Covers MongoDB document operations, Redis five data structures, Collection Fixture pattern. Includes BSON serialization, index…
Complete guide for TUnit advanced applications. Use when using TUnit for data-driven testing, dependency injection, or integration testing. Covers MethodDataSource, ClassDataSource, Matrix Tests, Properties filtering. Includes Retry/Timeout control,…
Complete guide for TUnit new-generation testing framework. Use when creating test projects with TUnit or migrating from xUnit to TUnit. Covers Source Generator driven test discovery, AOT compilation support, fluent async assertions. Includes project creation,…
Complete guide for ASP.NET Core Web API integration testing. Use when performing integration testing on Web API endpoints or validating ProblemDetails error format. Covers WebApplicationFactory, IExceptionHandler, Testcontainers multi-container orchestration,…
Complete guide for upgrading xUnit 2.9.x to 3.x. Use when upgrading xUnit v2 to v3 or understanding xUnit v3 new features and breaking changes. Covers package updates, async void fixes, IAsyncLifetime adjustments. Includes new features: Assert.Skip, Explicit…
Complete guide for AutoFixture and xUnit integration. Use when you need to use AutoData or InlineAutoData to simplify xUnit parameterized test data preparation. Covers custom Customization and test data attributes to improve test readability and…
Using AutoFixture to automatically generate test data basic skill. Used when quickly generating test objects, reducing boilerplate code, and implementing anonymous testing. Covers Fixture.Create, CreateMany, circular reference handling, and xUnit integration.…
Complete guide for AutoFixture and Bogus integration. Use when you need to combine AutoFixture with Bogus to generate test data that is both anonymous and realistic. Covers SpecimenBuilder integration, hybrid generators, test data factories, and circular…
Complete guide for AutoFixture advanced customization techniques. Use when you need to customize AutoFixture builders or handle special type test data generation rules. Covers DataAnnotations automatic integration, ISpecimenBuilder implementation, priority…