Token导航 LogoToken导航TokenDH.com
开发需要联网github未标认证来源可访问许可证需确认审计通过

dotnet-csharp-code-smellsdotnet csharp 代码有异味

Agent Skill

dotnet-csharp-code-smells 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

66

周安装

8

GitHub Stars

204

下载量

65
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:dotnet-csharp-code-smells(dotnet csharp 代码有异味)
来源仓库:https://github.com/novotnyllc/dotnet-artisan
仓库路径:skills/dotnet-csharp-code-smells
安装命令:
npx skills add https://github.com/novotnyllc/dotnet-artisan --skill dotnet-csharp-code-smells
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/novotnyllc/dotnet-artisan --skill dotnet-csharp-code-smells

简介

用于处理 GitHub 仓库、Issue 和 Pull Request 信息。

  • 适合围绕代码变更和协作事项进行整理分析。dotnet-csharp-code-smells 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 可结合原始 README 进一步验证功能细节。
  • 安装前应确认权限范围和维护状态,避免误操作生产环境。
  • 注意可能涉及命令执行或网络请求,需评估安全风险。

SKILL.md

dotnet-csharp-code-smells

Proactive code-smell and anti-pattern detection for C# code. This skill triggers during all workflow modes -- planning, implementation, and review. Each entry identifies the smell, explains why it is harmful, provides the correct fix, and references the relevant CA rule or cross-reference.

Scope

  • Resource management (IDisposable misuse)
  • Async anti-patterns and deadlock detection
  • DI lifetime misuse and captive dependencies
  • Null-handling mistakes and NRT violations
  • LINQ pitfalls and string handling issues

Out of scope

  • LLM-specific generation mistakes (wrong NuGet packages, MSBuild errors) -- see [skill:dotnet-agent-gotchas]
  • SOLID/DRY design principles -- see [skill:dotnet-solid-principles]
  • Naming and style conventions -- see [skill:dotnet-csharp-coding-standards]

Cross-references: [skill:dotnet-csharp-async-patterns] for async gotchas, [skill:dotnet-csharp-coding-standards] for naming and style, [skill:dotnet-csharp-dependency-injection] for DI lifetime misuse, [skill:dotnet-csharp-nullable-reference-types] for NRT annotation mistakes.


1. Resource Management (IDisposable Misuse)

SmellWhy HarmfulFixRule
Missing using on disposable localsLeaks unmanaged handles (sockets, files, DB connections)Wrap in using declaration or using blockCA2000
Undisposed IDisposable fieldsClass holds disposable resource but never disposes itImplement IDisposable; dispose fields in Dispose()CA2213
Wrong Dispose pattern (no finalizer guard)Double-dispose or missed cleanup on GC finalizationFollow canonical Dispose(bool) pattern; call GC.SuppressFinalize(this)CA1816
Disposable created in one method, stored in fieldOwnership unclear; easy to forget disposalDocument ownership; make the containing class IDisposableCA2000
using on non-owned resourcePremature disposal of shared resource (e.g., injected HttpClient)Only dispose resources you create; let DI manage injected services--

See details.md for code examples of each pattern.


2. Warning Suppression Hacks

SmellWhy HarmfulFixRule
Invoking event with null to suppress CS0067Creates misleading runtime behavior; masks real bugsUse #pragma warning disable CS0067 or explicit event accessors {add {} remove {}}CS0067
Dummy variable assignments to suppress CS0219Dead code that confuses readersUse _ = expression; discard or #pragma warning disableCS0219
Blanket #pragma warning disable without restoreSuppresses ALL warnings for rest of fileAlways pair with #pragma warning restore; suppress specific codes only--
[SuppressMessage] without justificationFuture maintainers cannot evaluate if suppression is still validAlways include Justification = "reason"CA1303

See details.md for the CS0067 motivating example (bad pattern to correct fix).


3. LINQ Anti-Patterns

