Implements producer/consumer queues. Channel<T>, bounded/unbounded, backpressure, drain.
Skills in this repository
rudironsoni/Synaxis - Page 14
SkillsMP has collected 966 skills from rudironsoni/Synaxis. Open a skill to review its source and details.
rudironsoni/SynaxisShowing 40 of 966 collected skills.
Gates CI on perf regressions. Automated threshold alerts, baseline tracking, trend reports.
Structures CLI app layers. Command/handler/service separation, clig.dev principles, exit codes.
Chooses CLI output format. AOT vs framework-dependent, RID matrix, single-file, dotnet tool.
Publishes to package managers. Homebrew, apt/deb, winget, Scoop, Chocolatey manifests.
Releases CLI tools. GitHub Actions build matrix, artifact staging, Releases, checksums.
Selects crypto algorithms and usage. Hashing, AES-GCM, RSA, ECDSA, PQC key derivation.
Designs public .NET APIs. Naming, parameter ordering, return types, error patterns, extensions.
Writing async/await code. Task patterns, ConfigureAwait, cancellation, and common agent pitfalls.
Detects C# code smells during review. Anti-patterns, async misuse, DI mistakes, fixes.
Defines baseline C# conventions loaded first -- naming, file layout, style rules.
Synchronizes threads and protects shared state. lock, SemaphoreSlim, Interlocked, concurrent collections.
Configures Options pattern, user secrets, and feature flags. IOptions<T>, FeatureManagement.
Registers and resolves services with MS DI. Keyed services, scopes, decoration, lifetimes.
Using records, pattern matching, primary constructors, collection expressions. C# 12-15 by TFM.
Enables nullable reference types. Annotation strategies, migration, common agent mistakes.
Creates Roslyn source generators. IIncrementalGenerator, GeneratedRegex, LoggerMessage, STJ.
Designs types for performance. struct vs class, sealed, readonly struct, Span/Memory, collections.
Chooses a data access approach. EF Core vs Dapper vs ADO.NET decision matrix, tradeoffs.
Chooses documentation tooling. Starlight, Docusaurus, DocFX decision tree, migration paths.
Models business domains. Aggregates, value objects, domain events, rich models, repositories.
Authors .editorconfig rules. IDE/CA severity, AnalysisLevel, globalconfig, code style enforcement.
Designs EF Core data layer architecture. Read/write split, aggregate boundaries, N+1 governance.
Builds .NET 10 file-based C# apps. Directives, CLI commands, csproj migration.
Performs file I/O. FileStream, RandomAccess, FileSystemWatcher, MemoryMappedFile, paths.
Tunes GC and memory. GC modes, LOH/POH, Gen0/1/2, Span/Memory deep patterns, ArrayPool.
Deploys .NET from GitHub Actions. Azure Web Apps, GitHub Pages, container registries.
Composes GitHub Actions workflows. Reusable workflows, composite actions, matrix, caching.
Creates GitHub-native docs. README badges, CONTRIBUTING, issue/PR templates, repo metadata.
Creates GitHub Releases for .NET. Release creation, assets, notes, pre-release management.
Consumes HTTP APIs. IHttpClientFactory, typed/named clients, resilience, DelegatingHandlers.
Validates HTTP request inputs. .NET 10 AddValidation, FluentValidation, ProblemDetails.
Tests with real infrastructure. WebApplicationFactory, Testcontainers, Aspire, fixtures.
Builds high-perf network I/O. PipeReader/PipeWriter, backpressure, protocol parsers, Kestrel.
Maintains library compatibility. Binary/source compat rules, type forwarders, SemVer impact.
Optimizes LINQ queries. IQueryable vs IEnumerable, compiled queries, deferred exec, allocations.
Localizes .NET apps. .resx resources, IStringLocalizer, source generators, pluralization, RTL.
Optimizes MAUI for iOS/Catalyst. Native AOT pipeline, size/startup gains, library gaps, trimming.
Integrates AI/LLM via Microsoft Agent Framework. Agents, workflows, tools, MCP servers, multi-agent orchestration.
Builds ASP.NET Core middleware. Pipeline ordering, short-circuit, exception handling.