SmellWhy HarmfulFixRule
Premature .ToList() mid-chainForces full materialization; wastes memoryKeep chain lazy; materialize only at the endCA1851
Multiple enumeration of IEnumerable<T>Re-executes query or DB call on each enumerationMaterialize once with .ToList() then reuseCA1851
Client-side evaluation in EF CoreLoads entire table into memory; silent perf bombRewrite query as translatable LINQ or use AsAsyncEnumerable() with explicit intent--
.Count() > 0 instead of .Any()Enumerates entire collection instead of short-circuitingUse .Any() for existence checksCA1827
Nested foreach instead of .Join() or .GroupJoin()O(n*m) when O(n+m) is possibleUse LINQ join operations or Dictionary lookup--
.Where().First() instead of .First(predicate)Creates unnecessary intermediate iteratorPass predicate directly to .First() or .FirstOrDefault()CA1826

4. Event Handling Leaks

SmellWhy HarmfulFixRule
Not unsubscribing from eventsMemory leak: publisher holds reference to subscriberUnsubscribe in Dispose() or use weak event pattern--
Raising events in constructorSubscribers may not be attached yet; derived class not fully constructedRaise events only from fully initialized instancesCA2214
async void event handler (misused)async void is the only valid signature for event handlers, but exceptions are unobservableWrap body in try/catch; log and handle exceptions explicitly--
Event handler not checking for nullNullReferenceException when no subscribersUse event?.Invoke() null-conditional pattern--
Static event without cleanupRooted references prevent GC for application lifetimePrefer instance events or use WeakEventManager--

Cross-reference: [skill:dotnet-csharp-async-patterns] covers async void fire-and-forget patterns in depth.


5. Design Smells

SmellThresholdWhy HarmfulFix
God class>500 linesToo many responsibilities; hard to test and maintainExtract cohesive classes using SRP
Long method>30 linesHard to understand, test, and reviewExtract helper methods with descriptive names
Long parameter list>5 parametersIndicates missing abstractionIntroduce parameter object or builder
Feature envyMethod uses another class's data more than its ownMisplaced responsibility; tight couplingMove method to the class it envies
Primitive obsessionDomain concepts represented as raw string/intNo type safety; validation scatteredIntroduce value objects or strongly-typed IDs
Deep nesting>3 levels of indentationHard to follow control flowUse guard clauses (early return) and extract methods

6. Exception Handling Gaps

SmellWhy HarmfulFixRule
Empty catch blockSilently swallows errors; masks bugsAt minimum, log the exception; prefer letting it propagateCA1031
Catching base ExceptionCatches OutOfMemoryException, StackOverflowException, etc.Catch specific exception typesCA1031
Log-and-swallow (catch {log;})Caller never learns operation failedRe-throw after logging, or return error result--
Throwing in finallyMasks original exception with the new oneUse try/catch inside finally; never throw from finally--
throw ex; instead of throw;Resets stack trace; hides original failure locationUse bare throw; to preserve stack traceCA2200
Not including inner exceptionLoses causal chain when wrapping exceptionsPass original as innerException parameter--

Cross-reference: [skill:dotnet-csharp-async-patterns] covers exception handling in fire-and-forget and async void scenarios.


Quick Reference: CA Rules

RuleDescription
CA1031Do not catch general exception types
CA1816Call GC.SuppressFinalize correctly
CA1826Do not use Enumerable methods on indexable collections
CA1827Do not use Count()/LongCount() when Any() can be used
CA1851Possible multiple enumerations of IEnumerable collection
CA2000Dispose objects before losing scope
CA2200Rethrow to preserve stack details
CA2213Disposable fields should be disposed
CA2214Do not call overridable methods in constructors

Enable these via <AnalysisLevel>latest-all</AnalysisLevel> in your project. See [skill:dotnet-csharp-coding-standards] for analyzer configuration.


References

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.57%
按下载量换算25

Claude

32.43%
按下载量换算21

Cursor

17.55%
按下载量换算11

Gemini CLI

9.19%
按下载量换算6

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills